diff options
| author | raysan5 <raysan5@gmail.com> | 2016-06-11 12:41:03 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-06-11 12:41:03 +0200 |
| commit | 68a02e567d5fea42d1593e7932a0e052cf244d52 (patch) | |
| tree | af319aecde8b8335dcb1a11cc35eebd6fd587228 /src/rlgl.c | |
| parent | c46c0fc6520914d6e9488282c02c96395d8bea9f (diff) | |
| download | raylib-68a02e567d5fea42d1593e7932a0e052cf244d52.tar.gz raylib-68a02e567d5fea42d1593e7932a0e052cf244d52.zip | |
Avoid external variable whiteTexture
To get it, use GetDefaultTexture()
Diffstat (limited to 'src/rlgl.c')
| -rw-r--r-- | src/rlgl.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -228,8 +228,7 @@ static PFNGLDELETEVERTEXARRAYSOESPROC glDeleteVertexArrays; static int blendMode = 0; // White texture useful for plain color polys (required by shader) -// NOTE: It's required in shapes and models modules! -unsigned int whiteTexture; +static unsigned int whiteTexture; //---------------------------------------------------------------------------------- // Module specific Functions Declaration |
