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 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00018000): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 0000d800): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00018700): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00012e00): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00005000): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 0000b190): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 0000ba50): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00001cd0): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
80630007=sceAtracSetData(2, 08d4b180, 00004890): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.4 |
2023-06-02 |
Rendering to framebuffer offset at 040cc000 +64x0 (stride 512) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00018000): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00019800): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.3 |
2023-05-28 |
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 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.10.3 |
2023-05-26 |
Unknown GetPointer 582e0040 PC 08933a24 LR 08933a34 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.9.3-80-g73bf6098e |
2023-05-25 |
__KernelStopThread: thread 601 does not exist |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.9.3-80-g73bf6098e |
2023-05-25 |
__KernelStopThread: thread 529 does not exist |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-05-24 |
UI scissor out of bounds in GameSettingsScreen: 283,0-1307,721 / 1600,696 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.9.3-80-g73bf6098e |
2023-05-23 |
__KernelStopThread: thread 451 does not exist |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.3 |
2023-05-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5f0, pos=0, access=1, data=2, text=2 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.12.3 |
2023-05-18 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 0417b000 offset: 0 (256x16 stride 256, CLUT16) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.12.3 |
2023-05-18 |
80000107=sceDisplaySetFrameBuf(00000000, 512, 1, 0): must change latched framebuf first |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.3 |
2023-05-18 |
80630006=sceAtracSetDataAndGetID(08a87000, 00020000): invalid RIFF header |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.3 |
2023-05-18 |
Unaligned icache invalidation of 0886dd07 (0886dd08 + -1) at PC=08876644 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.3 |
2023-05-18 |
Unusual bezier/spline vtype: 120017c1, morph: 0, bones: 1 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.15.3 |
2023-05-23 |
Unknown GetPointerWrite 00000000 PC 08890a48 LR 08890a8c |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-05-14 |
WriteToHardware: Invalid address 00000000 near PC 089427f0 LR 08942a20 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.11.3 |
2023-05-11 |
WriteToHardware: Invalid address 00000006 near PC 088f3904 LR 088f8350 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.11.3 |
2023-05-11 |
ReadFromHardware: Invalid address 00000010 near PC 08915680 LR 08915680 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.11.3 |
2023-05-11 |
ReadFromHardware: Invalid address 00000004 near PC 08915680 LR 08915680 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-11 |
Replacement rowPitch=1024, but w=4000 (level=0) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.1 |
2023-05-09 |
WriteToHardware: Invalid address 0000002f near PC 089427f0 LR 08942a20 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-08 |
80630007=sceAtracSetData(2, 08bd5600, 00003120): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-08 |
80630007=sceAtracSetData(2, 08bd5600, 00003360): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00012e00): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00005000): atracID uses different codec type than data |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-01 |
__KernelStopThread: thread 316 does not exist (helper deleted) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-28 |
__KernelStopThread: thread 292 does not exist (ApctlThread stopped) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-28 |
__KernelStopThread: thread 292 does not exist (ApctlThread deleted) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.1 |
2023-04-27 |
An uneaten prefix at end of block: 08a0d770 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-23 |
ReadFromHardware: Invalid address 0000001c near PC 0894ae0c LR 0894ad80 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2098,463-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2098,346-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2098,229-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2098,112-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 1951,463-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 1951,346-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 1951,229-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 1951,112-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2070,463-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2070,346-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2070,229-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2070,112-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2145,463-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2145,346-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2145,229-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14-66-ge9ed8370a |
2023-04-22 |
UI scissor out of bounds in SavedataScreen: 2145,112-0,111 / 1920,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-20 |
Failed decrypting the PRX (ret = -1, size = 4580536, psp_size = 4580880)! |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-15 |
Rendering to framebuffer offset at 04162000 +256x0 (stride 512) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-14 |
sceNetAdhocMatchingInit(32768) at 08a903f8 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-05 |
VTYPE with morph used: THRU=0 TC=2 COL=0 POS=2 NRM=1 WT=1 NW=8 IDX=2 MC=8 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-03 |
Unexpected mpeg first timestamp: c0068000001 / 13195884363777 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-04-02 |
Unknown GetPointer 00000010 PC 0899bc40 LR 089a000c |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-05-24 |
Unknown GE command : 52000182 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-28 |
Unknown GetPointerWrite 00020001 PC 08934f00 LR 08934f10 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-28 |
Unknown GetPointerWrite 00020001 PC 08937270 LR 08934f10 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-21 |
Branch in JumpReg delay slot at 0896a53c in block starting at 0896a530 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-21 |
Branch in Jump delay slot at 0896a538 in block starting at 0896a530 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-21 |
Jump to invalid address: 057d6b40 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-20 |
__KernelStopThread: thread 337 does not exist |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in GamePauseScreen: 1582,36-551,1044 / 1080,2160 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in GamePauseScreen: 0,36-1565,1044 / 1080,2160 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2199,566-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2199,423-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2199,280-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2199,137-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2435,566-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2435,423-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2435,280-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-15 |
UI scissor out of bounds in SavedataScreen: 2435,137-0,136 / 2160,1080 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-11 |
sceNetAdhocMatchingInit(32768) at 08812da4 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-11 |
ReadFromHardware: Invalid address 12ac6b90 near PC 08894e54 LR 08894a3c |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-09 |
Error in shader compilation: info: Vertex shader compilation failed.
ERROR: 0:150: 'outerProduct' : no matching overloaded function found
ERROR: 0:150: '=' : cannot convert from 'const float' to '4X4 matrix of float'
ERROR: 2 compilation errors. No code generated.
80000000:00000b18 HWX C T N Tex Bezier
#version 300 es
// Driver: Adreno (TM) 306 - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 80000000:00000b18 HWX C T N Tex Bezier
in vec3 position;
in mediump vec3 normal;
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_matambientalpha;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
uniform sampler2D u_tess_points;
uniform sampler2D u_tess_weights_u;
uniform sampler2D u_tess_weights_v;
uniform int u_spline_counts;
vec2 tess_sample(in vec2 points[16], mat4 weights) {
vec2 pos = vec2(0.0, 0.0);
pos += weights[0][0] * points[0];
pos += weights[0][1] * points[1];
pos += weights[0][2] * points[2];
pos += weights[0][3] * points[3];
pos += weights[1][0] * points[4];
pos += weights[1][1] * points[5];
pos += weights[1][2] * points[6];
pos += weights[1][3] * points[7];
pos += weights[2][0] * points[8];
pos += weights[2][1] * points[9];
pos += weights[2][2] * points[10];
pos += weights[2][3] * points[11];
pos += weights[3][0] * points[12];
pos += weights[3][1] * points[13];
pos += weights[3][2] * points[14];
pos += weights[3][3] * points[15];
return pos;
}
vec3 tess_sample(in vec3 points[16], mat4 weights) {
vec3 pos = vec3(0.0, 0.0, 0.0);
pos += weights[0][0] * points[0];
pos += weights[0][1] * points[1];
pos += weights[0][2] * points[2];
pos += weights[0][3] * points[3];
pos += weights[1][0] * points[4];
pos += weights[1][1] * points[5];
pos += weights[1][2] * points[6];
pos += weights[1][3] * points[7];
pos += weights[2][0] * points[8];
pos += weights[2][1] * points[9];
pos += weights[2][2] * points[10];
pos += weights[2][3] * points[11];
pos += weights[3][0] * points[12];
pos += weights[3][1] * points[13];
pos += weights[3][2] * points[14];
pos += weights[3][3] * points[15];
return pos;
}
vec4 tess_sample(in vec4 points[16], mat4 weights) {
vec4 pos = vec4(0.0, 0.0, 0.0, 0.0);
pos += weights[0][0] * points[0];
pos += weights[0][1] * points[1];
pos += weights[0][2] * points[2];
pos += weights[0][3] * points[3];
pos += weights[1][0] * points[4];
pos += weights[1][1] * points[5];
pos += weights[1][2] * points[6];
pos += weights[1][3] * points[7];
pos += weights[2][0] * points[8];
pos += weights[2][1] * points[9];
pos += weights[2][2] * points[10];
pos += weights[2][3] * points[11];
pos += weights[3][0] * points[12];
pos += weights[3][1] * points[13];
pos += weights[3][2] * points[14];
pos += weights[3][3] * points[15];
return pos;
}
struct Tess {
vec3 pos;
vec2 tex;
vec4 col;
};
void tessellate(out Tess tess) {
ivec2 point_pos = ivec2(position.z, normal.z) * 3;
ivec2 weight_idx = ivec2(position.xy);
vec3 _pos[16];
vec2 _tex[16];
vec4 _col[16];
int index_u, index_v;
index_u = (0 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[0] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
index_u = (1 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[1] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
index_u = (2 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[2] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
index_u = (3 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[3] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
index_u = (0 + point_pos.x);
index_v = (1 + point_pos.y);
_pos[4] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
index_u = (1 + point_pos.x);
index |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-09 |
__KernelStopThread: thread 288 does not exist (helper deleted) |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-09 |
Jump to invalid address: 06ab0400 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-08 |
UI scissor out of bounds in GamePauseScreen: 0,20-255,940 / 960,480 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-08 |
UI scissor out of bounds in GamePauseScreen: 0,20-635,460 / 480,960 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-08 |
UI scissor out of bounds in GamePauseScreen: 645,20-300,460 / 480,960 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-08 |
UI scissor out of bounds in GamePauseScreen: 265,20-200,940 / 960,480 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-05 |
MFIC instruction hit (70020024) at 088ba5dc |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-04 |
Branch in JumpReg delay slot at 08f6c08c in block starting at 08f6c044 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-04 |
MIPSCompileOp: Invalid instruction 00010005 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-04 |
MIPSCompileOp: Invalid instruction 01069701 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.13.2 |
2023-03-04 |
MIPSCompileOp: Invalid instruction 00020001 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-03 |
UI scissor out of bounds in GameSettingsScreen: 128,0-454,272 / 544,272 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.2 |
2023-03-03 |
UI scissor out of bounds in GameSettingsScreen: 210,0-740,480 / 888,480 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-03 |
80630006=sceAtracSetData(2, 08b407c0, 00020000): invalid RIFF header |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-01 |
ReadFromHardware: Invalid address 11c452a0 near PC 08895210 LR 08894a70 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-01 |
ReadFromHardware: Invalid address 11c45277 near PC 08894eb8 LR 08894a70 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.14.4 |
2023-03-01 |
ReadFromHardware: Invalid address 11c45274 near PC 08894e54 LR 08894a3c |