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 |
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:003a0b20 HWX T N UVEnv 2: c:0 t:0 3: c:0 t:0 Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:003a0b20 HWX T N UVEnv 2: c:0 t:0 3: c:0 t:0 Cull
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_lightpos2;
uniform vec3 u_lightpos3;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
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;
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);
vec4 ambientColor = u_matambientalpha;
v_color0 = u_matambientalpha;
v_texcoord = vec3(u_uvscaleoffset.xy * vec2(1.0 + (length(u_lightpos2) == 0.0 ? worldnormal.z : dot(normalize(u_lightpos2), worldnormal)), 1.0 + (length(u_lightpos3) == 0.0 ? worldnormal.z : dot(normalize(u_lightpos3), worldnormal))) * 0.5, 1.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:00000b20 HWX T N Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000b20 HWX T N Cull
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 lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
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;
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);
vec4 ambientColor = u_matambientalpha;
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;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:00000002 THR
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000002 THR
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0));
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 01000000:80000928 HWX C T Light: LightUberShader Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000928 HWX C T Light: LightUberShader Cull
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 uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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_depthRange;
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;
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(0.0, 0.0, 1.0, 0.0), u_world).xyz);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
vec4 ambientColor = ((u_lightControl & (1u << 0x14u)) != 0x0u) ? color0 : u_matambientalpha;
vec3 diffuseColor = ((u_lightControl & (1u << 0x15u)) != 0x0u) ? color0.rgb : u_matdiffuse;
vec3 specularColor = ((u_lightControl & (1u << 0x16u)) != 0x0u) ? color0.rgb : u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:0020d002 Tex Fog FragUber TFuncMod AlphaTest >
vs: 01000000:80000928 HWX C T Light: LightUberShader Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000928 HWX C T Light: LightUberShader Cull
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 uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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_depthRange;
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;
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(0.0, 0.0, 1.0, 0.0), u_world).xyz);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
vec4 ambientColor = ((u_lightControl & (1u << 0x14u)) != 0x0u) ? color0 : u_matambientalpha;
vec3 diffuseColor = ((u_lightControl & (1u << 0x15u)) != 0x0u) ? color0.rgb : u_matdiffuse;
vec3 specularColor = ((u_lightControl & (1u << 0x16u)) != 0x0u) ? color0.rgb : u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 01000000:803a0b20 HWX T N UVEnv Light: LightUberShader 2: c:0 t:0 3: c:0 t:0 Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:803a0b20 HWX T N UVEnv Light: LightUberShader 2: c:0 t:0 3: c:0 t:0 Cull
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 uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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_depthRange;
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;
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);
vec4 ambientColor = u_matambientalpha;
vec3 diffuseColor = u_matdiffuse.rgb;
vec3 specularColor = u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
}
lightSum1 += u_lightspecular0 * specularColor * ldot * lightScale;
}
lightSum0.rgb += (u_lig |
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:0020d002 Tex Fog FragUber TFuncMod AlphaTest >
vs: 01000000:803a0b20 HWX T N UVEnv Light: LightUberShader 2: c:0 t:0 3: c:0 t:0 Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:803a0b20 HWX T N UVEnv Light: LightUberShader 2: c:0 t:0 3: c:0 t:0 Cull
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 uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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_depthRange;
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;
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);
vec4 ambientColor = u_matambientalpha;
vec3 diffuseColor = u_matdiffuse.rgb;
vec3 specularColor = u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
}
lightSum1 += u_lightspecular0 * specularColor * ldot * lightScale;
}
lightSu |
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:00000028 C Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000028 C Cull
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
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;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 pos = position;
vec4 outPos = pos;
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:0020d002 Tex Fog FragUber TFuncMod AlphaTest >
vs: 00000000:00000928 HWX C T Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000928 HWX C T Cull
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_depthRange;
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;
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(0.0, 0.0, 1.0, 0.0), u_world).xyz);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
vec4 ambientColor = u_matambientalpha;
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;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 01000000:80000b20 HWX T N Light: LightUberShader Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000b20 HWX T N Light: LightUberShader Cull
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 uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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_depthRange;
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;
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);
vec4 ambientColor = u_matambientalpha;
vec3 diffuseColor = u_matdiffuse.rgb;
vec3 specularColor = u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
}
lightSum1 += u_lightspecular0 * specularColor * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:0000000a THR C
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:0000000a THR C
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0));
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:00000020 Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000020 Cull
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
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;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 pos = position;
vec4 outPos = pos;
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.3 |
2025-07-16 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000002 Tex FragUber TFuncMod
vs: 00000000:00000928 HWX C T Cull
#version 320 es
// Driver: PowerVR Rogue GE8322 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000928 HWX C T Cull
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_depthRange;
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;
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(0.0, 0.0, 1.0, 0.0), u_world).xyz);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
vec4 ambientColor = u_matambientalpha;
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;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb38 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb08 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea88 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeab8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb28 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe9e8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeae8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfed04 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeaf8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea18 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb78 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea58 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea68 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeaa8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe9a8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe998 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe9c8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfebf8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea98 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb68 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe9f8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfed10 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfec08 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfebc8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfebb8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb98 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfead8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeba8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeac8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe9b8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfebe8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea78 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb48 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfebd8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea28 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea48 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb58 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb88 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfec18 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe9d8 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfec38 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfeb18 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfec28 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea08 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfea38 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.19.1 |
2025-06-14 |
Branch in Jump delay slot at 09cfe988 in block starting at 09cfe980 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffce8 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffcc8 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffcd8 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffcb8 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffc98 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffca8 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Jump to invalid address: 07087dc0 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-06-11 |
Branch in Jump delay slot at 09cffc88 in block starting at 09cffc80 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-31 |
VTYPE with morph used: THRU=0 TC=2 COL=0 POS=2 NRM=1 WT=0 NW=1 IDX=0 MC=5 |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/fb7846e2, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/f1b73d12, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/e0cf8091, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/d9392ccb, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/d2b18485, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/cc0a8bda, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/c6a8bee2, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/c56949ad, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/beb47224, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/b8476cf4, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/b7d3c112, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/b4d1cbbf, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/a62e6e80, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/a2d5d209, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/953e6c10, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/92c05851, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/90521ac5, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/8406f469, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/76e33e9c, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/70ecaa10, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.10.3 |
2025-05-31 |
Ignoring func export sceCcc/6f82ee03, already implemented in HLE. |
Midnight Club 3: DUB Edition |
v1.17.1 |
2025-05-19 |
Rendering from framebuf with offset 040d43c0 -> 040d4000+480x0 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
An uneaten prefix at end of block: 09fbf780 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
MIPSCompileOp: Invalid instruction 40e2dd5a |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
Jump to invalid address: 06ed1780 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
Jump to invalid address: 02725cc0 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
Jump to invalid address: 02753440 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
MIPSCompileOp: Invalid instruction 00000035 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
Branch in Jump delay slot at 09fbf83c in block starting at 09fbf630 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
Jump to invalid address: 07efdf40 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
MIPSCompileOp: Invalid instruction 0000d077 |
Midnight Club 3: DUB Edition |
v1.18.1 |
2025-05-17 |
Branch in Jump delay slot at 09fbf75c in block starting at 09fbf630 |