Skip to content

Commit

Permalink
[EE] Fix rendering oopsie on ES, when filling rects
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFakeMontyOnTheRun committed Dec 30, 2023
1 parent 79e5289 commit 0bf95f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee_frontend/base3d/src/es/GLESCommon.c
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ void initGL() {

whiteTexture.height = 1;
whiteTexture.width = 1;
whiteRaw[0] = whiteRaw[1] = whiteRaw[2] = whiteRaw[3] = 0xFF;
whiteRaw[0] = whiteRaw[1] = whiteRaw[2] = whiteRaw[3] = 0xFFFFFFFF;
whiteTexture.data = &whiteRaw[0];
whiteTexture.uploadId = submitBitmapToGPU(&whiteTexture);

Expand Down

0 comments on commit 0bf95f7

Please sign in to comment.