dolphin/Data/Sys/Shaders/swap_RGB_BRG.glsl

10 lines
107 B
Plaintext
Raw Normal View History

2013-03-07 09:46:55 -07:00
uniform sampler2D samp9;
2011-01-30 17:08:06 -07:00
2013-03-07 09:46:55 -07:00
out vec4 ocol0;
in vec2 uv0;
void main()
2011-01-30 17:08:06 -07:00
{
2013-03-07 09:46:55 -07:00
ocol0 = texture(samp9, uv0).brga;
}