Post Reply 
 
Thread Rating:
  • 11 Votes - 4.64 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom PPSSPP shaders
11-03-2015, 03:56 AM (This post was last modified: 11-07-2015 01:37 AM by Nick001.)
Post: #212
RE: Custom PPSSPP shaders
(11-03-2015 03:13 AM)LunaMoo Wrote:  @Nick001 from what I checked now your shader has some hardcoded resolutions, that might be reason why it's still failing and it would always fail same way, you assume stuff like 272 being psp resolution height or 480x272 being psp proportions, which would be a case of psp display, but not always for buffer sizes and in those situations your shader fails.

My shader was broken in I guess same situations, but it always was reading the input out of ppsspp that's why it got fixed.
So just use u_texelDelta or u_pixelDelta uniforms where the first is 1.0/rendering resolution, and the second is 1.0/display resolution.

Once you replace those hardcoded resolutions you have there, I belive your shader should also work fine in latest builds. You can try just replacing:
Code:
float lines = 272.0;
float hRes = 1920.0;
float vRes = 1088.0;
with:
Code:
uniform vec2 u_pixelDelta;
float lines = 1.0/u_pixelDelta.y/4.0;
float hRes = 1.0/u_pixelDelta.x;
float vRes = 1.0/u_pixelDelta.y;

And you should already see same result in all resolutions/window sizes doesn't matter the buffer size, through I'm not sure how you really want it to look, so just do it how it will fit your needs.

Wow, that works, thanks so much! RR2 looks great now!

u_texelDelta and u_pixelDelta were exactly the things I had been looking for actually, specifically to make the aperture grille effect resolution-independent. I guess I could've just asked here. Tongue I'll have to tweak it a bit (and make it so you can still select a different amount of scanlines for stretched arcade ports), I'll upload a new version later.

I have to admit I still don't really understand why the final render output we work with in shaders isn't always PSP resolution, but oh well, it doesn't matter now.

(edit: used a wrong term)
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: