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 |
RIDGE RACER 2 |
v1.12.3 |
2022-05-03 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
RIDGE RACER 2 |
v1.11.3 |
2022-04-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e6640/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-31 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e4a80/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-17 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e5d40/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-15 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e0340/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-15 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e4740/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-02-14 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 0419bbc0/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-01-26 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041dd000/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-01-25 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041cd140/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2021-11-16 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041a71c0/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-17 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041d33c0/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-24 |
Ignoring possible texturing from framebuffer at 0416b780 +0x92 / 480x272 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-12 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04185300/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04169880/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 0416dc80/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041add40/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041a9940/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-02 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e4d40/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-02 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e9140/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-02 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04193a00/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-04-01 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041dda40/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-01 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041d9640/04088000 |
RIDGE RACER 2 |
v1.11.3-838-gff2a6eeda |
2021-06-30 |
Error in shader program link: info: Compile failed.
ERROR: 0:39: ';' : syntax error;
ERROR: 1 compilation errors. No code generated.
WARNING: 0:32: '[email protected][email protected]' : used without being initialised
WARNING: 1 compilation warnings.
Success.
WARNING: 0:18: '[email protected][email protected]' : used without being initialised
WARNING: 1 compilation warnings.
fs: 00000000:00a1d822 Tex TexAlpha LM Fog 2x TFuncMod AlphaTest0 >
#version 130
// Intel(R) Graphics Media Accelerator 3600 Series - GLSL 130
#define DISCARD discard
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
uniform sampler2D testtex;
in lowp vec4 v_color0;
in lowp vec3 v_color1;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 s = vec4(v_color1, 0.0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t + s;
v.rgb = clamp(v.rgb * 2.0, 0.0, 1.0);
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
if (v.a < 0.002) DISCARD;
fragColor0 = v;
}
vs: 01010000:0000093d HWX C T LM Fog Tex Light: MatUp:1 Cull
#version 130
// Intel(R) Graphics Media Accelerator 3600 Series - GLSL 130
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
in vec3 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform lowp vec4 u_ambient;
uniform lowp vec3 u_matdiffuse;
uniform lowp vec4 u_matspecular;
uniform lowp vec3 u_matemissive;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out lowp vec3 v_color1;
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 = vec3(0.0, 0.0, 1.0);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
lowp vec4 lightSum0 = u_ambient * color0 + vec4(u_matemissive, 0.0);
mediump float ldot;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
RIDGE RACER 2 |
v1.11.3 |
2021-06-23 |
Ignoring possible texturing from framebuffer at 0417ae00 +0x92 / 256x272 |
RIDGE RACER 2 |
v1.11.3 |
2021-06-22 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041dd200/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-05-27 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041ab500/04088000 |
RIDGE RACER 2 |
v1.11.3-605-gb1a53d493 |
2021-05-16 |
Error in shader program link: info: L0001 The fragment floating-point variable u_texelDelta does not match the vertex variable u_texelDelta.
The precision does not match.
fs: postshader
#version 320 es
precision mediump float;
precision highp int;
uniform vec2 u_texelDelta;
layout(binding = 0) uniform mediump sampler2D sampler0;
in vec2 v_texcoord0;
in vec2 v_texcoord1;
out vec4 _RESERVED_IDENTIFIER_FIXUP_gl_FragColor;
void main()
{
vec2 texcoordInPixels = ((v_texcoord0 * v_texcoord1) * 272.0) * u_texelDelta.y;
vec2 centerCoord = floor(texcoordInPixels) + vec2(0.5);
vec2 distFromCenter = abs(centerCoord - texcoordInPixels);
float Y = max(distFromCenter.x, distFromCenter.y);
Y *= Y;
float YY = Y * Y;
float YYY = YY * Y;
float LineWeight = YY - (2.7000000476837158203125 * YYY);
LineWeight = 1.0 - (14.0 * LineWeight);
vec3 colour = texture(sampler0, v_texcoord0).xyz * LineWeight;
_RESERVED_IDENTIFIER_FIXUP_gl_FragColor = vec4(colour, 1.0);
}
vs: postshader
#version 320 es
uniform vec2 u_texelDelta;
out vec2 v_texcoord0;
in vec2 a_texcoord0;
in vec4 a_position;
out vec2 v_texcoord1;
void main()
{
v_texcoord0 = a_texcoord0;
gl_Position = a_position;
v_texcoord1 = vec2(1.0) / u_texelDelta;
}
|
RIDGE RACER 2 |
v1.11.3 |
2021-05-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08880000, pos=0, access=1, data=2, text=2 |
RIDGE RACER 2 |
v1.12.3 |
2022-02-14 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04195440/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-08-01 |
Ignoring possible texturing from framebuffer at 04195a40 +0x92 / 256x272 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041c3440/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041bf040/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041c1cc0/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041c60c0/04088000 |
RIDGE RACER 2 |
v1.9.3 |
2021-04-19 |
Ignoring possible render to texture at 0415f240 +192x85 / 256x272 |
RIDGE RACER 2 |
v1.11.3 |
2021-04-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041d9340/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-04-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
RIDGE RACER 2 |
v1.11.3 |
2021-04-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-02 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041d9940/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-02 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041ddd40/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-01 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 0419ba40/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-01 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04170980/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-04-01 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04174d80/04088000 |
RIDGE RACER 2 |
v1.12.3-501-g1f5680e61 |
2022-03-28 |
Ignoring possible texturing from framebuffer at 0415b500 +0x92 / 256x272 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-31 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041d3ec0/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-28 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e4c40/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-04-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041dd740/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-31 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e9940/04088000 |
RIDGE RACER 2 |
v1.11.3-603-g96c109e6c |
2022-04-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04195a40/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-29 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e7240/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-24 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e5340/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-24 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e9740/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041bd180/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e2740/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041d41c0/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-05-26 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041fff00/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-28 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041acc00/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-28 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e9040/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-31 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e5540/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-31 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04197780/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-24 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e4b80/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-03 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041cbf00/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-02-10 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 0417ae00/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-09-13 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041b0340/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-09-13 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041a7a00/04088000 |
RIDGE RACER 2 |
v1.11.3 |
2021-09-12 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 0418c640/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-30 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041cd340/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-02-18 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e2a40/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-02-18 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041a2680/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-02-18 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041a6a80/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-02-18 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041a8300/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-17 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041bc380/04088000 |
RIDGE RACER 2 |
v1.12.3 |
2022-02-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
RIDGE RACER 2 |
v1.11.3 |
2021-04-03 |
sceKernelCreateThread(name=sceNetAdhocAuth_Service): unsupported attributes 00001006 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x293b45b8 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x7e65b999 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x6652b8ca |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x18260574 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0xe9b3061e |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x86255ada |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x8125221d |
RIDGE RACER 2 |
v1.11.3 |
2021-04-03 |
sceKernelCreateThread(name=sceMemab): unsupported attributes 00001006 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=08227844, firstSym=082276c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08227854, firstSym=082276e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08227858, firstSym=082276e8, varData=00000000, extra=00000000
|
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Crazy varData address 01011006, skipping rest of module |
RIDGE RACER 2 |
v1.12.3 |
2022-02-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=1 |
RIDGE RACER 2 |
v1.11.3 |
2021-04-03 |
sceKernelCreateThread(name=sceNetIfhandle_Service): unsupported attributes 00001006 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Ignoring func export sceNetIfhandle/fd8585e1, already implemented in HLE. |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Ignoring func export sceNetIfhandle/c80181a2, already implemented in HLE. |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x369ed59d |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x39810265 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0xb736e9ff |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0xaf36d708 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x89b3d48c |
RIDGE RACER 2 |
v1.10.3 |
2021-02-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x56c039b5 |
RIDGE RACER 2 |
v1.12.3 |
2022-03-17 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 0416b780/04088000 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-31 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041bce80/04088000 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-15 |
Render to texture with incompatible formats 5 != 3 at 041d33c0 |
RIDGE RACER 2 |
v1.11.2 |
2021-03-05 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 041e6b40/04088000 |
RIDGE RACER 2 |
v1.10.3 |
2021-02-01 |
Ignoring possible render to texture at 041e9740 +128x160 / 256x272 |
RIDGE RACER 2 |
v1.10.3 |
2021-01-27 |
Render to texture with incompatible formats 5 != 3 at 04195440 |