Recent logs - eFootball PC - V.

To see your stuff show here, enable Compatibility Server Reports in PPSSPP.

Click on a version, game, or report message to show similar entries. Hover over version to see platform info, and hover over a game title to see region and version info.

Game title Version Latest Report Message
eFootball PC - V. v1.16.6 2024-04-28 Unknown GetPointer 00000000 PC 0884d7cc LR 0884d7d4
eFootball PC - V. v1.16.6 2024-04-28 WriteToHardware: Invalid address 00000004 near PC 08863d6c LR 0884c9fc
eFootball PC - V. v1.16.6 2024-04-27 WriteToHardware: Invalid address 00000004 near PC 08863d6c LR 08856c34
eFootball PC - V. v1.16.6 2024-04-27 ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 08856c34
eFootball PC - V. v1.16.6 2024-04-28 Unknown GetPointerWrite 00000000 PC 08816154 LR 0881615c
eFootball PC - V. v1.10.3 2024-04-25 807f00fd=sceMp3Init(00000000): invalid bitrate v2 l0 rate 000a
eFootball PC - V. v1.17.1 2024-04-25 Unknown GetPointer 00744f29 PC 0884a918 LR 0884a938
eFootball PC - V. v1.10.3 2024-04-19 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
eFootball PC - V. v1.9.4 2024-04-19 Unknown GetPointer 00000000 PC 0881f5b8 LR 08000020
eFootball PC - V. v1.17.1 2024-04-19 sceDmacMemcpy(dest=09054040, src=086ce940, size=1251008): overlapping read
eFootball PC - V. v1.17.1 2024-04-19 Unknown GetPointerWrite 00000000 PC 0882bbf4 LR 088113dc
eFootball PC - V. v1.15.4 2024-04-15 ReadFromHardware: Invalid address 0d6e18ee near PC 0d6e18ee LR 08a3c164
eFootball PC - V. v1.17.1 2024-04-14 Unknown GetPointerWrite 00000000 PC 088113c0 LR 088113dc
eFootball PC - V. v1.17.1 2024-04-25 sceMp3Init: invalid data: not MPEG v1
eFootball PC - V. v1.11.3 2024-04-13 sceDmacMemcpy(dest=08701400, src=040cc000, size=1043456): overlapping read
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:17: 'assign' : l-value required "h_depth" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000002 THR Flat #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; in float h_depth; void main() { v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_depth = outPos.z/outPos.w; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:20: 'assign' : l-value required "h_depth" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000012 THR Tex Flat #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; in float h_depth; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_depth = outPos.z/outPos.w; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:70: 'assign' : l-value required "h_depth" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 01770000:00000b34 HWX T N Fog Tex Light: 0: c:0 t:0 1: c:0 t:0 2: c:0 t:0 MatUp:7 Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in mediump vec3 normal; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform vec3 u_lightpos2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec4 u_ambient; uniform lowp vec3 u_matdiffuse; uniform lowp vec4 u_matspecular; uniform lowp vec3 u_matemissive; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; in float h_depth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 0.0), u_world).xyz); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); lowp vec4 lightSum0 = u_ambient * u_matambientalpha + vec4(u_matemissive, 0.0); vec3 toLight; lowp vec3 diffuse; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos1; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos2; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse2 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient2 * u_matambientalpha.rgb + diffuse); v_color0 = clamp(lightSum0, 0.0, 1.0); v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_depth = outPos.z/outPos.w; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:40: 'assign' : l-value required "h_depth" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000934 HWX T Fog Tex Flat Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; in float h_depth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = u_matambientalpha; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_depth = outPos.z/outPos.w; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:41: 'assign' : l-value required "h_depth" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:0000093c HWX C T Fog Tex Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; in float h_depth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_depth = outPos.z/outPos.w; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:17: 'assign' : l-value required "h_depth" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:0000000a THR C #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in lowp vec4 color0; uniform mat4 u_proj_through; out lowp vec4 v_color0; in float h_depth; void main() { v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_depth = outPos.z/outPos.w; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:19: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000012 THR Tex Flat #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; in vec3 h_normal; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:69: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 01770000:00000b34 HWX T N Fog Tex Light: 0: c:0 t:0 1: c:0 t:0 2: c:0 t:0 MatUp:7 Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in mediump vec3 normal; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform vec3 u_lightpos2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec4 u_ambient; uniform lowp vec3 u_matdiffuse; uniform lowp vec4 u_matspecular; uniform lowp vec3 u_matemissive; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 0.0), u_world).xyz); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); lowp vec4 lightSum0 = u_ambient * u_matambientalpha + vec4(u_matemissive, 0.0); vec3 toLight; lowp vec3 diffuse; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos1; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos2; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse2 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient2 * u_matambientalpha.rgb + diffuse); v_color0 = clamp(lightSum0, 0.0, 1.0); v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = worldnormal*0.5+0.5; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:39: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000934 HWX T Fog Tex Flat Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = u_matambientalpha; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:40: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:0000093c HWX C T Fog Tex Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:16: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:0000000a THR C #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in lowp vec4 color0; uniform mat4 u_proj_through; out lowp vec4 v_color0; in vec3 h_normal; void main() { v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:17: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000002 THR Flat #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; in vec3 h_normal; void main() { v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:20: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:0000001a THR C Tex #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; out lowp vec4 v_color0; out mediump vec3 v_texcoord; in vec3 h_normal; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:20: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000012 THR Tex Flat #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; in vec3 h_normal; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:67: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 01770000:00000b30 HWX T N Tex Light: 0: c:0 t:0 1: c:0 t:0 2: c:0 t:0 MatUp:7 Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in mediump vec3 normal; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform vec3 u_lightpos2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec4 u_ambient; uniform lowp vec3 u_matdiffuse; uniform lowp vec4 u_matspecular; uniform lowp vec3 u_matemissive; uniform lowp vec4 u_matambientalpha; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 0.0), u_world).xyz); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); lowp vec4 lightSum0 = u_ambient * u_matambientalpha + vec4(u_matemissive, 0.0); vec3 toLight; lowp vec3 diffuse; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos1; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos2; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse2 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient2 * u_matambientalpha.rgb + diffuse); v_color0 = clamp(lightSum0, 0.0, 1.0); v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = worldnormal*0.5+0.5; }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:34: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:00000128 HWX C Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform lowp vec4 u_matambientalpha; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:37: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 40000000:00000930 HWX T Tex Flat Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = u_matambientalpha; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:38: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:00000938 HWX C T Tex Cull #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; in vec3 h_normal; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_color0.rgb = vec3(0.0); vec3 projPos = outPos.xyz / outPos.w; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.11.2-917-g89e70c319 2024-04-11 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:17: 'assign' : l-value required "h_normal" (can't modify an attribute) ERROR: 1 compilation errors. No code generated. 00000000:0000000a THR C #version 300 es // Adreno (TM) 308 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec4 position; in lowp vec4 color0; uniform mat4 u_proj_through; out lowp vec4 v_color0; in vec3 h_normal; void main() { v_color0 = color0; vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0)); v_color0.rgb = vec3(0.0); gl_Position = outPos; h_normal = vec3(-1.0); }
eFootball PC - V. v1.13.2 2024-04-07 Unknown GetPointer 2985b054 PC 0881c2d8 LR 0881c2e8
eFootball PC - V. v1.17.1 2024-04-07 Unknown GetPointer 2985b0d4 PC 0881c2d8 LR 0881c2e8
eFootball PC - V. v1.17.1 2024-04-07 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0
eFootball PC - V. v1.17.1 2024-04-06 WriteToHardware: Invalid address 00000004 near PC 08863d74 LR 0884c9fc
eFootball PC - V. v1.17.1 2024-04-28 ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 0884c9fc
eFootball PC - V. v1.16.6 2024-04-03 Unknown GetPointer 29866364 PC 0881c428 LR 0881c438
eFootball PC - V. v1.16.6 2024-04-04 Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800
eFootball PC - V. v1.16.6 2024-04-03 80630006=sceAtracSetDataAndGetID(09a25200, 00003800): invalid RIFF header
eFootball PC - V. v1.11.3 2024-04-03 Unknown GetPointer 00000000 PC 0882bbf4 LR 088113dc
eFootball PC - V. v1.17.1 2024-04-15 MIPSCompileOp: Invalid instruction 01010101
eFootball PC - V. v1.17.1 2024-03-31 Unknown GetPointer 0000f8c9 PC 0884d7b4 LR 0884d7d4
eFootball PC - V. v1.17.1 2024-04-13 sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2
eFootball PC - V. v1.17.1 2024-04-13 sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1
eFootball PC - V. v1.10.3 2024-04-12 sceMp3Init: invalid data: not 44.1kHz
eFootball PC - V. v1.16.6 2024-03-26 807f00fd=sceMp3Init(00000000): invalid sample rate v3 l3 rate 03
eFootball PC - V. v1.16.6 2024-03-23 Unknown GetPointer 003e1200 PC 0884d7b4 LR 0884d7d4
eFootball PC - V. v1.16.6 2024-03-23 sceDmacMemcpy(dest=092ed040, src=086ce940, size=1251008): overlapping read
eFootball PC - V. v1.14.4 2024-03-31 807f00fd=sceMp3Init(00000000): invalid bitrate v0 l0 rate 0000
eFootball PC - V. v1.17.1 2024-04-25 sceMp3Init: invalid data: not layer 3
eFootball PC - V. v1.9.4 2024-04-24 Unknown GetPointer 00000000 PC 08815f0c LR 08000020
eFootball PC - V. v1.17.1 2024-04-08 Unknown GetPointerWrite 00000000 PC 08808448 LR 08808460
eFootball PC - V. v1.17.1 2024-04-24 Unknown GetPointer 00000140 PC 08824cf4 LR 088113dc
eFootball PC - V. v1.17.1 2024-04-18 Unknown GetPointerWrite 00000000 PC 08824cf4 LR 088113dc
eFootball PC - V. v1.16.6 2024-04-03 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header
eFootball PC - V. v1.17.1 2024-04-07 Unimplemented HLE function sceKernelDcacheWritebackAll
eFootball PC - V. v1.9.3 2024-04-27 sceDmacMemcpy(dest=040cc000, src=086ce940, size=1251008): overlapping read
eFootball PC - V. v1.17.1 2024-04-24 Unknown GetPointer 00000000 PC 0884a918 LR 0884a938
eFootball PC - V. v1.9.4 2024-04-26 Game install with no files / data
eFootball PC - V. v1.17.1 2024-04-27 sceNetAdhocMatchingInit(32768) at 08a719b8
eFootball PC - V. v1.17.1 2024-03-10 Can't draw: No current render step. Step count: 0
eFootball PC - V. v1.9.4 2024-04-28 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball PC - V. v1.17.1 2024-04-28 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
eFootball PC - V. v1.9.4 2024-04-28 80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16)
eFootball PC - V. v1.17.1 2024-04-14 80630006=sceAtracSetDataAndGetID(09a25200, 00001000): invalid RIFF header
eFootball PC - V. v1.9.4 2024-04-28 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball PC - V. v1.9.4 2024-04-28 Savedata version requested on save: 3
eFootball PC - V. v1.8.0 2024-04-28 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
eFootball PC - V. v1.9.4 2024-04-28 Savedata version requested: 3
eFootball PC - V. v1.17.1 2024-04-28 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c