HomeSort by relevance Sort by last modified time
    Searched refs:colorTexture (Results 1 - 5 of 5) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
GLFrameBuffer.java 57 protected T colorTexture;
127 protected abstract void disposeColorTexture (T colorTexture);
144 colorTexture = createColorTexture();
156 gl.glBindTexture(GL20.GL_TEXTURE_2D, colorTexture.getTextureObjectHandle());
160 gl.glRenderbufferStorage(GL20.GL_RENDERBUFFER, GL20.GL_DEPTH_COMPONENT16, colorTexture.getWidth(),
161 colorTexture.getHeight());
166 gl.glRenderbufferStorage(GL20.GL_RENDERBUFFER, GL20.GL_STENCIL_INDEX8, colorTexture.getWidth(), colorTexture.getHeight());
171 colorTexture.getTextureObjectHandle(), 0);
200 gl.glRenderbufferStorage(GL20.GL_RENDERBUFFER, GL_DEPTH24_STENCIL8_OES, colorTexture.getWidth(), colorTexture.getHeight())
    [all...]
FrameBufferCubemap.java 103 protected void disposeColorTexture (Cubemap colorTexture) {
104 colorTexture.dispose();
133 colorTexture.getTextureObjectHandle(), 0);
FloatFrameBuffer.java 53 protected void disposeColorTexture (Texture colorTexture) {
54 colorTexture.dispose();
FrameBuffer.java 72 protected void disposeColorTexture (Texture colorTexture) {
73 colorTexture.dispose();
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
MultipleRenderTargetTest.java 506 private void disposeColorTexture (Texture colorTexture) {
507 colorTexture.dispose();
571 for (Texture colorTexture : colorTextures)
572 disposeColorTexture(colorTexture);

Completed in 1008 milliseconds