mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
glsl: use const in for params
This commit is contained in:
parent
8e8b582747
commit
00c9321b1d
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ uniform int stereo_image_count;
|
||||||
uniform int height;
|
uniform int height;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
vec4 anaglyph(vec4 left, vec4 right)
|
vec4 anaglyph(const in vec4 left, const in vec4 right)
|
||||||
{
|
{
|
||||||
switch (stereo_display_mode)
|
switch (stereo_display_mode)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue