summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/glGetString.java-impl
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:45 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:45 -0800
commitd83a98f4ce9cfa908f5c54bbd70f03eec07e7553 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /opengl/tools/glgen/stubs/glGetString.java-impl
parent076357b8567458d4b6dfdcf839ef751634cd2bfb (diff)
downloadframeworks_base-d83a98f4ce9cfa908f5c54bbd70f03eec07e7553.tar.gz
frameworks_base-d83a98f4ce9cfa908f5c54bbd70f03eec07e7553.tar.bz2
frameworks_base-d83a98f4ce9cfa908f5c54bbd70f03eec07e7553.zip
auto import from //depot/cupcake/@135843
Diffstat (limited to 'opengl/tools/glgen/stubs/glGetString.java-impl')
-rw-r--r--opengl/tools/glgen/stubs/glGetString.java-impl16
1 files changed, 0 insertions, 16 deletions
diff --git a/opengl/tools/glgen/stubs/glGetString.java-impl b/opengl/tools/glgen/stubs/glGetString.java-impl
deleted file mode 100644
index 8c7881cfd89..00000000000
--- a/opengl/tools/glgen/stubs/glGetString.java-impl
+++ /dev/null
@@ -1,16 +0,0 @@
- // C function const GLubyte * glGetString ( GLenum name )
-
- public native String _glGetString(
- int name
- );
-
- public String glGetString(
- int name
- ) {
- String returnValue;
- returnValue = _glGetString(
- name
- );
- return returnValue;
- }
-