diff options
author | Sven Gothel <[email protected]> | 2012-02-23 22:35:27 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-23 22:35:27 +0100 |
commit | 429c20d2f4335ddc5409dcbfc183336dc8d3155f (patch) | |
tree | 4350e498bc3991f11d678ffa875929a06d9139fa /make/config/jogl/gl-impl-CustomJavaCode-gles2.java | |
parent | 852aefc9840030ee6581c5470b9f34da47481589 (diff) |
MemoryObject: Use proper generics style
Diffstat (limited to 'make/config/jogl/gl-impl-CustomJavaCode-gles2.java')
-rw-r--r-- | make/config/jogl/gl-impl-CustomJavaCode-gles2.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/config/jogl/gl-impl-CustomJavaCode-gles2.java b/make/config/jogl/gl-impl-CustomJavaCode-gles2.java index 195124d79..ea6544d29 100644 --- a/make/config/jogl/gl-impl-CustomJavaCode-gles2.java +++ b/make/config/jogl/gl-impl-CustomJavaCode-gles2.java @@ -207,7 +207,7 @@ private boolean checkPackPBOEnabled(boolean throwException) { return false; } -private HashMap/*<MemoryObject>*/ arbMemCache = new HashMap(); +private HashMap<MemoryObject, MemoryObject> arbMemCache = new HashMap<MemoryObject, MemoryObject>(); /** Entry point to C language function: <br> <code> LPVOID glMapBuffer(GLenum target, GLenum access); </code> */ public java.nio.ByteBuffer glMapBuffer(int target, int access) { |