The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 795 - File: showthread.php PHP 7.4.33 (Linux)
File Line Function
/showthread.php 795 errorHandler->error





Post Reply 
 
Thread Rating:
  • 11 Votes - 4.64 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Custom PPSSPP shaders
09-29-2013, 10:26 PM (This post was last modified: 03-07-2024 11:35 PM by LunaMoo.)
Post: #1
Custom PPSSPP shaders
It started some time ago with just my fast growning customizable shader for quite a while, but finally we have more than one shader here, so slight reformat was neededSmile.
=======================================================
=======================================================
Here's my own shader which is very customizable(now actually divided to separate files since PPSSPP supports multi level shaders and has UI for their options) and includes:
- FXAA,
- 2 Gauss smoothing filters,
- Guest AA 4.o,
- 5xBR variant A and B scaling shader(also includes Guest.r new version with different variants),
- 4xHQ scaling shader,
- scalable xBRZ pre-setted for Street Fighter Alpha 3 MAX, but usable in any game you set it for - doesn't use upscaling flag so if you need an upscaling for video only while keeping the 3D as sharp as it can be you can try this,
- Bloom with "Miku" option for very bright anime games,
- Colored(slight enhance of colors),
- Natural Colors,
- Advanced Cartoon,
- Sharpen,
- Complex Sharpen ,
- Shadeboost(color editing with few presets),
- Gamma correction,
- Vignette with optional reverse effect,
- Simple scanlines with some options, can be horizontal(default) or vertical,
- LCD3x ~ note on mobiles/GLES devices it requires changing "precision mediump" to "precision highp" ~ you can use any text editor to find and replace it inside .fsh file if you want to use it - it might not be supported on all devices through and also might cause everything to be slower that's why I didn't set it by default,
- few debanding methods ~ via blur and noise /dithering(with faster version as well) also includes very heavy bilateral filter now,
- color reduction(by default will not appear to do much, but change RGB to lower values like all 2 or all 4 and you will see some dated graphics),
- pixelate(increases the size of pixels),
- custom aspect ratio(you can change PSP rendered scene to different aspect ratio, for example 4:3),
- last and frankly least as nobody will use that too oftenTongue, test mode, which allows apply any combination to half screen or animated change from left to right, useful for easy comparison screenshots and tweaking.

Now(shortly before 1.10 release) I also added multi-pass version of this, it'll be potentially more expensive, so I'd recommend removing/skipping passes which you don't use by editing ini files. I grouped certain effects which doesn't have sense to activate together, so activate only one smoothing, sharpening or upscaling effect althrough some other ones can still work together despite being in same pass. I did not used any shader settings yet, because it feels like a lot of work(and also because I forgot about it;p), but probably will in next release. Also take note TEST effects doesn't work yet with this chain shader, they will some time after 1.10 release when [Unknown]'s postshader branch get's merged.

I strongly recommend to customize those shaders for your liking, that's the point of my shader, if PPSSPP could easily mix various effects and allow a noob friendly customization I would more than likely never created it. Example is just so you can see how to add modified version of it to PPSSPP via ini file, check "Changing shader settings" below for more information.

download link ~ last time updated old version: 2017-12-01(y-m-d), new chain version(multi-pass): 2020-05-18, even newer chain version with full UI support(no more editing files): 2021-02-26, tiny fixes to 3 effects I tested after making, but before adding UI controls and forgot about video uniform, which broke them heh...: 08.03.2024

Please use PPSSPP v1.10.3-741-g4ccde4848 or newer, older versions doesn't support UI nor test shader in chain.

Installation is same as noted below, just extract all of the files into your ppsspp - assets\shaders\ folder (Android just "...PSP\Shaders" same place where saves are stored).

Included "mobile" versions of the shaders with 2 effects removed(natural colors and LCD3x), those effects weren't even heavy, however I think the only reason vertex shader could fail on mobiles for some people would be caused by passing too many variables to fragment shader and to decrease that, those two effects had to go, I could write them differently, but it would make them slower, with mobiles blah not worth the effort. Especially that it might not help, because I couldn't reproduce any real problem on anything I have.

Latest version should also work with d3d11 by glsl autotranslation(using slang and SPIRV-Cross) ~ which is available starting from v1.3-724-gc355947. Had to correct Guest 4.o AA code to match GLSL standard and added some precision workarounds for simple scanlines and xBR. Vulkan post process shaders are now supported as well ~ from around v1.5.

Also starting from PPSSPP v1.4.2-438-g799c85ebe, a new kind of shaders can be made which are video aware, that is can apply different effects to videos vs in-game, as such I added new preset file with doubled config to make use of it. Warning - this preset is probably too heavy to be used on integrated graphics/low end hardware, I used some very heavy effects together, tested only on fairy powerful desktop;p.

Note: Because my shaders can be used for down/up scaling now, if all you want to use it for is some basic coloring and have very weak gpu that cannot run games in at least your display resolution, you might remove "OutputResolution=True" from each shader in the included ini file. It will break all scaling, as well as scanline effects, but all the simple coloring shaders would still work and end up lighter.
Otherwise I don't recommend changing this, in most situations when used on fairy powerful modern hardware disabling it will probably degrade performance thanks to how downscaling works in ppsspp.


Screenies:
- FFIV video smoothed with new video aware shader
[Image: A0up9KN.jpg]

- same shader
[Image: EpH3gqb.jpg]

(~the text on that screenshot without knowing it's just a Castlevania intro might be a bit confusing;p)


- 10x res 3D game with downscaling shader (Monster Hunter Portable 3rd HD)
[Image: Oh0h66U.jpg]


- as above with less colors added, lots of diagonal edges to see AA effect (Senjou no Valkyria III)
[Image: WGLHMEV.jpg]


- 1x res 2D animation with upscaling shader(Heroes Phantasia)
[Image: m8OCK7j.jpg]

Colors I used might be a bit too deep for most games on default, but hey customization of everything is the point here. Also upscaling shader probably works better on more static objects, but I already posted some screenshots of 5xBR variants in here and wanted to check it on low res animation anyway.
- 5xBR again on more fitting scene/game(PoPoLoCrois)
[Image: yTG0mDX.jpg]


=======================================================

We also now have AA_Shader_v2.0_w_Natural_Vision as well as different versions of this shader + probably some extras ported by naoan which you can get from his post(click).

Comparison screenies:
OFF
   

ON
   

=======================================================

You can also find different versions of shaders implemented in PPSSPP by default + probably some extras in this Danyal Zia post.


=======================================================
And Nick001's Arcade Scanlines ~ with bunch of screenshots included, if you're into scanlines that might be something to look at. If you get a bug with shader showing only bottom right corner of the screen, you can try my fix for it from this post.

=======================================================
Before it get's hidden, worth linking also Guest.r Updated shaders which has a bunch of different variants of his AA shader.

=======================================================
=======================================================


Installation: Simply unpack to your "..ppsspp\assets\shaders\" folder on Android it should be "...PSP\Shaders".

If the shader comes without it's own ini file you can create an empty ini file in same directory(or just edit an existing oneSmile) and add some more and less important lines inside like in this example based on naoan shader:
Code:
[AAShaderNV]
Name=AA Shader with Natural Vision
Author=naoan
Fragment=nat_aa.fsh
Vertex=nat_aa.vsh
Where:
Code:
[] - is just a tag, set it whatever you like
Name= - whatever you write here will be visible in the list:)
Author= - that's only visible in the ini file I guess, but it's nice to give credits whenever you can or simply to remember who made it when something changes and shader stops working:)
Fragment= - has to be set to fragment shader file
Vertex= - has to be set to vertex shader file

In addition to above, ppsspp shader ini files also can include lines:
Code:
OutputResolution=True   #1
Upscaling=True          #2
RequiresIntSupport=True #3
SSAA=*integer number* #4
60fps=True  #5
1) Scales the output down/up to your display/window resolution. Combined with most blurry/aa filters and rendering res above your device screen will result in nice SSAA effect. Also required for upscaling filters.
2) Forces rendering resolution to x1 and screen scaling filter to nearest - settings required by upscaling shaders to work.
3) Enables integer support, most shaders will not require it.
4) It will set up a resolution with a multiply of set value of current window resolution, so let's say you're running the game in x2 window with x2 SSAA it will have full HD resolution, but if you then switch to fullscreen, it will use a resolution used by your monitor multiplied by 2, such super sampling combined with any blurry filter will result in super sampling AA effect.
5) It does the same thing as the option to duplicate frames up to 60, except this was existing much earlier as it's doing so for shaders that include animation without that flag animation speed would be affected by FPS changes in-game which is bad for a post process.

=======================================================
Changing shader settings:

Just use PPSSPP UI, latest version(post release!) allow shader modification directly from graphics settings menu, I even cut my large shader and provided it in separate effects each with it's own settings.Smile

Simply open the .fsh file(any text editor is enough) and mess aroundWink, my shader has a pretty big, but clean and well described config with alot of extra settings which can totally(and easily) change how it looks. Most shaders even if not specially made for modifications, should come with at least some variables that can be easily edited to change how the result looks like.

My own shader, under defines also comes with a list of approximate performance hit so you get the general idea which shaders to avoid on slower hardware. In general most desktops with modern dedicated gpu(including cheap ones) should be fine with everything, it also depends a lot on the rendering resolution used, for example xBR is easily the heaviest effect there, but due to upscaling shaders requiring x1 rendering res it might actually be lighter than some cheap downscaling shader used with x10 render res even through both would in the end output same resolution image.:]


=======================================================


Creating your own shaders:
It's actually easy, it was a black magic for me as well, but turned out they're easy to code and no point on doing it from 0 either, many effects are already free to use on the net, just search for GLSL fragment shaders that doesn't require multiply passes or even to HLSL pixel shaders since they're easy to port, tutorials are also scattered around the net, easy to find something for any level.

Not sure if it works on NVidia gpu's, but you might try AMD GPU Shader Analyzer which helps alot in terms of debugging or even optimizing and allows to simulate shader compilation on many different AMD GPU's on different driver version(how's that useful you ask? Well if a shader works on AMD it'll rather for sure work on Nvidia~actually not as history proven AMD drivers sometimes were even more understanding:|, also many people with older AMD gpu's ~ HD4000 series and older are using 11.11 drivers since they're considered best for PPSSPP - this tool allows to simulate those conditions which are somewhat unforgiving).

Another nice tool(CLI) OpenGL / OpenGL ES Reference Compiler, no gui makes it a bit more bothersome to use, but will in theory detect all problems, in practice it still fails to ensure shaders will work on mobiles, since they have messed up drivers and this only checks if code follows GLSL standard:].

===========================
Due to some recent post in this thread as of 2017-01-29 I have to add that I don't support spreading any of my work done for free especially stuff I really care to be easily customizable by community through some personal beerfund advertisement links and close minded rulesets or on sites that promote those.
Will I bother stopping people from doing it? No, I'm even putting it at the very bottom of the post for most people to not waste time reading this, but I will never support nor promote any of this and if you're normal decent human being you shouldn't either and any average user can do better than whatever they would show on screenshots when begging for fixing something they broke while ripping something they couldn't understand.
===========================

http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders!
http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats,
https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds.
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: