We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98d0743 commit c200575Copy full SHA for c200575
core/src/processing/opengl/PGLES.java
@@ -521,6 +521,9 @@ protected FontOutline createFontOutline(char ch, Object font) {
521
RGBA4 = GLES20.GL_RGBA4;
522
RGB5_A1 = GLES20.GL_RGB5_A1;
523
RGB565 = GLES20.GL_RGB565;
524
+ RGB8 = 0x8051;
525
+ RGBA8 = 0x8058;
526
+ ALPHA8 = -1;
527
528
READ_ONLY = -1;
529
WRITE_ONLY = 0x88B9;
@@ -735,7 +738,6 @@ protected FontOutline createFontOutline(char ch, Object font) {
735
738
READ_FRAMEBUFFER = -1;
736
739
DRAW_FRAMEBUFFER = -1;
737
740
- RGBA8 = 0x8058;
741
DEPTH24_STENCIL8 = 0x88F0;
742
743
DEPTH_COMPONENT = GLES20.GL_DEPTH_COMPONENT;
0 commit comments