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 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-06-15 |
MFIC instruction hit (70020024) at 089941c4 |
Mega Drops (PD Roms compo 3.99) |
v1.12.2 |
2022-05-13 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc68c0, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-05-09 |
Failed to allocate memory for ELF! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-05-09 |
sceKernelCreateThread(name=PGE File): unsupported attributes 00000006 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-05-09 |
sceKernelCreateThread(name=PGE Wav): unsupported attributes 00000006 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-05-02 |
UNIMPL sceKernelSelfStopUnloadModule(00000001, 00000000, 00000000): game may have crashed |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-05-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145269936 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-04-22 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145635464 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-04-22 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145544000 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-04-22 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 16 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-04-19 |
BREAK instruction hit |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-31 |
Error in shader program link: info: (unknown reason)
fs: postshader
#ifdef GL_ES
precision mediump float;
#endif
/*
Hyllian's xBR-lv2 Shader Accuracy (tweak by guest.r)
Copyright (C) 2011-2015 Hyllian - [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Incorporates some of the ideas from SABR shader. Thanks to Joshua Street.
*/
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
#define CornerA 0 //ON:1/OFF:0 / A, B, C, D are just different variants of corner rounding
#define CornerB 0 //ON:1/OFF:0 / activate only one
#define CornerD 0 //ON:1/OFF:0
// CornerC //used as default if none of the above is defined
const float XBR_SCALE = 3.0;
const float lv2_cf = 2.0;
const float coef = 2.0;
const vec3 rgbw = vec3(14.352, 28.176, 5.472);
const vec4 eq_threshold = vec4(15.0, 15.0, 15.0, 15.0);
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 );
const vec4 Ci = vec4(0.25, 0.25, 0.25, 0.25);
uniform sampler2D sampler0;
uniform vec2 u_texelDelta;
uniform vec2 u_pixelDelta;
varying vec2 v_texcoord0;
// Difference between vector components.
vec4 df(vec4 A, vec4 B) {
return vec4(abs(A-B));
}
// Compare two vectors and return their components are different.
vec4 diff(vec4 A, vec4 B) {
return vec4(notEqual(A, B));
}
// Determine if two vector components are equal based on a threshold.
vec4 eq(vec4 A, vec4 B) {
return (step(df(A, B), eq_threshold));
}
// Determine if two vector components are NOT equal based on a threshold.
vec4 neq(vec4 A, vec4 B) {
return (vec4(1.0, 1.0, 1.0, 1.0) - eq(A, B));
}
float c_df(vec3 c1, vec3 c2) {
vec3 df = abs(c1 - c2);
return df.r + df.g + df.b;
}
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) {
vec4 edri, edr, edr_l, edr_u, px; // px = pixel, edr = edge detection rule
vec4 irlv0, irlv1, irlv2l, irlv2u;
vec4 fx, fx_l, fx_u; // 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;
vec4 delta = vec4(1.0/XBR_SCALE, 1.0/XBR_SCALE, 1.0/XBR_SCALE, 1.0/XBR_SCALE);
vec4 delta_l = vec4(0.5/XBR_SCALE, 1.0/XBR_SCALE, 0.5/XBR_SCALE, 1.0/XBR_SCALE);
vec4 delta_u = delta_l.yxwz;
vec3 A = texture2D(sampler0, TexCoord_0 -dx - |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-21 |
MFIC instruction hit (70020024) at 08826a54 |
Mega Drops (PD Roms compo 3.99) |
v1.12.2 |
2022-03-07 |
Could not setup streams, unexpected stream count: 35208 |
Mega Drops (PD Roms compo 3.99) |
v1.12.2 |
2022-03-07 |
Unexpected mpeg first timestamp: 30000000000 / 3298534883328 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaa4, pos=0, access=1, data=1, text=1 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 1431655765 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=1 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147649040 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146303584 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146805524 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-15 |
sceIoIoctl(disc0:/UMD_DATA.BIN, 01020001, 00000000, 0, 08b84800, 800) |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 33144 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-03 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
sceKernelCreateThread(name=sceUSBGps_Driver): unsupported attributes 00001006 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
Unimplemented HLE function Kprintf |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address f7971260! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 02a7ece0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address ff6a01f0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 00d7de60! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address fa16f3c0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 01372d60! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 0d908490! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address f91ebcf0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address f7b25f80! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address f1ac21f0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 071e0ce0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address f515c520! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 00000020! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 0256c030! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address fc870e40! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 064531c0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address f2fc2b50! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 056ee630! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-23 |
BlockTransfer: Bad source transfer address 0fef1eb0! |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-12-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-12 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04000000/04110000 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-06-06 |
MFIC instruction hit (70020024) at 08832bd0 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2021-10-30 |
Unimplemented HLE function scePowerLock |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Mega Drops (PD Roms compo 3.99) |
v1.12.2 |
2021-10-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000021, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.2 |
2021-10-25 |
MFIC instruction hit (70020024) at 08933650 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-06-27 |
Waiting thread for 20 that was already waiting for 20 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=1, text=1 |
Mega Drops (PD Roms compo 3.99) |
v1.11.3 |
2021-04-13 |
Unknown GetPointer 00000000 PC 08900040 LR 08000030 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-02-12 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04088000/04110000 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-03-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-06-18 |
Trying to relocate non-loaded section (null) |
Mega Drops (PD Roms compo 3.99) |
v1.11.3 |
2021-03-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=089d33b8, pos=0, access=1, data=2, text=2 |
Mega Drops (PD Roms compo 3.99) |
v1.11.3 |
2021-04-16 |
Unknown GetPointer 00000000 PC 08959254 LR 08000020 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-04-24 |
UNIMPL sceKernelSelfStopUnloadModule(00000001, 00000000, 00000000): game has likely crashed |
Mega Drops (PD Roms compo 3.99) |
v1.12.3 |
2022-06-27 |
FBO using existing buffer as depthbuffer, 04000000/04088000 and 04088000/00000000 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3-759-g5a6bf8b43 |
2022-06-28 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04000000/04088000 |
Mega Drops (PD Roms compo 3.99) |
v1.12.3-759-g5a6bf8b43 |
2022-06-28 |
MFIC instruction hit (70020024) at 089d2e50 |