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 |
EA-Sports FC PC-V |
v1.17.1 |
2024-12-07 |
Unknown GetPointerWrite 3b14f80c PC 0888d3fc LR 0888d40c |
EA-Sports FC PC-V |
v1.11 |
2024-12-07 |
Unknown GetPointer 00000000 PC 08863d6c LR 08849a58 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-07 |
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 |
EA-Sports FC PC-V |
v1.16.6 |
2024-12-07 |
Unknown GetPointer 29866795 PC 0881c2d8 LR 0881c2e8 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-07 |
Unknown GetPointer 00000140 PC 08825d44 LR 088113dc |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-07 |
Unknown GetPointerWrite 00000000 PC 08825d44 LR 088113dc |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-06 |
Jump to invalid address: 0bd461b0 |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-06 |
Jump to invalid address: 0bd463b0 |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-06 |
Jump to invalid address: 0bd462b0 |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-06 |
MIPSCompileOp: Invalid instruction 72a24cbc |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-06 |
Jump to invalid address: 07245fa0 |
EA-Sports FC PC-V |
v1.11.3 |
2024-12-05 |
Unknown GetPointer 00000000 PC 08efb6e0 LR 08efb6f0 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-03 |
Unknown GetPointer 298662a4 PC 0881c428 LR 0881c438 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-02 |
sceDmacMemcpy(dest=040cc000, src=09517200, size=557056): overlapping read |
EA-Sports FC PC-V |
v1.11.3 |
2024-12-01 |
Unexpected mpeg first timestamp: d59a080000 / 917412249600 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-01 |
Jump to invalid address: 02ba6800 PC 09fdd660 LR 0888d330 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-01 |
Jump in likely branch delay slot with link at 09fdd66c |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-01 |
Jump to invalid address: 076b0480 PC 09fdd664 LR 0888d330 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-01 |
Unknown GetPointerWrite 170c23cf PC 0888d404 LR 0888d40c |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-30 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l0 rate 0007 |
EA-Sports FC PC-V |
v1.8.0 |
2024-11-29 |
Unknown GetPointer 2c5baac2 PC 0884d5b0 LR 0884d7d4 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-26 |
Unknown GetPointerWrite e70c7dae PC 0888d3fc LR 0888d40c |
EA-Sports FC PC-V |
v1.10.3 |
2024-11-26 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000136, pos=0, access=1, data=2, text=2 |
EA-Sports FC PC-V |
v1.15.4 |
2024-11-24 |
Unknown GetPointer 00002b00 PC 0884a918 LR 0884a938 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145269936 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 000001ff |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
Jump to invalid address: 07400000 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 000020fc |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 00001577 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 000021bb |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 00000237 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 0000003b |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 00000477 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-24 |
MIPSCompileOp: Invalid instruction 000028fc |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-23 |
MIPSCompileOp: Invalid instruction 7b092347 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-23 |
00000400=sceGeEdramSetAddrTranslation(00000400) |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-23 |
Unknown GetPointer 2985fcfd PC 0881c2d8 LR 0881c2e8 |
EA-Sports FC PC-V |
v1.18.1 |
2024-11-27 |
sceDmacMemcpy(dest=09054040, src=086ce900, size=1251072): overlapping read |
EA-Sports FC PC-V |
v1.15.4 |
2024-11-20 |
Unknown GetPointer 0000b8c0 PC 0881c428 LR 0881c438 |
EA-Sports FC PC-V |
v1.18.1 |
2024-11-20 |
80420014=__sceSasCore(08bb3ac0, 30565580): invalid address |
EA-Sports FC PC-V |
v1.8.0 |
2024-11-19 |
sceDmacMemcpy(dest=040cc000, src=091f61b0, size=557056): overlapping read |
EA-Sports FC PC-V |
v1.15.4 |
2024-11-19 |
Unknown GetPointer 00005578 PC 0881c428 LR 0881c438 |
EA-Sports FC PC-V |
v1.13.2 |
2024-11-19 |
Unknown GetPointer 00000000 PC 0881c430 LR 0881c438 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-18 |
sceDmacMemcpy(dest=086ce900, src=040cc000, size=1251072): overlapping read |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-17 |
Unknown GetPointer 00000000 PC 0882bbf4 LR 0882bc04 |
EA-Sports FC PC-V |
v1.17.1 |
2024-12-02 |
807f00fd=sceMp3Init(00000000): invalid sample rate v3 l2 rate 03 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-14 |
MIPSCompileOp: Invalid instruction b0801e50 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-12 |
Unknown GetPointer 2c57c402 PC 0884d7b4 LR 0884d7d4 |
EA-Sports FC PC-V |
v1.10.3 |
2024-12-04 |
807f00fd=sceMp3Init(00000000): invalid sample rate v3 l1 rate 03 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-30 |
807f00fd=sceMp3Init(00000000): invalid sample rate v3 l3 rate 03 |
EA-Sports FC PC-V |
v1.10.3 |
2024-12-02 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l2 rate 000f |
EA-Sports FC PC-V |
v1.10.3 |
2024-12-02 |
807f00fd=sceMp3Init(00000000): invalid bitrate v2 l0 rate 0001 |
EA-Sports FC PC-V |
v1.10.3 |
2024-11-12 |
807f00fd=sceMp3Init(00000000): invalid bitrate v1 l0 rate 0009 |
EA-Sports FC PC-V |
v1.10.3 |
2024-12-04 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l0 rate 000f |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-03 |
sceDmacMemcpy(dest=092ed040, src=086ce900, size=1251072): overlapping read |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-08 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc68c0, pos=0, access=1, data=2, text=2 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-08 |
80630007=sceAtracSetData(3, 08d4b180, 0000fe00): atracID uses different codec type than data |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-09 |
Unknown GetPointer 2985e528 PC 0881c2e0 LR 0881c2e8 |
EA-Sports FC PC-V |
v1.18.1 |
2024-11-07 |
sceDmacMemcpy(dest=040cc000, src=0927e1c0, size=557056): overlapping read |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-07 |
WriteToHardware: Invalid address 00000004 near PC 08863d6c LR 08856c34 |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-08 |
80630006=sceAtracSetHalfwayBufferAndGetID(08dda340, 00000800, 00040000): invalid RIFF header |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-05 |
Branch in Jump delay slot at 00010000 in block starting at 00010000 |
EA-Sports FC PC-V |
v1.11.3 |
2024-11-05 |
Jump to invalid address: 07451540 |
EA-Sports FC PC-V |
v1.10.3-1207-ge01d53870 |
2024-11-05 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1:1 '�' is an invalid character.
ERROR: 0:1:3 '�' is an invalid character.
ERROR: 0:1: 'P' : syntax error
WARNING: 0:1:1 '�' is an invalid character.
WARNING: 0:1:3 '�' is an invalid character.
2 compilation warnings.
3 compilation errors. No code generated.
thin3d
P�|� |
EA-Sports FC PC-V |
v1.17.1 |
2024-11-03 |
Unknown GetPointer 00290000 PC 0884a918 LR 0884a938 |
EA-Sports FC PC-V |
v1.10.3 |
2024-11-01 |
RET: Stack empty! |
EA-Sports FC PC-V |
v1.14.1 |
2024-10-31 |
UI scissor out of bounds in CwCheatScreen: 464,0-1112,721 / 1576,720 |
EA-Sports FC PC-V |
v1.14.1 |
2024-10-31 |
UI scissor out of bounds in MainScreen: 0,0-1214,721 / 1576,720 |
EA-Sports FC PC-V |
v1.14.1 |
2024-10-31 |
UI scissor out of bounds in GameSettingsScreen: 238,0-1327,721 / 1576,720 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 02bb7ef0 PC 09fdd690 LR 0888d330 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Branch in Jump delay slot at 09fdd68c in block starting at 09fdd660 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 02233f00 PC 09fdd68c LR 0888d330 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 02bb8130 PC 09fdd680 LR 0888d330 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Branch in Jump delay slot at 09fdd67c in block starting at 09fdd660 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 02235080 PC 09fdd67c LR 0888d330 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 02f98000 PC 09fdd674 LR 0888d330 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 07523880 PC 09fdd664 LR 0888d330 |
EA-Sports FC PC-V |
v1.18.1 |
2024-12-01 |
Branch in Jump delay slot at 09fdd660 in block starting at 09fdd660 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-31 |
Jump to invalid address: 02bb8080 PC 09fdd660 LR 0888d330 |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-31 |
Unknown GetPointer 00000000 PC 08a0fe70 LR 08a0fe70 |
EA-Sports FC PC-V |
v1.8.0 |
2024-10-30 |
MIPSCompileOp: Invalid instruction 44f611fe |
EA-Sports FC PC-V |
v1.8.0 |
2024-10-30 |
MIPSCompileOp: Invalid instruction 61df5d1b |
EA-Sports FC PC-V |
v1.8.0 |
2024-10-30 |
MIPSCompileOp: Invalid instruction d0eb5d17 |
EA-Sports FC PC-V |
v1.8.0 |
2024-10-30 |
MIPSCompileOp: Invalid instruction 454394ac |
EA-Sports FC PC-V |
v1.8.0 |
2024-10-30 |
MIPSCompileOp: Invalid instruction b5d7c73c |
EA-Sports FC PC-V |
v1.8.0 |
2024-10-30 |
WriteToHardware: Invalid address 0a003798 near PC 08e86804 LR 0893f6a4 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-29 |
Unknown GetPointer deadfd2f PC 0881c2d8 LR 0881c2e8 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-28 |
Unknown GetPointer 2c593e02 PC 0884d5b0 LR 0884d7d4 |
EA-Sports FC PC-V |
v1.11.3 |
2024-10-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
EA-Sports FC PC-V |
v1.11.3 |
2024-10-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
EA-Sports FC PC-V |
v1.11.3 |
2024-10-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
EA-Sports FC PC-V |
v1.17.4-1 |
2024-10-27 |
Unknown GetPointer 5f540000 PC 08a02a0c LR 0884d7d4 |
EA-Sports FC PC-V |
v1.9.4 |
2024-12-08 |
sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-25 |
Jump to invalid address: 0bbef070 |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-25 |
MIPSCompileOp: Invalid instruction 71ecd5ec |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-25 |
Jump to invalid address: 0bbef170 |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-25 |
Jump to invalid address: 0bbeef70 |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-25 |
Jump to invalid address: 070eed60 |
EA-Sports FC PC-V |
v1.17.1 |
2024-10-23 |
Unknown GetPointer 00ff9300 PC 0884a918 LR 0884a938 |
EA-Sports FC PC-V |
v1.14.1 |
2024-10-22 |
UI scissor out of bounds in MainScreen: 0,430-153,429 / 272,483 |