mirror of https://github.com/PCSX2/pcsx2.git
363 lines
9.5 KiB
GLSL
363 lines
9.5 KiB
GLSL
//#version 420 // Keep it for editor detection
|
|
|
|
|
|
#ifdef VERTEX_SHADER
|
|
|
|
layout(location = 0) in vec2 POSITION;
|
|
layout(location = 1) in vec2 TEXCOORD0;
|
|
layout(location = 7) in vec4 COLOR;
|
|
|
|
// FIXME set the interpolation (don't know what dx do)
|
|
// flat means that there is no interpolation. The value given to the fragment shader is based on the provoking vertex conventions.
|
|
//
|
|
// noperspective means that there will be linear interpolation in window-space. This is usually not what you want, but it can have its uses.
|
|
//
|
|
// smooth, the default, means to do perspective-correct interpolation.
|
|
//
|
|
// The centroid qualifier only matters when multisampling. If this qualifier is not present, then the value is interpolated to the pixel's center, anywhere in the pixel, or to one of the pixel's samples. This sample may lie outside of the actual primitive being rendered, since a primitive can cover only part of a pixel's area. The centroid qualifier is used to prevent this; the interpolation point must fall within both the pixel's area and the primitive's area.
|
|
out vec4 PSin_p;
|
|
out vec2 PSin_t;
|
|
out vec4 PSin_c;
|
|
|
|
void vs_main()
|
|
{
|
|
PSin_p = vec4(POSITION, 0.5f, 1.0f);
|
|
PSin_t = TEXCOORD0;
|
|
PSin_c = COLOR;
|
|
gl_Position = vec4(POSITION, 0.5f, 1.0f); // NOTE I don't know if it is possible to merge POSITION_OUT and gl_Position
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef FRAGMENT_SHADER
|
|
|
|
in vec4 PSin_p;
|
|
in vec2 PSin_t;
|
|
in vec4 PSin_c;
|
|
|
|
// Give a different name so I remember there is a special case!
|
|
#if defined(ps_convert_rgba8_16bits) || defined(ps_convert_float32_32bits)
|
|
layout(location = 0) out uint SV_Target1;
|
|
#else
|
|
layout(location = 0) out vec4 SV_Target0;
|
|
#endif
|
|
|
|
vec4 sample_c()
|
|
{
|
|
return texture(TextureSampler, PSin_t);
|
|
}
|
|
|
|
#ifdef ps_copy
|
|
void ps_copy()
|
|
{
|
|
SV_Target0 = sample_c();
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_depth_copy
|
|
void ps_depth_copy()
|
|
{
|
|
gl_FragDepth = sample_c().r;
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgba8_16bits
|
|
// Need to be careful with precision here, it can break games like Spider-Man 3 and Dogs Life
|
|
void ps_convert_rgba8_16bits()
|
|
{
|
|
highp uvec4 i = uvec4(sample_c() * vec4(255.5f, 255.5f, 255.5f, 255.5f));
|
|
|
|
SV_Target1 = ((i.x & 0x00F8u) >> 3) | ((i.y & 0x00F8u) << 2) | ((i.z & 0x00f8u) << 7) | ((i.w & 0x80u) << 8);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_float32_32bits
|
|
void ps_convert_float32_32bits()
|
|
{
|
|
// Convert a GL_FLOAT32 depth texture into a 32 bits UINT texture
|
|
SV_Target1 = uint(exp2(32.0f) * sample_c().r);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_float32_rgba8
|
|
void ps_convert_float32_rgba8()
|
|
{
|
|
// Convert a GL_FLOAT32 depth texture into a RGBA color texture
|
|
uint d = uint(sample_c().r * exp2(32.0f));
|
|
SV_Target0 = vec4(uvec4((d & 0xFFu), ((d >> 8) & 0xFFu), ((d >> 16) & 0xFFu), (d >> 24))) / vec4(255.0);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_float16_rgb5a1
|
|
void ps_convert_float16_rgb5a1()
|
|
{
|
|
// Convert a GL_FLOAT32 (only 16 lsb) depth into a RGB5A1 color texture
|
|
uint d = uint(sample_c().r * exp2(32.0f));
|
|
SV_Target0 = vec4(uvec4((d & 0x1Fu), ((d >> 5) & 0x1Fu), ((d >> 10) & 0x1Fu), (d >> 15) & 0x01u)) / vec4(32.0f, 32.0f, 32.0f, 1.0f);
|
|
}
|
|
#endif
|
|
|
|
float rgba8_to_depth32(vec4 unorm)
|
|
{
|
|
uvec4 c = uvec4(unorm * vec4(255.5f));
|
|
return float(c.r | (c.g << 8) | (c.b << 16) | (c.a << 24)) * exp2(-32.0f);
|
|
}
|
|
|
|
float rgba8_to_depth24(vec4 unorm)
|
|
{
|
|
uvec3 c = uvec3(unorm.rgb * vec3(255.5f));
|
|
return float(c.r | (c.g << 8) | (c.b << 16)) * exp2(-32.0f);
|
|
}
|
|
|
|
float rgba8_to_depth16(vec4 unorm)
|
|
{
|
|
uvec2 c = uvec2(unorm.rg * vec2(255.5f));
|
|
return float(c.r | (c.g << 8)) * exp2(-32.0f);
|
|
}
|
|
|
|
float rgb5a1_to_depth16(vec4 unorm)
|
|
{
|
|
uvec4 c = uvec4(unorm * vec4(255.5f));
|
|
return float(((c.r & 0xF8u) >> 3) | ((c.g & 0xF8u) << 2) | ((c.b & 0xF8u) << 7) | ((c.a & 0x80u) << 8)) * exp2(-32.0f);
|
|
}
|
|
|
|
#ifdef ps_convert_rgba8_float32
|
|
void ps_convert_rgba8_float32()
|
|
{
|
|
// Convert an RGBA texture into a float depth texture
|
|
gl_FragDepth = rgba8_to_depth32(sample_c());
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgba8_float24
|
|
void ps_convert_rgba8_float24()
|
|
{
|
|
// Same as above but without the alpha channel (24 bits Z)
|
|
|
|
// Convert an RGBA texture into a float depth texture
|
|
gl_FragDepth = rgba8_to_depth24(sample_c());
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgba8_float16
|
|
void ps_convert_rgba8_float16()
|
|
{
|
|
// Same as above but without the A/B channels (16 bits Z)
|
|
|
|
// Convert an RGBA texture into a float depth texture
|
|
gl_FragDepth = rgba8_to_depth16(sample_c());
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgb5a1_float16
|
|
void ps_convert_rgb5a1_float16()
|
|
{
|
|
// Convert an RGB5A1 (saved as RGBA8) color to a 16 bit Z
|
|
gl_FragDepth = rgb5a1_to_depth16(sample_c());
|
|
}
|
|
#endif
|
|
|
|
#define SAMPLE_RGBA_DEPTH_BILN(CONVERT_FN) \
|
|
ivec2 dims = textureSize(TextureSampler, 0); \
|
|
vec2 top_left_f = PSin_t * vec2(dims) - 0.5f; \
|
|
ivec2 top_left = ivec2(floor(top_left_f)); \
|
|
ivec4 coords = clamp(ivec4(top_left, top_left + 1), ivec4(0), dims.xyxy - 1); \
|
|
vec2 mix_vals = fract(top_left_f); \
|
|
float depthTL = CONVERT_FN(texelFetch(TextureSampler, coords.xy, 0)); \
|
|
float depthTR = CONVERT_FN(texelFetch(TextureSampler, coords.zy, 0)); \
|
|
float depthBL = CONVERT_FN(texelFetch(TextureSampler, coords.xw, 0)); \
|
|
float depthBR = CONVERT_FN(texelFetch(TextureSampler, coords.zw, 0)); \
|
|
gl_FragDepth = mix(mix(depthTL, depthTR, mix_vals.x), mix(depthBL, depthBR, mix_vals.x), mix_vals.y);
|
|
|
|
#ifdef ps_convert_rgba8_float32_biln
|
|
void ps_convert_rgba8_float32_biln()
|
|
{
|
|
// Convert an RGBA texture into a float depth texture
|
|
SAMPLE_RGBA_DEPTH_BILN(rgba8_to_depth32);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgba8_float24_biln
|
|
void ps_convert_rgba8_float24_biln()
|
|
{
|
|
// Same as above but without the alpha channel (24 bits Z)
|
|
|
|
// Convert an RGBA texture into a float depth texture
|
|
SAMPLE_RGBA_DEPTH_BILN(rgba8_to_depth24);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgba8_float16_biln
|
|
void ps_convert_rgba8_float16_biln()
|
|
{
|
|
// Same as above but without the A/B channels (16 bits Z)
|
|
|
|
// Convert an RGBA texture into a float depth texture
|
|
SAMPLE_RGBA_DEPTH_BILN(rgba8_to_depth16);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgb5a1_float16_biln
|
|
void ps_convert_rgb5a1_float16_biln()
|
|
{
|
|
// Convert an RGB5A1 (saved as RGBA8) color to a 16 bit Z
|
|
SAMPLE_RGBA_DEPTH_BILN(rgb5a1_to_depth16);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_convert_rgba_8i
|
|
void ps_convert_rgba_8i()
|
|
{
|
|
// Convert a RGBA texture into a 8 bits packed texture
|
|
// Input column: 8x2 RGBA pixels
|
|
// 0: 8 RGBA
|
|
// 1: 8 RGBA
|
|
// Output column: 16x4 Index pixels
|
|
// 0: 8 R | 8 B
|
|
// 1: 8 R | 8 B
|
|
// 2: 8 G | 8 A
|
|
// 3: 8 G | 8 A
|
|
uvec2 pos = uvec2(gl_FragCoord.xy);
|
|
|
|
// Collapse separate R G B A areas into their base pixel
|
|
uvec2 block = (pos & ~uvec2(15u, 3u)) >> 1;
|
|
uvec2 subblock = pos & uvec2(7u, 1u);
|
|
uvec2 coord = block | subblock;
|
|
|
|
// Apply offset to cols 1 and 2
|
|
uint is_col23 = pos.y & 4u;
|
|
uint is_col13 = pos.y & 2u;
|
|
uint is_col12 = is_col23 ^ (is_col13 << 1);
|
|
coord.x ^= is_col12; // If cols 1 or 2, flip bit 3 of x
|
|
|
|
if (floor(PS_SCALE_FACTOR) != PS_SCALE_FACTOR)
|
|
coord = uvec2(vec2(coord) * PS_SCALE_FACTOR);
|
|
else
|
|
coord *= uvec2(PS_SCALE_FACTOR);
|
|
|
|
vec4 pixel = texelFetch(TextureSampler, ivec2(coord), 0);
|
|
vec2 sel0 = (pos.y & 2u) == 0u ? pixel.rb : pixel.ga;
|
|
float sel1 = (pos.x & 8u) == 0u ? sel0.x : sel0.y;
|
|
SV_Target0 = vec4(sel1);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_filter_transparency
|
|
void ps_filter_transparency()
|
|
{
|
|
vec4 c = sample_c();
|
|
|
|
c.a = dot(c.rgb, vec3(0.299, 0.587, 0.114));
|
|
|
|
SV_Target0 = c;
|
|
}
|
|
#endif
|
|
|
|
// Used for DATE (stencil)
|
|
// DATM == 1
|
|
#ifdef ps_datm1
|
|
void ps_datm1()
|
|
{
|
|
if(sample_c().a < (127.5f / 255.0f)) // >= 0x80 pass
|
|
discard;
|
|
}
|
|
#endif
|
|
|
|
// Used for DATE (stencil)
|
|
// DATM == 0
|
|
#ifdef ps_datm0
|
|
void ps_datm0()
|
|
{
|
|
if((127.5f / 255.0f) < sample_c().a) // < 0x80 pass (== 0x80 should not pass)
|
|
discard;
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_hdr_init
|
|
void ps_hdr_init()
|
|
{
|
|
vec4 value = sample_c();
|
|
SV_Target0 = vec4(round(value.rgb * 255.0f) / 65535.0f, value.a);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_hdr_resolve
|
|
void ps_hdr_resolve()
|
|
{
|
|
vec4 value = sample_c();
|
|
SV_Target0 = vec4(vec3(uvec3(value.rgb * 65535.0f) & 255u) / 255.0f, value.a);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ps_yuv
|
|
uniform ivec2 EMOD;
|
|
|
|
void ps_yuv()
|
|
{
|
|
vec4 i = sample_c();
|
|
vec4 o;
|
|
|
|
mat3 rgb2yuv; // Value from GS manual
|
|
rgb2yuv[0] = vec3(0.587, -0.311, -0.419);
|
|
rgb2yuv[1] = vec3(0.114, 0.500, -0.081);
|
|
rgb2yuv[2] = vec3(0.299, -0.169, 0.500);
|
|
|
|
vec3 yuv = rgb2yuv * i.gbr;
|
|
|
|
float Y = float(0xDB)/255.0f * yuv.x + float(0x10)/255.0f;
|
|
float Cr = float(0xE0)/255.0f * yuv.y + float(0x80)/255.0f;
|
|
float Cb = float(0xE0)/255.0f * yuv.z + float(0x80)/255.0f;
|
|
|
|
switch(EMOD.x) {
|
|
case 0:
|
|
o.a = i.a;
|
|
break;
|
|
case 1:
|
|
o.a = Y;
|
|
break;
|
|
case 2:
|
|
o.a = Y/2.0f;
|
|
break;
|
|
case 3:
|
|
o.a = 0.0f;
|
|
break;
|
|
}
|
|
|
|
switch(EMOD.y) {
|
|
case 0:
|
|
o.rgb = i.rgb;
|
|
break;
|
|
case 1:
|
|
o.rgb = vec3(Y);
|
|
break;
|
|
case 2:
|
|
o.rgb = vec3(Y, Cb, Cr);
|
|
break;
|
|
case 3:
|
|
o.rgb = vec3(i.a);
|
|
break;
|
|
}
|
|
|
|
SV_Target0 = o;
|
|
}
|
|
#endif
|
|
|
|
#if defined(ps_stencil_image_init_0) || defined(ps_stencil_image_init_1)
|
|
|
|
void main()
|
|
{
|
|
SV_Target0 = vec4(0x7FFFFFFF);
|
|
|
|
#ifdef ps_stencil_image_init_0
|
|
if((127.5f / 255.0f) < sample_c().a) // < 0x80 pass (== 0x80 should not pass)
|
|
SV_Target0 = vec4(-1);
|
|
#endif
|
|
#ifdef ps_stencil_image_init_1
|
|
if(sample_c().a < (127.5f / 255.0f)) // >= 0x80 pass
|
|
SV_Target0 = vec4(-1);
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
#endif
|