Skip to content

Commit ecbab95

Browse files
committed
remove RTE from glDrawBuffer/glReadBuffer
Signed-off-by: Umair Khan <[email protected]>
1 parent 7a7bec0 commit ecbab95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/processing/opengl/PGLES.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1785,12 +1785,12 @@ public void renderbufferStorageMultisample(int target, int samples, int format,
17851785

17861786
@Override
17871787
public void readBuffer(int buf) {
1788-
throw new RuntimeException(String.format(MISSING_GLFUNC_ERROR, "glReadBuffer()"));
1788+
// throw new RuntimeException(String.format(MISSING_GLFUNC_ERROR, "glReadBuffer()"));
17891789
}
17901790

17911791
@Override
17921792
public void drawBuffer(int buf) {
1793-
throw new RuntimeException(String.format(MISSING_GLFUNC_ERROR, "glDrawBuffer()"));
1793+
// throw new RuntimeException(String.format(MISSING_GLFUNC_ERROR, "glDrawBuffer()"));
17941794
}
17951795

17961796

0 commit comments

Comments
 (0)