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 |
Spider-Man 2 |
v1.17.1 |
2024-09-29 |
Decoding texture from VRAM mirror at 04710000 swizzle=0 |
Spider-Man 2 |
v1.17.1 |
2024-09-26 |
Unimplemented HLE function sceHttpsDisableOption |
Spider-Man 2 |
v1.17.1 |
2024-09-26 |
Unimplemented HLE function sceHttpsEnableOption |
Spider-Man 2 |
v1.17.1 |
2024-09-16 |
sceGeBreak(mode=1, unknown=09ffd570): unknown ptr (valid) |
Spider-Man 2 |
v1.12.2 |
2024-09-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a410b4, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.17.1 |
2024-09-06 |
sceGeBreak(mode=0, unknown=08b9cc8c): unknown ptr (valid) |
Spider-Man 2 |
v1.17.1 |
2024-08-21 |
GE Interrupt: newState might be 5
--NATIVE-D�TA-BOUNDARY-33043c7e7257c916-73
Content-Disposition: form-data; name="verify"
Content-Length: 67
Content-Transfer-Encoding: binary
GE Interrupt: newState might be %dGE Interrupt: newState might be 5 |
Spider-Man 2 |
v1.15.4 |
2024-08-20 |
Error in shader program link: info: (unknown reason)
fs: postshader
#ifdef GL_ES
precision mediump float;
#endif
/*
Hyllian's 5xBR v3.5a Shader
Copyright (C) 2011 Hyllian/Jararaca - [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.
*/
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
uniform vec2 u_texelDelta;
uniform vec2 u_pixelDelta;
varying vec2 v_texcoord0;
const float coef = 2.0;
const vec3 rgbw = vec3(16.163, 23.351, 8.4772);
const vec4 Ao = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bo = vec4( 1.0, 1.0, -1.0,-1.0 );
const vec4 Co = vec4( 1.5, 0.5, -0.5, 0.5 );
const vec4 Ax = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bx = vec4( 0.5, 2.0, -0.5,-2.0 );
const vec4 Cx = vec4( 1.0, 1.0, -0.5, 0.0 );
const vec4 Ay = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 By = vec4( 2.0, 0.5, -2.0,-0.5 );
const vec4 Cy = vec4( 2.0, 0.0, -1.0, 0.5 );
vec4 df(vec4 A, vec4 B) {
return abs(A-B);
}
vec4 weighted_distance(vec4 a, vec4 b, vec4 c, vec4 d, vec4 e, vec4 f, vec4 g, vec4 h) {
return (df(a,b) + df(a,c) + df(d,e) + df(d,f) + 4.0*df(g,h));
}
void main(){
bool upscale = u_texelDelta.x > (1.6 * u_pixelDelta.x);
vec3 res = texture2D(sampler0, v_texcoord0.xy).xyz;
// Let's skip the whole scaling if output size smaller than 1.6x of input size
if (upscale) {
bvec4 edr, edr_left, edr_up, px; // px = pixel, edr = edge detection rule
bvec4 interp_restriction_lv1, interp_restriction_lv2_left, interp_restriction_lv2_up;
bvec4 nc; // new_color
bvec4 fx, fx_left, fx_up; // inequations of straight lines.
vec2 pS = 1.0 / u_texelDelta.xy;
vec2 fp = fract(v_texcoord0.xy*pS.xy);
vec2 TexCoord_0 = v_texcoord0.xy-fp*u_pixelDelta.xy;
vec2 dx = vec2(u_texelDelta.x,0.0);
vec2 dy = vec2(0.0,u_texelDelta.y);
vec2 y2 = dy + dy; vec2 x2 = dx + dx;
vec3 A = texture2D(sampler0, TexCoord_0 -dx -dy ).xyz;
vec3 B = texture2D(sampler0, TexCoord_0 -dy ).xyz;
vec3 C = texture2D(sampler0, TexCoord_0 +dx -dy ).xyz;
vec3 D = texture2D(sampler0, TexCoord_0 -dx ).xyz;
vec3 E = texture2D(sampler0, TexCoord_0 ).xyz;
vec3 F = texture2D(sampler0, TexCoord_0 +dx ).xyz;
vec3 G = texture2D(sampler0, TexCoord_0 -dx +dy ).xyz;
vec3 H = texture2D(sampler0, TexCoord_0 +dy ).xyz;
vec3 I = texture2D(sampler0, TexCoord_0 +dx +dy ).xyz;
vec3 A1 = texture2D(sampler0, TexCoord_0 -dx -y2).xyz;
vec3 C1 = texture2D(sampler0, TexCoord_0 +dx -y2).xyz;
vec3 A0 = texture2D(sampler0, TexCoord_0 -x2 -dy).xyz;
vec3 G0 = texture2D(sampler0, TexCoord_0 -x2 +dy).xyz;
vec3 C4 = texture2D(sampler0, TexCoord_0 +x2 -dy).xyz;
vec3 I4 = texture2D(sampler0, TexCoord_0 +x2 +dy).xyz;
vec3 G5 = texture2D(sampler0, TexCoord_0 -dx +y2).xyz;
vec3 I5 = texture2D(sampler0, TexCoord_0 +dx +y2).xyz;
vec3 B1 = texture2D(sampler0, TexCoord_0 -y2).xyz;
vec3 D0 = texture2D(sampler0, TexCoord_0 -x2 ).xyz;
vec3 H5 = texture2D(sampler0, TexCoord_0 +y2).xyz;
vec3 F4 = texture2D(sampler0, TexCoord_0 +x2 ).xyz;
vec4 b = vec4(dot(B ,rgbw), dot(D ,rgbw), dot(H ,rgbw), dot(F ,rgbw));
vec4 c = vec4(dot(C ,rgbw), dot(A ,rgbw), dot(G ,rgbw), dot(I ,rgbw));
vec4 d = vec4(b.y, b.z, b.w, b.x);
vec4 e = vec4(dot(E,rgbw));
vec4 f = vec4(b.w, b.x, b.y, b.z);
vec4 g = vec4(c.z, c.w, c.x, c.y);
vec4 h = vec |
Spider-Man 2 |
v1.17.1 |
2024-08-19 |
GE Interrupt: newState might be 0
--NATIVE-DATA-BOU�DARY-3efd6ec61c2d667b-55
Content-Disposition: form-data; name="verify"
Content-Length: 67
Content-Transfer-Encoding: binary
GE Interrupt: newState might be %dGE Interrupt: newState might be 0 |
Spider-Man 2 |
v1.17.1 |
2024-08-15 |
sceKernelRegisterSubIntrHandler(30, 0, 08840dd4, 00000000): duplicate handler |
Spider-Man 2 |
v1.17.1 |
2024-08-14 |
800200d2=scePsmfPlayerSetPsmf(099c47bc, disc0:/PSP_GAME/USRDIR/fmv/l_bell/l_01_b.pmf): too many streams in PSMF video, bogus data |
Spider-Man 2 |
v1.17.1 |
2024-08-14 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (4b707dfb), bad data |
Spider-Man 2 |
v1.17.1 |
2024-08-14 |
800200d2=scePsmfPlayerSetPsmf(099c47bc, disc0:/PSP_GAME/USRDIR/fmv/l_bell/l_01_a.pmf): too many streams in PSMF video, bogus data |
Spider-Man 2 |
v1.16.6 |
2024-08-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08ad0000, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.3 |
2024-07-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d20000, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff3ac in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 076361c0 PC 09fff3ac LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff3a8 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 07637f00 PC 09fff3a8 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff3a4 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 07638400 PC 09fff3a4 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff3a0 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 076451c0 PC 09fff3a0 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff39c in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 026ea6a0 PC 09fff39c LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 076451c0 PC 09fff394 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
MIPSCompileOp: Invalid instruction 42300000 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
MIPSCompileOp: Invalid instruction 43b24a3d |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
MIPSCompileOp: Invalid instruction 4399b1ec |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
MIPSCompileOp: Invalid instruction 4339970a |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 0237d350 PC 09fff33c LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 07bd1780 PC 09fff334 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a1fa30 PC 09fff32c LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 076451c0 PC 09fff320 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff31c in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 07650140 PC 09fff31c LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a21140 PC 09fff30c LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a21110 PC 09fff300 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff2fc in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a21e30 PC 09fff2fc LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff2f8 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a48970 PC 09fff2f8 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff2f4 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 076501c0 PC 09fff2f4 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Trying to compile instruction 49e3dfc4 that can't be interpreted |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a47d80 PC 09fff2ec LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff2e8 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 02a47e60 PC 09fff2e8 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff2e4 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Jump to invalid address: 076501c0 PC 09fff2e4 LR 089166c4 |
Spider-Man 2 |
v1.17.1 |
2024-07-11 |
Branch in Jump delay slot at 09fff2e0 in block starting at 09fff230 |
Spider-Man 2 |
v1.17.3 |
2024-07-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b4b0, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1 |
2024-07-04 |
sceKernelCreateThread(name=god_m001_Title): unsupported attributes 00000006 |
Spider-Man 2 |
v1.11.3 |
2024-06-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 4000 |
Spider-Man 2 |
v1.11.3 |
2024-06-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 9600 |
Spider-Man 2 |
v1.11.3 |
2024-06-28 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146538036 |
Spider-Man 2 |
v1.11.3 |
2024-06-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146728056 |
Spider-Man 2 |
v1.11.3 |
2024-06-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146720128 |
Spider-Man 2 |
v1.11.3 |
2024-06-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 5177420 |
Spider-Man 2 |
v1.17.1 |
2024-06-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d853c4, pos=1, access=1, data=1, text=1 |
Spider-Man 2 |
v1.17.1 |
2024-06-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08dd5138, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1 |
2024-06-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=0000a018, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.17.1-669-gd298c6f6f5 |
2024-06-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1-334-g1786a4ddb |
2024-06-26 |
80630006=sceAtracSetDataAndGetID(08e7fec0, 00020000): invalid RIFF header |
Spider-Man 2 |
v1.17.1-334-g1786a4ddb |
2024-08-18 |
Can't draw: No current render step. Step count: 0 |
Spider-Man 2 |
v1.17.1 |
2024-05-05 |
80630007=sceAtracSetData(2, 08d4b1c0, 0000fe00): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=0, text=0 |
Spider-Man 2 |
v1.17.1 |
2024-08-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1 |
2024-09-26 |
Unimplemented HLE function sceNetResolverTerm |
Spider-Man 2 |
v1.17.1 |
2024-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=08e3c168, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.10.2 |
2024-04-19 |
Could not setup streams, unexpected stream count: 13462 |
Spider-Man 2 |
v1.11.3 |
2024-04-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 149356544 |
Spider-Man 2 |
v1.11.3 |
2024-04-15 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 149518448 |
Spider-Man 2 |
v1.11.3 |
2024-04-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151465432 |
Spider-Man 2 |
v1.11.3 |
2024-04-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143642516 |
Spider-Man 2 |
v1.11.3 |
2024-04-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143634596 |
Spider-Man 2 |
v1.11.3 |
2024-04-15 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=0880defc, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.16.6 |
2024-04-14 |
80630006=sceAtracSetDataAndGetID(08e5a200, 00020000): invalid RIFF header |
Spider-Man 2 |
v1.17.1 |
2024-04-11 |
00000400=sceGeEdramSetAddrTranslation(00001000) |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 000035a0): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 000020a0): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 00001300): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 00001200): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 00001100): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08bb1580, 00038000): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 00010000): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 00005000): atracID uses different codec type than data |
Spider-Man 2 |
v1.17.1 |
2024-04-08 |
80630007=sceAtracSetData(2, 08be95c0, 00006000): atracID uses different codec type than data |
Spider-Man 2 |
v1.15.4 |
2024-03-24 |
__KernelStopThread: thread 483 does not exist (helper deleted) |
Spider-Man 2 |
v1.11.3 |
2024-03-19 |
Unknown GetPointer 00000000 PC 08a07300 LR 08a07300 |
Spider-Man 2 |
v1.17.1 |
2024-03-16 |
sceDmacMemcpy(dest=0413b3c0, src=090fa5c0, size=128): overlapping read |
Spider-Man 2 |
v1.10-6-g8ac4efd3c |
2024-03-12 |
80630006=sceAtracSetDataAndGetID(08e66fc0, 00020000): invalid RIFF header |
Spider-Man 2 |
v1.10-6-g8ac4efd3c |
2024-03-12 |
Unexpected mpeg first timestamp: ea1fff814f8 / 16088946971896 |
Spider-Man 2 |
v1.17.1 |
2024-02-20 |
Unusual bezier/spline vtype: 120017c1, morph: 0, bones: 1 |
Spider-Man 2 |
v1.16.6 |
2024-01-29 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=0000001c, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.16.6 |
2024-01-29 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08a1d400, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.16.6 |
2024-01-29 |
sceKernelCreateThread(name=PGE Support): unsupported attributes 00001006 |
Spider-Man 2 |
v1.16.6 |
2024-01-29 |
80630007=sceAtracSetData(2, 08d4b180, 0000fe00): atracID uses different codec type than data |
Spider-Man 2 |
v1.16.6 |
2024-01-29 |
Video out requested, not supported: mode=0 size=512,512 |
Spider-Man 2 |
v1.16.6 |
2024-01-29 |
Rendering to framebuffer offset at 040cc000 +64x0 (stride 512) |