diff options
| author | raysan5 <[email protected]> | 2017-11-12 10:33:44 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2017-11-12 10:33:44 +0100 |
| commit | 09228752ce2695baf79cbc2edccc60fabb38f783 (patch) | |
| tree | 7cfa316be56b0c611d34e8afc0a8fa24ceb47ac8 /src/shader_distortion.h | |
| parent | e12182f59b4c84bb3c941b02ae4253de645fdf4d (diff) | |
| download | raylib-09228752ce2695baf79cbc2edccc60fabb38f783.tar.gz raylib-09228752ce2695baf79cbc2edccc60fabb38f783.zip | |
Review default shaders usage on loading
Diffstat (limited to 'src/shader_distortion.h')
| -rw-r--r-- | src/shader_distortion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_distortion.h b/src/shader_distortion.h index 7a2c994b..3b37c630 100644 --- a/src/shader_distortion.h +++ b/src/shader_distortion.h @@ -1,6 +1,6 @@ // Vertex shader definition to embed, no external file required -static const char vDistortionShaderStr[] = +static const char distortionVShaderStr[] = #if defined(GRAPHICS_API_OPENGL_21) "#version 120 \n" #elif defined(GRAPHICS_API_OPENGL_ES2) @@ -29,7 +29,7 @@ static const char vDistortionShaderStr[] = "} \n"; // Fragment shader definition to embed, no external file required -static const char fDistortionShaderStr[] = +static const char distortionFShaderStr[] = #if defined(GRAPHICS_API_OPENGL_21) "#version 120 \n" #elif defined(GRAPHICS_API_OPENGL_ES2) |
