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 |
MotoGP |
v1.10-6-g8ac4efd3c |
2023-11-30 |
Render to texture using CLUT with different strides 1120 != 512 |
MotoGP |
v1.15.4 |
2023-09-16 |
Unexpected mpeg first timestamp: 5579a080000 / 5873804509184 |
MotoGP |
v1.15.4 |
2023-09-16 |
Could not setup streams, unexpected stream count: 13462 |
MotoGP |
v1.16.1 |
2023-09-14 |
FS shader gen error: We only do array textures for framebuffers in Vulkan. (GLES: 00000002:12182982) |
MotoGP |
v1.14.4 |
2023-09-13 |
WriteToHardware: Invalid address 000000a4 near PC 089654e8 LR 089612b8 |
MotoGP |
v1.15.4 |
2023-08-10 |
WriteToHardware: Invalid address 000000a4 near PC 08809960 LR 08809960 |
MotoGP |
v1.10-6-g8ac4efd3c |
2023-08-09 |
Render to texture using CLUT with different strides 896 != 512 |
MotoGP |
v1.15.4 |
2023-07-30 |
Error in shader program link: info: (unknown reason)
fs: postshader
#version 320 es
precision mediump float;
precision highp int;
layout(binding = 0) uniform mediump sampler2D sampler0;
in vec2 v_texcoord0;
out vec4 _RESERVED_IDENTIFIER_FIXUP_gl_FragColor;
void main()
{
vec3 c0 = texture(sampler0, v_texcoord0).xyz;
vec3 c1 = mat3(vec3(0.2989999949932098388671875, 0.596000015735626220703125, 0.21199999749660491943359375), vec3(0.58700001239776611328125, -0.2750000059604644775390625, -0.5230000019073486328125), vec3(0.114000000059604644775390625, -0.3210000097751617431640625, 0.31099998950958251953125)) * c0;
c1 = vec3(pow(c1.x, 1.2000000476837158203125), c1.yz * vec2(1.2000000476837158203125));
vec3 _67 = mat3(vec3(1.0), vec3(0.955688059329986572265625, -0.2715817987918853759765625, -1.10817730426788330078125), vec3(0.619858086109161376953125, -0.64687383174896240234375, 1.7050645351409912109375)) * c1;
_RESERVED_IDENTIFIER_FIXUP_gl_FragColor.x = _67.x;
_RESERVED_IDENTIFIER_FIXUP_gl_FragColor.y = _67.y;
_RESERVED_IDENTIFIER_FIXUP_gl_FragColor.z = _67.z;
_RESERVED_IDENTIFIER_FIXUP_gl_FragColor.w = 1.0;
}
vs: postshader
#version 320 es
in mediump vec4 a_position;
out mediump vec2 v_texcoord0;
in mediump vec2 a_texcoord0;
void main()
{
gl_Position = a_position;
v_texcoord0 = a_texcoord0;
}
|
MotoGP |
v1.13.2 |
2023-07-25 |
Error in shader program link: info: (unknown reason)
fs: thin3d
#version 300 es
#ifdef GL_ES
precision mediump float;
#endif
#ifdef GL_ES
precision lowp float;
#endif
#if __VERSION__ >= 130
#define varying in
#define texture2D texture
#define gl_FragColor fragColor0
out vec4 fragColor0;
#endif
varying vec4 oColor0;
varying vec2 oTexCoord0;
uniform sampler2D Sampler0;
void main() { gl_FragColor = texture2D(Sampler0, oTexCoord0).zyxw * oColor0; }
vs: thin3d
|
MotoGP |
v1.13.2 |
2023-07-25 |
Error in shader program link: info: (unknown reason)
fs: thin3d
#version 300 es
#ifdef GL_ES
precision mediump float;
#endif
#ifdef GL_ES
precision lowp float;
#endif
#if __VERSION__ >= 130
#define varying in
#define texture2D texture
#define gl_FragColor fragColor0
out vec4 fragColor0;
#endif
varying vec4 oColor0;
varying vec2 oTexCoord0;
uniform sampler2D Sampler0;
void main() { gl_FragColor = texture2D(Sampler0, oTexCoord0) * oColor0; }
vs: thin3d
|
MotoGP |
v1.10-6-g8ac4efd3c |
2023-07-16 |
Texture with unexpected bufw (full=10816) |
MotoGP |
v1.11.1 |
2023-07-04 |
sceKernelCreateSema(SEEDMUTEX) unsupported options parameter, size = 148079448 |
MotoGP |
v1.15.4 |
2023-06-20 |
Error in shader compilation: info: Fragment shader compilation failed.
Internal compiler error: unexpected operator
001c1a86:00000000 WriteMask ReplaceBlend_6A:10_B:6_Eq:0
#version 300 es
// Driver: Adreno (TM) 320 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 001c1a86:00000000 WriteMask ReplaceBlend_6A:10_B:6_Eq:0
precision highp int;
uniform sampler2D fbotex;
uniform vec3 u_blendFixA;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
out vec4 fragColor0;
uint packUnorm4x8R(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 0x8u) | (u.z << 0x10u) | (u.w << 0x18u);
}
vec4 unpackUnorm4x8R(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFu, (x >> 0x8u) & 0xFFu, (x >> 0x10u) & 0xFFu, (x >> 0x18u) & 0xFFu);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 v = v_color0;
v.rgb = v.rgb * u_blendFixA + destColor.rgb * v.aaa * 2.0;
fragColor0 = v;
highp uint v32 = packUnorm4x8R(fragColor0);
highp uint d32 = packUnorm4x8R(destColor);
v32 = (v32 & u_colorWriteMask & 0x00FFFFFFu) | (d32 & (~u_colorWriteMask | 0xFF000000u));
fragColor0 = unpackUnorm4x8R(v32);
}
|
MotoGP |
v1.10.3 |
2023-06-06 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bd24a0, pos=0, access=1, data=2, text=2 |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:20: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:20: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:20: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:20: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:20: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:20: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
00180000:0020d000 Fog AlphaTest >
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00180000:0020d000 Fog AlphaTest >
uniform uint u_alphacolorref;
uniform uint u_alphacolormask;
in lowp vec4 v_color0;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
int roundAndScaleTo255i(in float x) { return int(floor(x * 255.0 + 0.5)); }
out vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
if ((roundAndScaleTo255i(v.a) & int(u_alphacolormask >> 24)) <= int(u_alphacolorref >> 24)) DISCARD;
fragColor0 = v;
}
|
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:800d0318 HWX C N Tex TexProjNrm UVMtx Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#defin |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:74: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:74: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:74: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:75: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:75: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:75: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:123: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:123: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:123: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:124: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:124: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:124: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:172: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:172: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:172: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:173: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:173: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:173: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:221: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:221: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:221: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:222: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:222: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:222: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:800c0308 HWX C N Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:79: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:79: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:79: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:128: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:128: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:128: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:177: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:177: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:177: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:226: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:226: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:226: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:800d0b18 HWX C T N Tex TexProjNrm UVMtx Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#def |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:74: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:74: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:74: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:75: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:75: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:75: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:123: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:123: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:123: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:124: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:124: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:124: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:172: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:172: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:172: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:173: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:173: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:173: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:221: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:221: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:221: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:222: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:222: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:222: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:80000308 HWX C N Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:24: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:24: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:24: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:24: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:24: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:24: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
00180000:0020d022 Tex TexAlpha Fog TFuncMod AlphaTest >
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00180000:0020d022 Tex TexAlpha Fog TFuncMod AlphaTest >
uniform sampler2D tex;
uniform uint u_alphacolorref;
uniform uint u_alphacolormask;
in lowp vec4 v_color0;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
int roundAndScaleTo255i(in float x) { return int(floor(x * 255.0 + 0.5)); }
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
if ((roundAndScaleTo255i(v.a) & int(u_alphacolormask >> 24)) <= int(u_alphacolorref >> 24)) DISCARD;
fragColor0 = v;
}
|
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:80000b18 HWX C T N Tex Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:76: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:76: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:76: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:125: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:125: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:125: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:174: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:174: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:174: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:223: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:223: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:223: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:80000b10 HWX T N Tex Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:78: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:127: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:176: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:225: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:80000919 HWX C T LM Tex Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) (( |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:15: 'packUnorm4x8' : built-in redefinition is not allowed
ERROR: 0:19: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:19: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:19: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:19: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:19: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:19: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:19: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:19: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:19: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:15: 'unpackUnorm4x8' : built-in redefinition is not allowed
ERROR: 0:22: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:22: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:22: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:22: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:22: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:22: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:22: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:22: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:22: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
001c1a86:00000000 WriteMask ReplaceBlend_6A:10_B:6_Eq:0
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 001c1a86:00000000 WriteMask ReplaceBlend_6A:10_B:6_Eq:0
precision highp int;
uniform sampler2D fbotex;
uniform vec3 u_blendFixA;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 v = v_color0 ;
v.rgb = v.rgb * u_blendFixA + destColor.rgb * v.aaa * 2.0;
fragColor0 = v;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8( |
MotoGP |
v1.14.1 |
2023-05-11 |
Error in shader compilation: info: ERROR: 0:76: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:76: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:76: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:77: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:125: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:125: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:125: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:126: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:174: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:174: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:174: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:175: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:223: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:223: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:223: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: 'assign' : Implicit conversions for shift operators are not allowed before GLSL 1.20 or without GL_EXT_gpu_shader4 enabled.
ERROR: 0:224: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'uniform uint' and a right operand of type 'const int' (or there is no acceptable conversion)
01000000:80000918 HWX C T Tex Light: LightUberShader
#version 300 es
// Driver: Intel(R) HD Graphics for BayTrail - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) |
MotoGP |
v1.13.2 |
2023-05-03 |
Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800 |
MotoGP |
v1.14.4 |
2023-04-18 |
Replacement rowPitch=512, but w=4000 (level=0) |
MotoGP |
v1.14.4 |
2023-04-16 |
Using texture with dynamic CLUT: texfmt=5, clutfmt=3 |
MotoGP |
v1.14.4 |
2023-04-16 |
Replacement rowPitch=256, but w=5120 (level=0) |
MotoGP |
v1.10-6-g8ac4efd3c |
2023-03-31 |
Render to texture using CLUT with different strides 416 != 512 |
MotoGP |
v1.14.4 |
2023-03-24 |
Waiting thread for 20 that was already waiting for 20 |
MotoGP |
v1.14.4 |
2023-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
MotoGP |
v1.14.4 |
2023-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
MotoGP |
v1.12.2 |
2023-03-16 |
WriteToHardware: Invalid address 000000a4 near PC 0895ba88 LR 0895d250 |
MotoGP |
v1.14.4 |
2023-02-24 |
Unknown GetPointer 1eab7e0c PC 0880acc4 LR 0880ca8c |
MotoGP |
v1.14.4 |
2023-02-22 |
Replacement rowPitch=512, but w=5120 (level=0) |
MotoGP |
v1.14.4 |
2023-02-22 |
Replacement rowPitch=2048, but w=5120 (level=0) |
MotoGP |
v1.14.4 |
2023-02-15 |
MFIC instruction hit (70020024) at 08933650 |
MotoGP |
v1.14.4 |
2023-02-13 |
Replacement rowPitch=1024, but w=4000 (level=0) |
MotoGP |
v1.14.4 |
2023-02-12 |
Replacement rowPitch=512, but w=2000 (level=0) |
MotoGP |
v1.10.2 |
2023-01-25 |
Unknown GE command : 52000001 |
MotoGP |
v1.14.4 |
2023-01-24 |
WriteToHardware: Invalid address 000000a4 near PC 0891ac20 LR 0891ac20 |
MotoGP |
v1.12.3 |
2023-01-23 |
WriteToHardware: Invalid address 000000a4 near PC 088797ac LR 08877700 |
MotoGP |
v1.10.2 |
2023-01-20 |
Render to texture with incompatible formats 5 != 1 at 040cc000 |
MotoGP |
v1.10.2 |
2023-01-20 |
Render to texture with different formats 3 != 1 |
MotoGP |
v1.14.4 |
2023-09-26 |
Using texture with dynamic CLUT: texfmt=4, clutfmt=3 |
MotoGP |
v1.15.4 |
2023-09-16 |
Failed to read valid video stream data from header |
MotoGP |
v1.6.3 |
2023-01-08 |
Render to area containing texture at 00162000 +256x0 |
MotoGP |
v1.9.3-80-g73bf6098e |
2023-01-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08c98210, pos=0, access=1, data=2, text=2 |
MotoGP |
v1.14.1 |
2023-01-04 |
UI scissor out of bounds in CwCheatScreen: 535,0-1065,721 / 1600,720 |
MotoGP |
v1.13.1 |
2022-12-04 |
WriteToHardware: Invalid address 000000a4 near PC 08877ae4 LR 088777f8 |
MotoGP |
v1.13.2 |
2022-11-26 |
Unexpected mpeg first timestamp: 5313400ffff / 5708884017151 |
MotoGP |
v1.10.2 |
2022-11-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=088eb174, pos=0, access=1, data=1, text=1 |
MotoGP |
v1.13.2 |
2023-07-27 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
MotoGP |
v1.11.3 |
2022-10-22 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167508272 |
MotoGP |
v1.11.3 |
2022-10-22 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 1310720 |
MotoGP |
v1.11.3 |
2022-10-22 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147171884 |
MotoGP |
v1.13.2 |
2022-09-27 |
Jump to invalid address: 0246b3b0 |
MotoGP |
v1.7.5 |
2023-01-08 |
Rendering to framebuffer offset: 00162000 +256x0 |
MotoGP |
v1.13.1 |
2022-09-06 |
WriteToHardware: Invalid address afbe00d4 near PC 08000000 LR 08000000 |
MotoGP |
v1.15.4 |
2023-08-12 |
WriteToHardware: Invalid address 000000a4 near PC 0887979c LR 088777cc |
MotoGP |
v1.16.6 |
2023-11-28 |
sceNetAdhocMatchingInit(32768) at 0882f360 |
MotoGP |
v1.12.3 |
2022-07-15 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe70 |
MotoGP |
v1.12.3 |
2022-06-30 |
ReadFromHardware: Invalid address 30303030 near PC 30303030 LR 30303030 |
MotoGP |
v1.12.3 |
2022-06-03 |
sceDmacMemcpy(dest=09054040, src=086ce8c0, size=1251136): overlapping read |
MotoGP |
v1.10.2 |
2022-05-23 |
Unknown syscall in known module 'sceNp': 0xbb069a87 |
MotoGP |
v1.11.3 |
2022-05-07 |
WriteToHardware: Invalid address 000000a4 near PC 0895bab0 LR 0895baa4 |
MotoGP |
v1.16.6 |
2023-11-11 |
WriteToHardware: Invalid address 000000a4 near PC 08807004 LR 08807004 |
MotoGP |
v1.12.3 |
2022-04-17 |
80020001=sceKernelCreateSema(): invalid name |
MotoGP |
v1.12.3 |
2022-04-08 |
WriteToHardware: Invalid address 240600a6 near PC 0882a324 LR 0882a2f8 |
MotoGP |
v1.12.3 |
2022-03-24 |
Branch in RSRTComp delay slot at 0891e0bc in block starting at 0891e088 |
MotoGP |
v1.11.3 |
2022-03-09 |
WriteToHardware: Invalid address 000000a4 near PC 0880b44c LR 0880b420 |
MotoGP |
v1.12.2 |
2022-01-20 |
Failed to truncate file. |
MotoGP |
v1.10.2 |
2022-05-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=08857c2c, pos=0, access=1, data=1, text=1 |
MotoGP |
v1.10.2 |
2022-05-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b680, pos=0, access=1, data=2, text=2 |
MotoGP |
v1.11.3 |
2022-01-02 |
Unknown GetPointer 00000000 PC 08a07d5c LR 08000020 |
MotoGP |
v1.14.4 |
2023-05-08 |
WriteToHardware: Invalid address 000000a4 near PC 08807118 LR 08807148 |
MotoGP |
v1.11.2 |
2021-12-14 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 08f8ed50): duplicate handler |
MotoGP |
v1.11.2 |
2021-12-14 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 08f8e050): duplicate handler |
MotoGP |
v1.11.2 |
2021-12-14 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 0909f400): duplicate handler |
MotoGP |
v1.12.3 |
2021-12-14 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 092d47c0): duplicate handler |
MotoGP |
v1.12.3 |
2021-12-14 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 08fa7e40): duplicate handler |
MotoGP |
v1.12.3 |
2021-12-13 |
sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 094e7150): duplicate handler |
MotoGP |
v1.12.3 |
2021-12-13 |
sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 093e2970): duplicate handler |
MotoGP |
v1.12.3 |
2021-12-13 |
sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 0938bdf0): duplicate handler |
MotoGP |
v1.12.3 |
2021-12-13 |
sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 093ca960): duplicate handler |
MotoGP |
v1.10.2 |
2021-11-23 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296776 |
MotoGP |
v1.10.2 |
2021-11-23 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146185776 |
MotoGP |
v1.10.2 |
2021-11-23 |
sceIoIoctl(disc0:/UMD_DATA.BIN, 01020001, 00000000, 0, 08b84800, 800) |
MotoGP |
v1.10.2 |
2021-11-23 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 33144 |
MotoGP |
v1.10.3 |
2021-10-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987780, pos=0, access=1, data=2, text=2 |
MotoGP |
v1.10.3 |
2021-10-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987780, pos=0, access=1, data=1, text=1 |
MotoGP |
v1.10.2 |
2021-10-30 |
Ignoring func export sceCcc/068c4320, already implemented in HLE. |
MotoGP |
v1.11.3 |
2021-09-30 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
MotoGP |
v1.11.3 |
2021-09-26 |
WriteToHardware: Invalid address 000000a4 near PC 088797ac LR 08877b5c |
MotoGP |
v1.11.3 |
2021-10-05 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=08228844, firstSym=082286c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228854, firstSym=082286e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228858, firstSym=082286e8, varData=00000000, extra=00000000
|
MotoGP |
v1.11.3 |
2021-09-14 |
Unknown GetPointer 00000000 PC 08809424 LR 08809424 |
MotoGP |
v1.11.3 |
2021-08-31 |
Error in shader compilation: info: Vertex shader compilation failed.
ERROR: 0:10: 'premature EOF' : Syntax error: syntax error
ERROR: 1 compilation errors. No code generated.
00000000:0000000a THR C
#version 300 es
// Adreno (TM) 306 - 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 |
MotoGP |
v1.11.3 |
2021-08-14 |
80630007=sceAtracSetData(2, 08d13140, 00000aec): atracID uses different codec type than data |
MotoGP |
v1.11.3 |
2021-08-12 |
Unknown GetPointer 00000000 PC 08805fd0 LR 08805fd0 |