added held item exclusion option for texture warping
This commit is contained in:
parent
54495eb53f
commit
8040b1a635
3 changed files with 41 additions and 2 deletions
4
shaders/gbuffers_hand.fsh
Normal file
4
shaders/gbuffers_hand.fsh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#version 120
|
||||||
|
|
||||||
|
#include "/module/empty.frag"
|
||||||
|
|
33
shaders/gbuffers_hand.vsh
Normal file
33
shaders/gbuffers_hand.vsh
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
#version 120
|
||||||
|
|
||||||
|
#define pixelSize 2 // [1 2 4 8 16]
|
||||||
|
#define itemFix
|
||||||
|
|
||||||
|
in int itemId;
|
||||||
|
|
||||||
|
varying vec2 texcoord;
|
||||||
|
varying vec4 color;
|
||||||
|
varying vec2 lmcoord;
|
||||||
|
|
||||||
|
uniform mat4 gbufferModelView, gbufferModelViewInverse;
|
||||||
|
uniform float viewWidth, viewHeight;
|
||||||
|
|
||||||
|
#include "/module/vertex_warp.vert"
|
||||||
|
#include "/module/texture_warp.vert"
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
texcoord = (gl_TextureMatrix[0] * gl_MultiTexCoord0).xy;
|
||||||
|
lmcoord = (gl_TextureMatrix[1] * gl_MultiTexCoord1).xy;
|
||||||
|
color = gl_Color;
|
||||||
|
|
||||||
|
#if vWarp > 0
|
||||||
|
vertex_warp();
|
||||||
|
#else
|
||||||
|
gl_Position = ftransform();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if(itemId == 0) {
|
||||||
|
texture_warp();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
sliders=pixelSize hueSteps satSteps valSteps rgbSteps vWarp
|
sliders=pixelSize hueSteps satSteps valSteps rgbSteps vWarp
|
||||||
|
|
||||||
profile.DEFAULT=pixelSize=2 colorMode=0 dithering hueSteps=4 satSteps=4 valSteps=4 vWarp=0 !tWarp
|
profile.DEFAULT=pixelSize=2 colorMode=0 dithering hueSteps=4 satSteps=4 valSteps=4 vWarp=0 !tWarp
|
||||||
profile.PSX=pixelsize=2 colorMode=1 !dithering rgbSteps=16 vWarp=2 tWarp
|
profile.PSX=pixelsize=2 colorMode=1 !dithering rgbSteps=16 vWarp=2 tWarp itemFix
|
||||||
profile.DOS=pixelSize=4 colorMode=1 dithering rgbSteps=2 vWarp=0 !tWarp
|
profile.DOS=pixelSize=4 colorMode=1 dithering rgbSteps=2 vWarp=0 !tWarp
|
||||||
|
|
||||||
screen=<profile> <empty> pixelSize <empty> [COLOR] [PSX]
|
screen=<profile> <empty> pixelSize <empty> [COLOR] [PSX]
|
||||||
|
|
||||||
screen.COLOR=colorMode dithering rgbSteps <empty> hueSteps satSteps valSteps
|
screen.COLOR=colorMode dithering rgbSteps <empty> hueSteps satSteps valSteps
|
||||||
screen.PSX=vWarp tWarp
|
screen.PSX=vWarp tWarp <empty> itemFix
|
||||||
|
|
||||||
|
gbuffers_hand.enabled=tWarp && itemFix
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue