mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 14:45:41 +12:00
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:
parent
2e7bc7c1f9
commit
eade124f00
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue