Post Reply 
 
Thread Rating:
  • 11 Votes - 4.64 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom PPSSPP shaders
01-11-2023, 01:50 PM
Post: #391
RE: Custom PPSSPP shaders
So apparently the glitch I mentionned above is due to one cinematic rendering with an extra pixel in height, which breaks some shaders.

https://github.com/hrydgard/ppsspp/pull/12894

I have no doubt the team will update the built-in shaders to handle that properly, but I'd like to use a custom shader and I don't know how to update it... This is the current version, a port of a shader found in RetroArch.

Code:
attribute vec4 a_position;
attribute vec2 a_texcoord0;

varying vec2 v_texcoord0; // vTexCoord
varying vec2 v_texcoord1; // TextureSize

uniform vec2 u_texelDelta;
uniform vec4 u_setting;

void main() {
   v_texcoord0 = a_texcoord0;
   v_texcoord1 = 1.0 / u_texelDelta;
   gl_Position = a_position;
}

Code:
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif

const float grid_strength = 0.04;
const float target_gamma = 2.21;
const float display_gamma = 2.2;
const float saturation = 1.0;
const float luminosity = 1.4;
const float contrast = 1.0;
const float rc = 0.98;
const float gc = 0.795;
const float bc = 0.98;
const float rcg = 0.04;
const float rcb = 0.01;
const float gcr = 0.20;
const float gcb = 0.01;
const float bcr = -0.18;
const float bcg = 0.165;

uniform sampler2D sampler0;

varying vec2 v_texcoord0;  // vTexCoord
varying vec2 v_texcoord1;  // TextureSize

float intsmear_func(float z) {
   float z2 = z * z;
   float z4 = z2 * z2;
   float z8 = z4 * z4;
   return z - 2.0 / 3.0 * z * z2 - 1.0 / 5.0 * z * z4
         + 4.0 / 7.0 * z * z2 * z4 - 1.0 / 9.0 * z * z8
         - 2.0 / 11.0 * z * z2 * z8 + 1.0 / 13.0 * z * z4 * z8;
}

float intsmear(float x, float dx) {
   const float d = 1.5;
   float zl = clamp((x - dx) / d, -1.0, 1.0);
   float zh = clamp((x + dx) / d, -1.0, 1.0);
   return d * (intsmear_func(zh) - intsmear_func(zl)) / (2.0 * dx);
}

void main() {  
   // LCD subpixel emulation
   vec4 source_size = vec4(v_texcoord1, 1.0 / v_texcoord1);
  
   vec2 texel_size = source_size.zw;
   vec2 subtx_size = texel_size / vec2(3.0, 1.0);
   vec2 range = source_size.xy / (vec2(1920, 1088) * source_size.xy);
  
   float ltx = v_texcoord0.x - texel_size.x * 0.5;
   float ttx = v_texcoord0.y + range.y;
   float rtx = v_texcoord0.x + texel_size.x * 0.5;
   float btx = v_texcoord0.y - range.y;
  
   float subpix = mod(v_texcoord0.x / subtx_size.x + 1.5, 3.0);
   float rsubpx = range.x / subtx_size.x;
   vec4 lcol = vec4(
         intsmear(subpix + 1.0, rsubpx),
         intsmear(subpix, rsubpx),
         intsmear(subpix - 1.0, rsubpx),
         0.0);
   vec4 rcol = vec4(
         intsmear(subpix - 2.0, rsubpx),
         intsmear(subpix - 3.0, rsubpx),
         intsmear(subpix - 4.0, rsubpx),
         0.0);
        
   vec2 tl0 = (floor(vec2(ltx, ttx) / texel_size) + 0.5) * texel_size;
   vec2 tr0 = (floor(vec2(rtx, ttx) / texel_size) + 0.5) * texel_size;
   vec2 bl0 = (floor(vec2(ltx, btx) / texel_size) + 0.5) * texel_size;
   vec2 br0 = (floor(vec2(rtx, btx) / texel_size) + 0.5) * texel_size;
   vec4 tlc = pow(texture2D(sampler0, tl0), vec4(display_gamma)) * lcol;
   vec4 trc = pow(texture2D(sampler0, tr0), vec4(display_gamma)) * rcol;
   vec4 blc = pow(texture2D(sampler0, bl0), vec4(display_gamma)) * lcol;
   vec4 brc = pow(texture2D(sampler0, br0), vec4(display_gamma)) * rcol;
  
   vec2 border = floor((v_texcoord0.st / subtx_size) + 0.5);
   vec2 bordet = clamp((border + vec2(0.0, +grid_strength)) * subtx_size,
         vec2(ltx, btx), vec2(rtx, ttx));
   vec2 bordeb = clamp((border + vec2(0.0, -grid_strength)) * subtx_size,
         vec2(ltx, btx), vec2(rtx, ttx));
  
   vec4 average_color;
   float total_area = 2.0 * range.y;
   average_color  = ((ttx - bordet.y) / total_area) * tlc;
   average_color += ((bordeb.y - btx) / total_area) * brc;
   average_color += ((bordeb.y - btx) / total_area) * blc;
   average_color += ((ttx - bordet.y) / total_area) * trc;
  
   vec4 current = pow(average_color, vec4(1.0 / display_gamma));
  
   // Color regrading to simulate the LCD display
   vec4 screen = pow(current, vec4(target_gamma));
   vec4 avglum = vec4(0.5);
   screen = mix(screen, avglum, (1.0 - contrast));
  
   mat4 color = mat4(
         rc, rcg, rcb, 0.0,
         gcr, gc, gcb, 0.0,
         bcr, bcg, bc, 0.0,
         0.0, 0.0, 0.0, 0.0);
        
   float rad = (1.0 - saturation) * 0.3086;
   float gad = (1.0 - saturation) * 0.6094;
   float bad = (1.0 - saturation) * 0.0820;
   mat4 adjust = mat4(
         rad + saturation, rad, rad, 1.0,
         gad, gad + saturation, gad, 1.0,
         bad, bad, bad + saturation, 1.0,
         0.0, 0.0, 0.0, 1.0);
        
   color = color * adjust;
   screen = clamp(screen * luminosity, 0.0, 1.0);
   screen = color * screen;
  
   gl_FragColor = pow(screen, vec4(1.0 / display_gamma));
}

Maybe someone can help me with that? The shader also assumes an output resolution of 1920x1088 (4x the PSP resolution) but it's hard-coded. It would be better to use the display size.

I'm not big on programming and just managed to make this one work lol. Any help is appreciated thank you.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Custom PPSSPP shaders - LunaMoo - 09-29-2013, 10:26 PM
RE: Custom PPSSPP shaders - TheDax - 09-29-2013, 10:38 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-30-2013, 12:03 AM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 09-30-2013, 02:24 AM
RE: Custom PPSSPP shaders - LunaMoo - 09-30-2013, 05:04 AM
RE: Custom PPSSPP shaders - solarmystic - 09-30-2013, 06:52 AM
RE: Custom PPSSPP shaders - LunaMoo - 09-30-2013, 07:43 AM
RE: Custom PPSSPP shaders - solarmystic - 09-30-2013, 08:23 AM
RE: Custom PPSSPP shaders - vsub_ - 09-30-2013, 08:31 AM
RE: Custom PPSSPP shaders - LunaMoo - 09-30-2013, 09:07 AM
RE: Custom PPSSPP shaders - Nezarn - 09-30-2013, 09:26 AM
RE: Custom PPSSPP shaders - LunaMoo - 09-30-2013, 09:34 AM
RE: Custom PPSSPP shaders - vsub_ - 09-30-2013, 10:34 AM
RE: Custom PPSSPP shaders - isamu - 09-30-2013, 05:03 PM
RE: Custom PPSSPP shaders - TheDax - 09-30-2013, 09:28 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-30-2013, 10:26 PM
RE: Custom PPSSPP shaders - solarmystic - 10-01-2013, 07:46 AM
RE: Custom PPSSPP shaders - ravid1323 - 10-01-2013, 03:40 AM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-01-2013, 02:51 PM
RE: Custom PPSSPP shaders - ravid1323 - 10-01-2013, 04:07 PM
RE: Custom PPSSPP shaders - darkjoe16 - 10-01-2013, 08:08 AM
RE: Custom PPSSPP shaders - Ritori - 10-01-2013, 08:13 AM
RE: Custom PPSSPP shaders - solarmystic - 10-01-2013, 08:14 AM
RE: Custom PPSSPP shaders - darkjoe16 - 10-01-2013, 08:29 AM
RE: Custom PPSSPP shaders - Ritori - 10-01-2013, 08:32 AM
RE: Custom PPSSPP shaders - darkjoe16 - 10-01-2013, 08:36 AM
RE: Custom PPSSPP shaders - isamu - 10-01-2013, 03:51 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-01-2013, 04:21 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-01-2013, 05:06 PM
RE: Custom PPSSPP shaders - Ritori - 10-10-2013, 05:26 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-10-2013, 06:08 PM
RE: Custom PPSSPP shaders - Ritori - 10-11-2013, 06:17 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-11-2013, 12:44 PM
RE: Custom PPSSPP shaders - Ritori - 10-11-2013, 02:30 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-11-2013, 03:36 PM
RE: Custom PPSSPP shaders - Ritori - 10-11-2013, 04:20 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-11-2013, 04:28 PM
RE: Custom PPSSPP shaders - Ritori - 10-11-2013, 04:41 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-11-2013, 05:26 PM
RE: Custom PPSSPP shaders - Ritori - 10-11-2013, 07:03 PM
RE: Custom PPSSPP shaders - Nezarn - 10-11-2013, 06:07 PM
RE: Custom PPSSPP shaders - globe94 - 10-11-2013, 06:08 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-11-2013, 06:56 PM
RE: Custom PPSSPP shaders - globe94 - 10-11-2013, 07:03 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-11-2013, 07:28 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-11-2013, 07:36 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-11-2013, 08:09 PM
RE: Custom PPSSPP shaders - Henrik - 10-11-2013, 11:37 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-12-2013, 12:28 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-12-2013, 02:24 AM
RE: Custom PPSSPP shaders - Ritori - 10-12-2013, 04:34 PM
RE: Custom PPSSPP shaders - kerupukalot - 10-12-2013, 05:32 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-12-2013, 05:34 PM
RE: Custom PPSSPP shaders - Ritori - 10-12-2013, 05:53 PM
RE: Custom PPSSPP shaders - Tabman - 10-13-2013, 09:06 AM
RE: Custom PPSSPP shaders - Marcelo_20XX - 10-13-2013, 09:13 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-13-2013, 03:14 PM
RE: Custom PPSSPP shaders - Henrik - 10-13-2013, 09:41 AM
RE: Custom PPSSPP shaders - Tabman - 10-13-2013, 09:43 AM
RE: Custom PPSSPP shaders - Ritori - 10-13-2013, 12:56 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-13-2013, 04:06 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-13-2013, 04:21 PM
RE: Custom PPSSPP shaders - globe94 - 10-13-2013, 04:27 PM
RE: Custom PPSSPP shaders - Maverick81PL - 10-13-2013, 05:38 PM
RE: Custom PPSSPP shaders - Henrik - 10-13-2013, 05:46 PM
RE: Custom PPSSPP shaders - globe94 - 10-13-2013, 05:48 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-13-2013, 06:09 PM
RE: Custom PPSSPP shaders - Ritori - 10-13-2013, 07:11 PM
RE: Custom PPSSPP shaders - [Unknown] - 10-13-2013, 08:38 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-13-2013, 10:18 PM
RE: Custom PPSSPP shaders - arg274 - 10-16-2013, 05:44 PM
RE: Custom PPSSPP shaders - King of Worms - 10-14-2013, 11:00 PM
RE: Custom PPSSPP shaders - globe94 - 10-16-2013, 06:11 PM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-16-2013, 10:18 PM
RE: Custom PPSSPP shaders - arg274 - 10-17-2013, 06:47 AM
RE: Custom PPSSPP shaders - The Phoenix - 10-17-2013, 11:23 AM
RE: Custom PPSSPP shaders - xsacha - 10-18-2013, 03:59 AM
RE: Custom PPSSPP shaders - arg274 - 10-18-2013, 08:02 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-16-2013, 10:34 PM
RE: Custom PPSSPP shaders - globe94 - 10-17-2013, 12:24 AM
RE: Custom PPSSPP shaders - Combone - 10-17-2013, 01:03 AM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-18-2013, 02:38 AM
RE: Custom PPSSPP shaders - aki21 - 10-18-2013, 03:39 AM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-18-2013, 04:19 AM
RE: Custom PPSSPP shaders - Henrik - 10-18-2013, 07:12 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-18-2013, 04:21 AM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-18-2013, 04:29 AM
RE: Custom PPSSPP shaders - Danyal Zia - 10-18-2013, 09:12 AM
RE: Custom PPSSPP shaders - GuilhermeGS2 - 10-18-2013, 01:34 PM
RE: Custom PPSSPP shaders - spajdr - 10-22-2013, 09:32 AM
RE: Custom PPSSPP shaders - globe94 - 10-22-2013, 09:40 AM
RE: Custom PPSSPP shaders - naoan - 10-22-2013, 12:14 PM
RE: Custom PPSSPP shaders - Combone - 10-22-2013, 04:21 PM
RE: Custom PPSSPP shaders - Bad Company - 10-22-2013, 01:36 PM
RE: Custom PPSSPP shaders - naoan - 10-22-2013, 04:25 PM
RE: Custom PPSSPP shaders - Combone - 10-26-2013, 06:57 AM
RE: Custom PPSSPP shaders - naoan - 10-27-2013, 08:19 AM
RE: Custom PPSSPP shaders - Combone - 10-27-2013, 05:36 PM
RE: Custom PPSSPP shaders - spajdr - 10-22-2013, 05:58 PM
RE: Custom PPSSPP shaders - Bad Company - 10-22-2013, 08:16 PM
RE: Custom PPSSPP shaders - Danyal Zia - 10-28-2013, 11:07 AM
RE: Custom PPSSPP shaders - naoan - 10-28-2013, 12:58 PM
RE: Custom PPSSPP shaders - Danyal Zia - 10-28-2013, 02:59 PM
RE: Custom PPSSPP shaders - Combone - 10-28-2013, 04:00 PM
RE: Custom PPSSPP shaders - Combone - 10-31-2013, 03:37 PM
RE: Custom PPSSPP shaders - naoan - 10-31-2013, 05:16 PM
RE: Custom PPSSPP shaders - Combone - 10-31-2013, 05:40 PM
RE: Custom PPSSPP shaders - Mirrorman95 - 07-27-2017, 09:35 AM
RE: Custom PPSSPP shaders - Danyal Zia - 10-31-2013, 04:54 PM
RE: Custom PPSSPP shaders - Combone - 10-31-2013, 05:15 PM
RE: Custom PPSSPP shaders - Combone - 11-01-2013, 05:45 PM
RE: Custom PPSSPP shaders - KillaMaaki - 11-05-2013, 02:23 AM
RE: Custom PPSSPP shaders - naoan - 11-05-2013, 09:39 AM
RE: Custom PPSSPP shaders - KillaMaaki - 11-05-2013, 04:17 PM
RE: Custom PPSSPP shaders - Henrik - 11-05-2013, 08:54 AM
RE: Custom PPSSPP shaders - ZeroX4 - 12-02-2013, 06:22 AM
RE: Custom PPSSPP shaders - LunaMoo - 12-02-2013, 04:53 PM
RE: Custom PPSSPP shaders - Kokoro - 12-05-2013, 08:34 PM
RE: Custom PPSSPP shaders - LunaMoo - 12-06-2013, 01:21 PM
RE: Custom PPSSPP shaders - Kokoro - 12-06-2013, 03:31 PM
RE: Custom PPSSPP shaders - globe94 - 12-09-2013, 07:07 PM
RE: Custom PPSSPP shaders - LunaMoo - 12-09-2013, 08:08 PM
RE: Custom PPSSPP shaders - globe94 - 12-10-2013, 02:45 AM
RE: Custom PPSSPP shaders - KillaMaaki - 12-10-2013, 05:25 AM
RE: Custom PPSSPP shaders - LunaMoo - 12-10-2013, 08:49 AM
RE: Custom PPSSPP shaders - Henrik - 12-10-2013, 09:43 AM
RE: Custom PPSSPP shaders - LunaMoo - 12-10-2013, 02:22 PM
RE: Custom PPSSPP shaders - KillaMaaki - 12-10-2013, 05:07 PM
RE: Custom PPSSPP shaders - Henrik - 12-10-2013, 09:59 PM
RE: Custom PPSSPP shaders - KillaMaaki - 12-10-2013, 10:02 PM
RE: Custom PPSSPP shaders - TheDax - 12-10-2013, 11:11 PM
RE: Custom PPSSPP shaders - betrayedAngel - 12-10-2013, 11:30 PM
RE: Custom PPSSPP shaders - Henrik - 12-11-2013, 08:35 AM
RE: Custom PPSSPP shaders - cyclonmaster - 12-11-2013, 08:41 AM
RE: Custom PPSSPP shaders - Henrik - 12-11-2013, 09:06 AM
RE: Custom PPSSPP shaders - naoan - 01-09-2014, 11:12 AM
RE: Custom PPSSPP shaders - Maverick81PL - 01-09-2014, 11:20 AM
RE: Custom PPSSPP shaders - naoan - 01-09-2014, 11:30 AM
RE: Custom PPSSPP shaders - Mitsarugi - 05-31-2014, 03:21 AM
RE: Custom PPSSPP shaders - LunaMoo - 05-31-2014, 03:53 AM
RE: Custom PPSSPP shaders - Mitsarugi - 05-31-2014, 04:10 AM
RE: Custom PPSSPP shaders - Arborea - 06-03-2014, 07:29 AM
RE: Custom PPSSPP shaders - bdszoke - 06-23-2014, 04:26 AM
RE: Custom PPSSPP shaders - Arborea - 06-23-2014, 07:11 AM
RE: Custom PPSSPP shaders - Henrik - 06-23-2014, 06:28 AM
RE: Custom PPSSPP shaders - bdszoke - 06-23-2014, 07:13 AM
RE: Custom PPSSPP shaders - LunaMoo - 06-23-2014, 11:47 PM
RE: Custom PPSSPP shaders - bdszoke - 06-30-2014, 08:10 PM
RE: Custom PPSSPP shaders - LunaMoo - 06-30-2014, 09:35 PM
RE: Custom PPSSPP shaders - brujo55 - 08-28-2014, 03:04 PM
RE: Custom PPSSPP shaders - LunaMoo - 08-29-2014, 09:56 AM
RE: Custom PPSSPP shaders - brujo55 - 08-29-2014, 01:38 PM
RE: Custom PPSSPP shaders - XenoMonado - 09-01-2014, 02:28 AM
RE: Custom PPSSPP shaders - jadentheman - 09-13-2014, 04:17 AM
RE: Custom PPSSPP shaders - lumune - 09-07-2014, 12:11 AM
RE: Custom PPSSPP shaders - Happy Wong - 02-28-2015, 02:39 PM
RE: Custom PPSSPP shaders - xiushu - 09-11-2014, 07:57 AM
RE: Custom PPSSPP shaders - GamerzHell9137 - 09-22-2014, 08:57 AM
RE: Custom PPSSPP shaders - Crimsonchaos01 - 09-23-2014, 05:17 PM
RE: Custom PPSSPP shaders - GamerzHell9137 - 09-27-2014, 12:00 AM
RE: Custom PPSSPP shaders - GamerzHell9137 - 09-28-2014, 01:56 AM
RE: Custom PPSSPP shaders - aesoh - 10-24-2014, 08:54 PM
RE: Custom PPSSPP shaders - RamzaBrave - 10-25-2014, 02:56 AM
RE: Custom PPSSPP shaders - peteri - 11-10-2014, 11:35 AM
RE: Custom PPSSPP shaders - Cursedragon - 11-29-2014, 09:18 PM
RE: Custom PPSSPP shaders - Mikerabis - 11-30-2014, 11:54 PM
RE: Custom PPSSPP shaders - RamzaBrave - 01-06-2015, 03:49 AM
RE: Custom PPSSPP shaders - Mikerabis - 01-09-2015, 01:58 AM
RE: Custom PPSSPP shaders - RamzaBrave - 01-13-2015, 09:30 PM
RE: Custom PPSSPP shaders - Mikerabis - 01-13-2015, 10:49 PM
RE: Custom PPSSPP shaders - RamzaBrave - 05-09-2015, 09:40 AM
RE: Custom PPSSPP shaders - tet666 - 05-10-2015, 11:49 AM
RE: Custom PPSSPP shaders - Boulotaur2024 - 03-14-2015, 08:40 AM
RE: Custom PPSSPP shaders - cybercjt - 03-14-2015, 10:24 AM
RE: Custom PPSSPP shaders - duysieuhero - 05-07-2015, 08:03 PM
RE: Custom PPSSPP shaders - lumune - 05-10-2015, 10:01 AM
RE: Custom PPSSPP shaders - LunaMoo - 06-08-2015, 02:09 AM
RE: Custom PPSSPP shaders - shinra358 - 06-10-2015, 08:24 PM
RE: Custom PPSSPP shaders - Nick001 - 08-12-2015, 08:57 PM
RE: Custom PPSSPP shaders - vnctdj - 08-12-2015, 09:08 PM
RE: Custom PPSSPP shaders - Nick001 - 08-12-2015, 09:16 PM
RE: Custom PPSSPP shaders - LunaMoo - 08-13-2015, 12:01 AM
RE: Custom PPSSPP shaders - Nick001 - 08-13-2015, 08:56 AM
RE: Custom PPSSPP shaders - vnctdj - 08-13-2015, 07:28 PM
RE: Custom PPSSPP shaders - Nick001 - 08-13-2015, 08:37 PM
RE: Custom PPSSPP shaders - GamerzHell9137 - 09-27-2015, 07:51 PM
RE: Custom PPSSPP shaders - Accel - 09-22-2015, 08:31 AM
RE: Custom PPSSPP shaders - meganmi - 09-25-2015, 08:13 AM
RE: Custom PPSSPP shaders - YukiHerz - 09-25-2015, 06:19 PM
RE: Custom PPSSPP shaders - iKlNG - 09-25-2015, 11:30 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-28-2015, 03:41 PM
RE: Custom PPSSPP shaders - Go-Kyoroji - 10-02-2015, 12:10 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-03-2015, 03:41 AM
RE: Custom PPSSPP shaders - Nick001 - 10-03-2015, 09:54 AM
RE: Custom PPSSPP shaders - Go-Kyoroji - 10-03-2015, 03:45 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-03-2015, 07:39 PM
RE: Custom PPSSPP shaders - Nick001 - 10-31-2015, 05:21 PM
RE: Custom PPSSPP shaders - Henrik - 10-31-2015, 05:51 PM
RE: Custom PPSSPP shaders - Henrik - 10-31-2015, 08:31 PM
RE: Custom PPSSPP shaders - Nick001 - 11-01-2015, 12:11 PM
RE: Custom PPSSPP shaders - ismhael - 11-01-2015, 01:35 AM
RE: Custom PPSSPP shaders - Happy Wong - 11-01-2015, 12:47 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-01-2015, 02:17 PM
RE: Custom PPSSPP shaders - Happy Wong - 11-10-2015, 05:55 AM
RE: Custom PPSSPP shaders - Beoriser - 11-02-2015, 01:43 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-02-2015, 08:36 PM
RE: Custom PPSSPP shaders - Beoriser - 11-02-2015, 08:45 PM
RE: Custom PPSSPP shaders - Nick001 - 11-03-2015, 01:53 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-02-2015, 09:29 PM
RE: Custom PPSSPP shaders - Beoriser - 11-02-2015, 09:50 PM
RE: Custom PPSSPP shaders - [Unknown] - 11-03-2015, 02:45 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-03-2015, 03:13 AM
RE: Custom PPSSPP shaders - Nick001 - 11-03-2015, 03:56 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-03-2015, 05:42 PM
RE: Custom PPSSPP shaders - Nick001 - 11-04-2015, 11:57 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-05-2015, 12:15 AM
RE: Custom PPSSPP shaders - GamerzHell9137 - 11-06-2015, 01:20 PM
RE: Custom PPSSPP shaders - Nick001 - 11-06-2015, 11:21 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-07-2015, 12:13 AM
RE: Custom PPSSPP shaders - Nick001 - 11-07-2015, 01:18 AM
RE: Custom PPSSPP shaders - GamerzHell9137 - 11-07-2015, 01:41 AM
RE: Custom PPSSPP shaders - [Unknown] - 11-07-2015, 04:16 AM
RE: Custom PPSSPP shaders - Nick001 - 11-21-2015, 03:38 PM
RE: Custom PPSSPP shaders - t3nsini - 11-08-2015, 12:02 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-08-2015, 07:34 PM
RE: Custom PPSSPP shaders - t3nsini - 11-14-2015, 04:23 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-14-2015, 06:08 PM
RE: Custom PPSSPP shaders - t3nsini - 11-15-2015, 11:50 PM
RE: Custom PPSSPP shaders - dj001 - 11-25-2015, 01:07 PM
RE: Custom PPSSPP shaders - shinra358 - 11-28-2015, 12:31 PM
RE: Custom PPSSPP shaders - vnctdj - 01-03-2016, 09:26 AM
RE: Custom PPSSPP shaders - eddiefur - 01-04-2016, 03:59 PM
RE: Custom PPSSPP shaders - Demetrius - 01-08-2016, 04:12 PM
RE: Custom PPSSPP shaders - eddiefur - 01-08-2016, 10:36 PM
RE: Custom PPSSPP shaders - GamerzHell9137 - 01-09-2016, 08:37 AM
RE: Custom PPSSPP shaders - eddiefur - 01-10-2016, 03:31 PM
RE: Custom PPSSPP shaders - vnctdj - 01-10-2016, 04:16 PM
RE: Custom PPSSPP shaders - eddiefur - 01-10-2016, 07:25 PM
RE: Custom PPSSPP shaders - GamerzHell9137 - 01-11-2016, 07:12 AM
RE: Custom PPSSPP shaders - eddiefur - 01-11-2016, 07:16 PM
RE: Custom PPSSPP shaders - GamerzHell9137 - 01-12-2016, 05:09 PM
RE: Custom PPSSPP shaders - TheDax - 01-12-2016, 06:36 PM
RE: Custom PPSSPP shaders - GamerzHell9137 - 01-12-2016, 07:38 PM
RE: Custom PPSSPP shaders - Demetrius - 01-18-2016, 07:41 PM
RE: Custom PPSSPP shaders - dcloud466 - 01-30-2016, 02:21 AM
RE: Custom PPSSPP shaders - PureEvil - 02-07-2016, 07:08 AM
RE: Custom PPSSPP shaders - iKlNG - 02-24-2016, 02:21 PM
RE: Custom PPSSPP shaders - bomberman46 - 03-03-2016, 11:19 PM
RE: Custom PPSSPP shaders - Demetrius - 03-28-2016, 01:55 PM
RE: Custom PPSSPP shaders - nover - 06-11-2016, 09:42 PM
RE: Custom PPSSPP shaders - LunaMoo - 06-11-2016, 11:03 PM
RE: Custom PPSSPP shaders - nover - 06-12-2016, 01:08 AM
RE: Custom PPSSPP shaders - nover - 06-12-2016, 03:05 AM
RE: Custom PPSSPP shaders - LunaMoo - 06-12-2016, 06:54 AM
RE: Custom PPSSPP shaders - [Unknown] - 06-12-2016, 11:54 AM
RE: Custom PPSSPP shaders - nover - 06-12-2016, 02:25 PM
RE: Custom PPSSPP shaders - kirbymaster101 - 07-14-2016, 02:21 PM
RE: Custom PPSSPP shaders - LunaMoo - 06-12-2016, 03:16 PM
RE: Custom PPSSPP shaders - dcloud466 - 08-12-2016, 12:49 AM
RE: Custom PPSSPP shaders - Nick001 - 08-21-2016, 05:45 PM
RE: Custom PPSSPP shaders - dcloud466 - 09-11-2016, 10:52 PM
RE: Custom PPSSPP shaders - papermanzero - 08-24-2016, 12:42 PM
RE: Custom PPSSPP shaders - Rick1974 - 09-20-2016, 06:44 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-21-2016, 02:26 AM
RE: Custom PPSSPP shaders - Rick1974 - 09-21-2016, 12:22 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-21-2016, 08:12 PM
RE: Custom PPSSPP shaders - Rick1974 - 09-21-2016, 10:15 PM
RE: Custom PPSSPP shaders - Rick1974 - 09-26-2016, 11:24 AM
RE: Custom PPSSPP shaders - Nick001 - 09-26-2016, 02:32 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-27-2016, 07:36 AM
RE: Custom PPSSPP shaders - Rick1974 - 09-27-2016, 01:51 PM
RE: Custom PPSSPP shaders - Nick001 - 09-27-2016, 05:16 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-28-2016, 03:05 AM
RE: Custom PPSSPP shaders - shinra358 - 10-17-2016, 12:22 AM
RE: Custom PPSSPP shaders - LunaMoo - 10-17-2016, 06:16 AM
RE: Custom PPSSPP shaders - shinra358 - 10-17-2016, 05:29 PM
RE: Custom PPSSPP shaders - OpEN Dale - 11-04-2016, 12:16 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-05-2016, 03:08 AM
RE: Custom PPSSPP shaders - OpEN Dale - 11-05-2016, 11:01 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-05-2016, 01:01 PM
RE: Custom PPSSPP shaders - OpEN Dale - 11-09-2016, 10:18 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-09-2016, 08:48 PM
RE: Custom PPSSPP shaders - shinra358 - 11-16-2016, 10:15 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-16-2016, 11:31 PM
RE: Custom PPSSPP shaders - shinra358 - 11-17-2016, 02:43 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-17-2016, 08:05 AM
RE: Custom PPSSPP shaders - shinra358 - 11-17-2016, 10:26 AM
RE: Custom PPSSPP shaders - shinra358 - 11-19-2016, 04:12 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-20-2016, 12:36 AM
RE: Custom PPSSPP shaders - shinra358 - 11-20-2016, 12:50 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-20-2016, 01:07 AM
RE: Custom PPSSPP shaders - shinra358 - 11-20-2016, 01:27 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-20-2016, 10:03 AM
RE: Custom PPSSPP shaders - guest.r - 11-20-2016, 05:44 PM
RE: Custom PPSSPP shaders - shinra358 - 11-20-2016, 11:30 PM
RE: Custom PPSSPP shaders - guest.r - 11-21-2016, 10:53 AM
RE: Custom PPSSPP shaders - shinra358 - 11-21-2016, 12:03 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-21-2016, 09:48 PM
RE: Custom PPSSPP shaders - guest.r - 11-21-2016, 03:02 PM
RE: Custom PPSSPP shaders - shinra358 - 11-21-2016, 03:23 PM
RE: Custom PPSSPP shaders - shinra358 - 11-21-2016, 09:58 PM
RE: Custom PPSSPP shaders - guest.r - 11-22-2016, 07:56 PM
RE: Custom PPSSPP shaders - shinra358 - 11-23-2016, 01:09 AM
RE: Custom PPSSPP shaders - guest.r - 11-26-2016, 09:00 AM
RE: Custom PPSSPP shaders - LunaMoo - 12-30-2016, 10:55 AM
RE: Custom PPSSPP shaders - oldmario - 02-21-2017, 12:51 AM
RE: Custom PPSSPP shaders - LunaMoo - 02-23-2017, 07:11 PM
RE: Custom PPSSPP shaders - GeoMan - 03-06-2017, 12:32 AM
RE: Custom PPSSPP shaders - LunaMoo - 03-06-2017, 08:31 AM
RE: Custom PPSSPP shaders - GeoMan - 03-06-2017, 09:01 AM
RE: Custom PPSSPP shaders - LunaMoo - 03-06-2017, 10:47 AM
RE: Custom PPSSPP shaders - Puxirepublic - 09-06-2017, 02:27 PM
RE: Custom PPSSPP shaders - LunaMoo - 09-06-2017, 09:20 PM
RE: Custom PPSSPP shaders - Puxirepublic - 09-07-2017, 06:58 AM
RE: Custom PPSSPP shaders - shinra358 - 09-11-2017, 01:01 PM
RE: Custom PPSSPP shaders - shinra358 - 09-25-2017, 03:46 PM
RE: Custom PPSSPP shaders - guest.r - 11-23-2017, 05:14 PM
RE: Custom PPSSPP shaders - guest.r - 11-26-2017, 06:39 PM
RE: Custom PPSSPP shaders - axewang - 01-19-2018, 04:51 AM
RE: Custom PPSSPP shaders - WonkoTheSane - 12-12-2017, 07:58 PM
RE: Custom PPSSPP shaders - LunaMoo - 12-12-2017, 09:13 PM
RE: Custom PPSSPP shaders - Dukatti - 02-10-2018, 01:41 PM
RE: Custom PPSSPP shaders - jdgleaver - 03-08-2018, 12:14 PM
RE: Custom PPSSPP shaders - jdgleaver - 03-15-2018, 10:13 AM
RE: Custom PPSSPP shaders - jdgleaver - 03-22-2018, 09:59 AM
RE: Custom PPSSPP shaders - LunaMoo - 03-22-2018, 10:32 PM
RE: Custom PPSSPP shaders - jdgleaver - 03-23-2018, 09:49 AM
RE: Custom PPSSPP shaders - LunaMoo - 03-23-2018, 03:08 PM
RE: Custom PPSSPP shaders - Endarko - 04-06-2018, 06:18 PM
RE: Custom PPSSPP shaders - LunaMoo - 04-07-2018, 03:17 PM
RE: Custom PPSSPP shaders - Endarko - 04-09-2018, 04:35 AM
RE: Custom PPSSPP shaders - LunaMoo - 04-09-2018, 09:31 AM
RE: Custom PPSSPP shaders - ppssp213 - 06-05-2018, 08:13 PM
RE: Custom PPSSPP shaders - Queen Fiona - 10-01-2018, 07:21 AM
RE: Custom PPSSPP shaders - tkadufdl58 - 06-01-2019, 02:36 PM
RE: Custom PPSSPP shaders - galaxy.zanya - 07-27-2019, 12:39 PM
RE: Custom PPSSPP shaders - wally86 - 10-13-2019, 04:20 AM
RE: Custom PPSSPP shaders - guest.r - 11-02-2019, 05:09 PM
RE: Custom PPSSPP shaders - guest.r - 04-05-2020, 12:15 PM
RE: Custom PPSSPP shaders - isamiyuu2013 - 04-21-2020, 01:19 AM
RE: Custom PPSSPP shaders - isamiyuu2013 - 04-21-2020, 02:57 AM
RE: Custom PPSSPP shaders - LunaMoo - 05-18-2020, 12:41 AM
RE: Custom PPSSPP shaders - isamiyuu2013 - 02-01-2021, 09:55 PM
RE: Custom PPSSPP shaders - Background - 06-12-2020, 02:56 PM
RE: Custom PPSSPP shaders - Slentara1 - 07-07-2020, 10:36 AM
RE: Custom PPSSPP shaders - LunaMoo - 07-10-2020, 01:23 AM
RE: Custom PPSSPP shaders - cestkazz - 09-12-2020, 04:10 PM
RE: Custom PPSSPP shaders - LunaMoo - 10-08-2020, 03:32 PM
RE: Custom PPSSPP shaders - iota97 - 10-09-2020, 06:52 AM
RE: Custom PPSSPP shaders - CapedBaldy - 01-04-2021, 06:25 AM
RE: Custom PPSSPP shaders - Background - 10-26-2020, 07:52 AM
RE: Custom PPSSPP shaders - LunaMoo - 01-05-2021, 02:50 AM
RE: Custom PPSSPP shaders - greihn1223 - 02-23-2021, 06:16 AM
RE: Custom PPSSPP shaders - LunaMoo - 02-23-2021, 10:24 AM
RE: Custom PPSSPP shaders - 18koko - 03-11-2021, 06:35 AM
RE: Custom PPSSPP shaders - LunaMoo - 03-13-2021, 12:08 AM
RE: Custom PPSSPP shaders - 18koko - 03-13-2021, 02:29 AM
RE: Custom PPSSPP shaders - el_rika - 11-11-2021, 03:16 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-11-2021, 04:32 PM
RE: Custom PPSSPP shaders - el_rika - 11-11-2021, 05:14 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-11-2021, 08:33 PM
RE: Custom PPSSPP shaders - el_rika - 11-11-2021, 09:02 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-11-2021, 11:05 PM
RE: Custom PPSSPP shaders - el_rika - 11-12-2021, 04:29 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-12-2021, 03:52 PM
RE: Custom PPSSPP shaders - el_rika - 11-12-2021, 08:25 PM
RE: Custom PPSSPP shaders - YouFeng - 11-19-2021, 01:57 PM
RE: Custom PPSSPP shaders - LunaMoo - 11-19-2021, 11:53 PM
RE: Custom PPSSPP shaders - YouFeng - 11-20-2021, 02:54 AM
RE: Custom PPSSPP shaders - YouFeng - 11-20-2021, 04:02 AM
RE: Custom PPSSPP shaders - LunaMoo - 11-21-2021, 01:06 AM
RE: Custom PPSSPP shaders - YouFeng - 11-21-2021, 05:59 AM
RE: Custom PPSSPP shaders - zerr10 - 01-11-2022, 09:01 PM
RE: Custom PPSSPP shaders - LunaMoo - 01-12-2022, 08:31 AM
RE: Custom PPSSPP shaders - zerr10 - 01-12-2022, 09:16 PM
RE: Custom PPSSPP shaders - zerr10 - 02-19-2022, 10:36 AM
RE: Custom PPSSPP shaders - LunaMoo - 02-19-2022, 01:47 PM
RE: Custom PPSSPP shaders - zerr10 - 02-20-2022, 12:20 PM
RE: Custom PPSSPP shaders - LunaMoo - 02-20-2022, 01:58 PM
RE: Custom PPSSPP shaders - el_rika - 03-17-2022, 06:32 AM
RE: Custom PPSSPP shaders - LunaMoo - 07-11-2022, 09:15 AM
RE: Custom PPSSPP shaders - Axymeus - 12-27-2022, 07:00 PM
RE: Custom PPSSPP shaders - Axymeus - 01-11-2023 01:50 PM
RE: Custom PPSSPP shaders - el_rika - 02-18-2023, 03:11 PM
RE: Custom PPSSPP shaders - LunaMoo - 02-18-2023, 04:32 PM
RE: Custom PPSSPP shaders - el_rika - 02-18-2023, 09:00 PM
RE: Custom PPSSPP shaders - kingofcheezwiz - 03-25-2023, 01:39 AM
RE: Custom PPSSPP shaders - LunaMoo - 03-25-2023, 09:08 PM

Forum Jump: