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® |
v1.10.3 |
2025-03-29 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
RIDGE RACER® |
v1.12.2 |
2025-03-10 |
Error in shader program link: info: (unknown reason)
fs: postshader
#ifdef GL_ES
precision mediump float;
#endif
/*
AA shader 4.o / AA shader 4.o - filtro
Copyright (C) 2014 guest(r) - [email protected]
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// Modified as video aware smoothing effect for PPSSPP.
// Some variable definitions had to be moved inside functions(and so repeated) due to glsl->hlsl auto translation failing.
// Also auto translation fails with bool uniform, which is why u_video is defined as float.
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
uniform float u_video;
//===========
varying vec2 v_texcoord0;
const vec3 dt = vec3(1.0,1.0,1.0);
vec3 texture2d (vec2 texcoord) {
float scale = 1.0;
if (u_video==1.0){
scale = 2.0;
} else {
scale = 7.0;
}
vec4 yx = vec4(1.0/480.0,1.0/272.0,-1.0/480.0,-1.0/272.0)/scale;
vec4 xy = vec4(2.0/480.0,2.0/272.0,-2.0/480.0,-2.0/272.0)/scale;
vec3 s00 = texture2D(sampler0, texcoord + yx.zw).xyz;
vec3 s20 = texture2D(sampler0, texcoord + yx.xw).xyz;
vec3 s22 = texture2D(sampler0, texcoord + yx.xy).xyz;
vec3 s02 = texture2D(sampler0, texcoord + yx.zy).xyz;
float m1=dot(abs(s00-s22),dt)+0.001;
float m2=dot(abs(s02-s20),dt)+0.001;
return 0.5*(m2*(s00+s22)+m1*(s02+s20))/(m1+m2);
}
vec3 texture2dd (vec2 texcoord) {
float scale = 1.0;
if (u_video==1.0){
scale = 2.0;
} else {
scale = 7.0;
}
vec4 yx = vec4(1.0/480.0,1.0/272.0,-1.0/480.0,-1.0/272.0)/scale;
vec4 xy = vec4(2.0/480.0,2.0/272.0,-2.0/480.0,-2.0/272.0)/scale;
vec3 c11 = texture2D(sampler0, texcoord ).xyz;
vec3 c00 = texture2D(sampler0, texcoord + xy.zw).xyz;
vec3 c20 = texture2D(sampler0, texcoord + xy.xw).xyz;
vec3 c22 = texture2D(sampler0, texcoord + xy.xy).xyz;
vec3 c02 = texture2D(sampler0, texcoord + xy.zy).xyz;
vec3 s00 = texture2D(sampler0, texcoord + yx.zw).xyz;
vec3 s20 = texture2D(sampler0, texcoord + yx.xw).xyz;
vec3 s22 = texture2D(sampler0, texcoord + yx.xy).xyz;
vec3 s02 = texture2D(sampler0, texcoord + yx.zy).xyz;
float d1=dot(abs(c00-c22),dt)+0.001;
float d2=dot(abs(c20-c02),dt)+0.001;
float m1=dot(abs(s00-s22),dt)+0.001;
float m2=dot(abs(s02-s20),dt)+0.001;
vec3 t2=(d1*(c20+c02)+d2*(c00+c22))/(2.0*(d1+d2));
return 0.25*(c11+t2+(m2*(s00+s22)+m1*(s02+s20))/(m1+m2));
}
void main() {
float scale = 7.0;
bool filtro = false;
if (u_video==1.0){
scale = 2.0;
filtro = true;
} else {
scale = 7.0;
filtro = false;
}
// Calculating texel coordinates
vec2 size = vec2(480.0,272.0)*scale;
vec2 inv_size = vec2(1.0/480.0,1.0/272.0)/scale;
vec2 OGL2Pos = v_texcoord0 * size;
vec2 fp = fract(OGL2Pos);
vec2 dx = vec2(inv_size.x,0.0);
vec2 dy = vec2(0.0, inv_size.y);
vec2 g1 = vec2(inv_size.x,inv_size.y);
vec2 g2 = vec2(-inv_size.x,inv_size.y);
vec2 pC4 = floor(OGL2Pos) * inv_size + 0.5*inv_size;
// Reading the texels
vec3 C0 = texture2d(pC4 - g1);
vec3 C1 = texture2d(pC4 - dy);
vec3 C2 = texture2d(pC4 - g2);
vec3 C3 = texture2d(pC4 - dx);
vec3 C4 = texture2d(pC4 );
vec3 C5 = texture2d(pC4 + dx);
vec3 C6 = texture2d(pC4 + g2);
vec3 C7 = texture2d(pC4 + dy);
vec3 C8 = texture2d(pC4 + g1);
vec3 ul, ur, dl, dr;
float m1, m2;
m1 = dot(abs(C0-C4),dt)+0.001 |
RIDGE RACER® |
v1.17.1-980-gabaea0197b |
2024-10-22 |
GE Interrupt: newState might be 0 |
RIDGE RACER® |
v1.17.1 |
2024-10-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=2, text=2 |
RIDGE RACER® |
v1.17.1 |
2024-10-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.11.3 |
2024-08-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5550, pos=0, access=1, data=2, text=2 |
RIDGE RACER® |
v1.11.3 |
2024-08-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3328, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.17.4-1 |
2024-08-23 |
Savedata buffer overflow: 18196 / 16384 |
RIDGE RACER® |
v1.17.4-1 |
2024-08-19 |
Savedata buffer overflow: 18047 / 16384 |
RIDGE RACER® |
v1.17.4-1 |
2024-08-19 |
Savedata buffer overflow: 18358 / 16384 |
RIDGE RACER® |
v1.17.1 |
2024-07-19 |
sceKernelCreateThread(name=SceParseHTTPheader_Library): unsupported attributes 00000006 |
RIDGE RACER® |
v1.17.1 |
2024-07-19 |
sceKernelCreateThread(name=SceParseURI_Library): unsupported attributes 00000006 |
RIDGE RACER® |
v1.17.1 |
2024-07-19 |
sceKernelCreateThread(name=SceBase64_Library): unsupported attributes 00000006 |
RIDGE RACER® |
v1.17.1 |
2024-07-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=fefefefe, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.17.1 |
2024-07-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=4e49422e, pos=0, access=1, data=2, text=2 |
RIDGE RACER® |
v1.17.1 |
2024-06-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
RIDGE RACER® |
v1.17.1 |
2024-06-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.17.1 |
2024-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
RIDGE RACER® |
v1.17.1 |
2024-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaa4, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.16.6 |
2024-03-18 |
Unusual bezier/spline vtype: 12008780, morph: 0, bones: 3 |
RIDGE RACER® |
v1.16.6 |
2024-03-18 |
Unusual bezier/spline vtype: 12004780, morph: 0, bones: 2 |
RIDGE RACER® |
v1.17.1 |
2024-03-04 |
Can't draw: No current render step. Step count: 0 |
RIDGE RACER® |
v1.12.2 |
2024-02-13 |
__KernelStopThread: thread 363 does not exist |
RIDGE RACER® |
v1.12.2 |
2024-02-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d20000, pos=0, access=1, data=2, text=2 |
RIDGE RACER® |
v1.9.0 |
2024-01-22 |
Ignoring possible render to texture at 0418c640 +0x72 / 256x273 |
RIDGE RACER® |
v1.16.6 |
2024-01-12 |
sceKernelLoadModule: unsupported options size=00000014, flags=099fbec0, pos=0, access=1, data=0, text=1 |
RIDGE RACER® |
v1.16.6 |
2023-12-29 |
__KernelStopThread: thread 308 does not exist (helper deleted) |
RIDGE RACER® |
v1.16.6 |
2023-12-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.9.0 |
2023-09-06 |
Ignoring possible render to texture at 041dc940 +128x150 / 256x272 |
RIDGE RACER® |
v1.9.0 |
2023-09-03 |
Render to texture with incompatible formats 4 != 3 at 041e5740 |
RIDGE RACER® |
v1.14.4 |
2023-09-02 |
Ignoring possible texturing from framebuffer at 04195140 +256x210 / 256x272 |
RIDGE RACER® |
v1.15.4 |
2023-09-02 |
__KernelStopThread: thread 360 does not exist (helper deleted) |
RIDGE RACER® |
v1.13.1 |
2023-08-22 |
Ignoring possible texturing from framebuffer at 04197780 +0x124 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-08-20 |
Ignoring possible texturing from framebuffer at 04193ac0 +512x125 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-08-09 |
Ignoring possible texturing from framebuffer at 0416b780 +0x102 / 256x272 |
RIDGE RACER® |
v1.15.4 |
2023-08-08 |
scePsmfPlayerChangePlayMode(0937de3c, 0, 0): play speed not changed |
RIDGE RACER® |
v1.14.4 |
2023-08-08 |
Ignoring possible texturing from framebuffer at 0415b500 +512x231 / 256x272 |
RIDGE RACER® |
v1.17.1-980-gabaea0197b |
2024-10-22 |
GE Interrupt: newState might be 1 |
RIDGE RACER® |
v1.15.4 |
2023-08-07 |
sceGeBreak(mode=0, unknown=08dfeba8): unknown ptr (valid) |
RIDGE RACER® |
v1.14.4 |
2023-08-05 |
Ignoring possible texturing from framebuffer at 04193ac0 +512x170 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-08-05 |
Ignoring possible texturing from framebuffer at 0416b780 +768x266 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-08-02 |
Ignoring possible texturing from framebuffer at 04193ac0 +0x208 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-08-01 |
Ignoring possible texturing from framebuffer at 0418c640 +256x149 / 256x272 |
RIDGE RACER® |
v1.14.2 |
2023-06-24 |
Ignoring possible texturing from framebuffer at 04197ec0 +512x250 / 480x272 |
RIDGE RACER® |
v1.14.2 |
2023-06-15 |
Ignoring possible texturing from framebuffer at 04197ec0 +768x167 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-08-07 |
Ignoring possible texturing from framebuffer at 041d2bc0 +32x173 / 256x272 |
RIDGE RACER® |
v1.14.2 |
2023-06-07 |
Ignoring possible texturing from framebuffer at 0416b780 +768x266 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-06-05 |
Ignoring possible texturing from framebuffer at 04193ac0 +512x79 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-07-05 |
Ignoring possible texturing from framebuffer at 04193ac0 +768x98 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-31 |
Ignoring possible texturing from framebuffer at 04193ac0 +512x79 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-30 |
Ignoring possible texturing from framebuffer at 04193ac0 +768x88 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-27 |
Ignoring possible texturing from framebuffer at 0415b500 +768x153 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-28 |
Ignoring possible texturing from framebuffer at 0415b500 +0x76 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-28 |
Ignoring possible texturing from framebuffer at 04195140 +1536x113 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-27 |
Ignoring possible texturing from framebuffer at 0416b780 +0x128 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-26 |
Ignoring possible texturing from framebuffer at 04195140 +768x123 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-25 |
Ignoring possible texturing from framebuffer at 04197ec0 +512x93 / 256x272 |
RIDGE RACER® |
v1.13.2-3958-gcc1dd22e0 |
2023-05-20 |
Ignoring possible texturing from framebuffer at 041e3080 +448x107 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-19 |
Ignoring possible texturing from framebuffer at 04197ec0 +512x249 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-06 |
Ignoring possible texturing from framebuffer at 0415b500 +768x146 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-04 |
Ignoring possible texturing from framebuffer at 04193ac0 +256x226 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-06 |
Ignoring possible texturing from framebuffer at 041e8240 +224x87 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-03 |
Ignoring possible texturing from framebuffer at 04197ec0 +0x79 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-03 |
Ignoring possible texturing from framebuffer at 0416b780 +512x246 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-03 |
Ignoring possible texturing from framebuffer at 041e5740 +96x98 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-03 |
Ignoring possible texturing from framebuffer at 04193ac0 +256x217 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-02 |
Ignoring possible texturing from framebuffer at 04195140 +768x251 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-02 |
__KernelStopThread: thread 320 does not exist (helper deleted) |
RIDGE RACER® |
v1.14.4 |
2023-05-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
RIDGE RACER® |
v1.14.4 |
2023-04-30 |
Ignoring possible texturing from framebuffer at 041e7ec0 +160x88 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-22 |
Ignoring possible texturing from framebuffer at 041e5140 +352x99 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-27 |
Ignoring possible texturing from framebuffer at 0416b780 +128x102 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-27 |
Ignoring possible texturing from framebuffer at 041e7f40 +96x88 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-07 |
Ignoring possible texturing from framebuffer at 041e3680 +192x106 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-04 |
Ignoring possible texturing from framebuffer at 041e81c0 +288x87 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-05-18 |
Ignoring possible texturing from framebuffer at 041dc940 +352x133 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-23 |
Ignoring possible texturing from framebuffer at 0418c640 +512x255 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-22 |
Ignoring possible texturing from framebuffer at 041c5340 +96x227 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-21 |
Ignoring possible texturing from framebuffer at 04197ec0 +256x227 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-21 |
Ignoring possible texturing from framebuffer at 04195140 +0x100 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-20 |
Ignoring possible texturing from framebuffer at 041e46c0 +160x102 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-20 |
Ignoring possible texturing from framebuffer at 0415b500 +256x231 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-20 |
Ignoring possible texturing from framebuffer at 04193ac0 +256x213 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-20 |
Ignoring possible texturing from framebuffer at 04193ac0 +768x83 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-19 |
Ignoring possible texturing from framebuffer at 0416b780 +256x124 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-19 |
Ignoring possible texturing from framebuffer at 0416b780 +0x153 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-19 |
Ignoring possible texturing from framebuffer at 04195140 +256x230 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-18 |
Ignoring possible texturing from framebuffer at 04195140 +256x212 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-18 |
Ignoring possible texturing from framebuffer at 04193ac0 +0x133 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-18 |
Ignoring possible texturing from framebuffer at 04193ac0 +512x250 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-18 |
Ignoring possible texturing from framebuffer at 04193ac0 +512x104 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-13 |
Ignoring possible texturing from framebuffer at 04195140 +0x132 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-09 |
Ignoring possible texturing from framebuffer at 04197ec0 +128x152 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-08 |
Ignoring possible texturing from framebuffer at 04193ac0 +256x146 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-06 |
Ignoring possible texturing from framebuffer at 04195140 +512x250 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-06 |
Ignoring possible texturing from framebuffer at 04193ac0 +0x127 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-04-05 |
Ignoring possible texturing from framebuffer at 04193ac0 +256x146 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-03-31 |
Ignoring possible texturing from framebuffer at 04193ac0 +0x145 / 480x272 |
RIDGE RACER® |
v1.14.4 |
2023-03-31 |
Ignoring possible texturing from framebuffer at 04193ac0 +768x123 / 256x272 |
RIDGE RACER® |
v1.14.4 |
2023-03-31 |
Ignoring possible texturing from framebuffer at 04193ac0 +768x189 / 480x272 |