/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | LabelMaker.java | 82 int[] textures = new int[1]; in initialize() local 83 gl.glGenTextures(1, textures, 0); in initialize() 84 mTextureID = textures[0]; in initialize() 108 int[] textures = new int[1]; in shutdown() local 109 textures[0] = mTextureID; in shutdown() 110 gl.glDeleteTextures(1, textures, 0); in shutdown()
|
D | SpriteTextRenderer.java | 78 int[] textures = new int[1]; in onSurfaceCreated() local 79 gl.glGenTextures(1, textures, 0); in onSurfaceCreated() 81 mTextureID = textures[0]; in onSurfaceCreated()
|
D | MatrixTrackingGL.java | 176 public void glDeleteTextures(int n, int[] textures, int offset) { in glDeleteTextures() argument 177 mgl.glDeleteTextures(n, textures, offset); in glDeleteTextures() 180 public void glDeleteTextures(int n, IntBuffer textures) { in glDeleteTextures() argument 181 mgl.glDeleteTextures(n, textures); in glDeleteTextures() 274 public void glGenTextures(int n, int[] textures, int offset) { in glGenTextures() argument 275 mgl.glGenTextures(n, textures, offset); in glGenTextures() 278 public void glGenTextures(int n, IntBuffer textures) { in glGenTextures() argument 279 mgl.glGenTextures(n, textures); in glGenTextures()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | StaticTriangleRenderer.java | 99 int[] textures = new int[1]; in onSurfaceCreated() local 100 glGenTextures(1, textures, 0); in onSurfaceCreated() 102 mTextureID = textures[0]; in onSurfaceCreated()
|
D | TriangleRenderer.java | 71 int[] textures = new int[1]; in onSurfaceCreated() local 72 gl.glGenTextures(1, textures, 0); in onSurfaceCreated() 74 mTextureID = textures[0]; in onSurfaceCreated()
|
D | GLES20TriangleRenderer.java | 121 int[] textures = new int[1]; in onSurfaceCreated() local 122 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 124 mTextureID = textures[0]; in onSurfaceCreated()
|
D | FrameBufferObjectActivity.java | 176 int[] textures = new int[1]; in createTargetTexture() local 177 gl.glGenTextures(1, textures, 0); in createTargetTexture() 178 texture = textures[0]; in createTargetTexture()
|
D | MatrixPaletteRenderer.java | 259 int[] textures = new int[1]; in onSurfaceCreated() local 260 gl.glGenTextures(1, textures, 0); in onSurfaceCreated() 262 mTextureID = textures[0]; in onSurfaceCreated()
|
/development/samples/browseable/MediaEffects/ |
D | _index.jd | 9 These APIs let you apply effects to image frames represented as OpenGL ES 2.0 textures.
|
/development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/ |
D | GLES20TriangleRenderer.java | 119 int[] textures = new int[1]; in onSurfaceCreated() local 120 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 122 mTextureID = textures[0]; in onSurfaceCreated()
|