Make blank texture have an alpha of 0

Fixes Callum's face in funny game

Co-Authored-By: GPUCode <47210458+GPUCode@users.noreply.github.com>
This commit is contained in:
wheremyfoodat 2023-09-13 21:07:35 +03:00
parent 2e7bc7c1f9
commit eade124f00

View file

@ -141,7 +141,7 @@ void RendererGL::initGraphicsContext(SDL_Window* window) {
// Clear the texture and then delete FBO
OpenGL::setViewport(8, 8);
gl.setClearColour(0.0, 0.0, 0.0, 1.0);
gl.setClearColour(0.0, 0.0, 0.0, 0.0);
OpenGL::clearColor();
dummyFBO.free();