commit | edbf3b6af777b721cd2a1ef461947e51e88241e1 | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:31:44 2009 -0800 |
committer | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:31:44 2009 -0800 |
tree | f09427b843b192cccf8c3b5328cb81dddf6489fa | |
parent | d5193d9394c5e58176d7bcdf50ef017f8a3b9e1e [diff] [blame] |
auto import from //depot/cupcake/@135843
diff --git a/opengl/tools/glgen/src/CodeEmitter.java b/opengl/tools/glgen/src/CodeEmitter.java new file mode 100644 index 0000000..3e9b90a --- /dev/null +++ b/opengl/tools/glgen/src/CodeEmitter.java
@@ -0,0 +1,8 @@ + +public interface CodeEmitter { + + void setVersion(int version, boolean ext, boolean pack); + void emitCode(CFunc cfunc, String original); + void addNativeRegistration(String fname); + void emitNativeRegistration(); +}