Home
last modified time | relevance | path

Searched refs:textures (Results 1 – 10 of 10) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DLabelMaker.java82 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()
DSpriteTextRenderer.java78 int[] textures = new int[1]; in onSurfaceCreated() local
79 gl.glGenTextures(1, textures, 0); in onSurfaceCreated()
81 mTextureID = textures[0]; in onSurfaceCreated()
DMatrixTrackingGL.java176 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/
DStaticTriangleRenderer.java99 int[] textures = new int[1]; in onSurfaceCreated() local
100 glGenTextures(1, textures, 0); in onSurfaceCreated()
102 mTextureID = textures[0]; in onSurfaceCreated()
DTriangleRenderer.java71 int[] textures = new int[1]; in onSurfaceCreated() local
72 gl.glGenTextures(1, textures, 0); in onSurfaceCreated()
74 mTextureID = textures[0]; in onSurfaceCreated()
DGLES20TriangleRenderer.java121 int[] textures = new int[1]; in onSurfaceCreated() local
122 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated()
124 mTextureID = textures[0]; in onSurfaceCreated()
DFrameBufferObjectActivity.java176 int[] textures = new int[1]; in createTargetTexture() local
177 gl.glGenTextures(1, textures, 0); in createTargetTexture()
178 texture = textures[0]; in createTargetTexture()
DMatrixPaletteRenderer.java259 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.jd9 These APIs let you apply effects to image frames represented as OpenGL ES 2.0 textures.
/development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
DGLES20TriangleRenderer.java119 int[] textures = new int[1]; in onSurfaceCreated() local
120 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated()
122 mTextureID = textures[0]; in onSurfaceCreated()