mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 12:40:23 +01:00
progs/glsl: Fix noise GLSL compilation error on Mac OS.
This commit is contained in:
parent
3bf12c8bea
commit
0d31990b47
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ static const char *FragShaderText =
|
|||
" vec4 p;\n"
|
||||
" p.xy = gl_TexCoord[0].xy;\n"
|
||||
" p.z = Slice;\n"
|
||||
" p.w = 0;\n"
|
||||
" p.w = 0.0;\n"
|
||||
" vec4 n = noise4(p * scale);\n"
|
||||
" gl_FragColor = n * Scale + Bias;\n"
|
||||
"}\n";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue