summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl
diff options
context:
space:
mode:
authorJack Palevich <jackpal@google.com>2009-12-08 15:43:51 +0800
committerJack Palevich <jackpal@google.com>2009-12-08 15:43:51 +0800
commit66089a33ea4efda711a3a5180f0b001bdac48dcf (patch)
tree4dd412e361a8892e8a845f65ecbb0714596d8176 /opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl
parent6998379a91382a3543d140049317869cc1843e16 (diff)
downloadframeworks_native-66089a33ea4efda711a3a5180f0b001bdac48dcf.zip
frameworks_native-66089a33ea4efda711a3a5180f0b001bdac48dcf.tar.gz
frameworks_native-66089a33ea4efda711a3a5180f0b001bdac48dcf.tar.bz2
Implement Matrix Palette extension.
Adds support for formerly-unimplemented methods: glCurrentPaletteMatrixOES glLoadPaletteFromModelViewMatrixOES glMatrixIndexPointerOES glWeightPointerOES The bulk of the changes are related to implementing the two PointerOES methods, which are implemented pretty much the same way as the existing Pointer methods were implemented. This change also changes the way glPointSizePointerOES is implemented, making it act like all the other Pointer methods. (Previously it was not handling non-direct-buffer arguments correctly.) Fixes bug 2308625 "Support matrix palette skinning in JSR239 and related APIs" Also updated GLLogWraper to fix two bugs in GLLogWrapper that were discovered while testing matrix palette skinning support: a) Handle trying to print the contents of null-but-enabled buffers. (It's not legal to draw with null-but-enabled buffers, and in fact some OpenGL drivers will crash if you try to render in this state, but there's no reason the GLLogWrapper should crash while trying to debug this situation. b) Don't read off the end of a vertex buffer with non-zero position when printing the entire contents of the vertex buffer. Now we only print from the current position to the end of the buffer.
Diffstat (limited to 'opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl')
-rw-r--r--opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl3
1 files changed, 3 insertions, 0 deletions
diff --git a/opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl b/opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl
index fe60c5d..76fea3f 100644
--- a/opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl
+++ b/opengl/tools/glgen/stubs/jsr239/GLImplHeader.java-impl
@@ -44,6 +44,9 @@ public class GLImpl implements GL10, GL10Ext, GL11, GL11Ext, GL11ExtensionPack {
Buffer _normalPointer = null;
Buffer _texCoordPointer = null;
Buffer _vertexPointer = null;
+ Buffer _pointSizePointerOES = null;
+ Buffer _matrixIndexPointerOES = null;
+ Buffer _weightPointerOES = null;
public GLImpl() {
}