mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 21:37:42 -07:00
fix colors
This commit is contained in:
parent
24de8de503
commit
4135ea374b
@ -155,7 +155,7 @@ void main()
|
|||||||
|
|
||||||
// TODO: filters
|
// TODO: filters
|
||||||
|
|
||||||
oColor = vec4(vec3(pixel.rgb) / 255.0, 1.0);
|
oColor = vec4(vec3(pixel.bgr) / 255.0, 1.0);
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
|
|
||||||
@ -310,7 +310,7 @@ void main()
|
|||||||
|
|
||||||
// TODO: filters
|
// TODO: filters
|
||||||
|
|
||||||
oColor = vec4(vec3(pixel.rgb) / 255.0, 1.0);
|
oColor = vec4(vec3(pixel.bgr) / 255.0, 1.0);
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
|
|
||||||
@ -855,7 +855,7 @@ void main()
|
|||||||
pixel.rgb <<= 2;
|
pixel.rgb <<= 2;
|
||||||
pixel.rgb |= (pixel.rgb >> 6);
|
pixel.rgb |= (pixel.rgb >> 6);
|
||||||
|
|
||||||
FragColor = vec4(vec3(pixel.rgb) / 255.0, 1.0);
|
FragColor = vec4(vec3(pixel.bgr) / 255.0, 1.0);
|
||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user