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

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GLToolbox.java 49 public static void deleteFbo(int fboId) {
50 int[] fbos = new int[] { fboId };
70 public static void readFbo(int fboId, ByteBuffer pixels, int width, int height) {
71 GLES20.glBindFramebuffer(GLES20.GL_FRAMEBUFFER, fboId);
82 public static int attachedTexture(int fboId) {
93 public static void attachTextureToFbo(int texId, int fboId) {
94 GLES20.glBindFramebuffer(GLES20.GL_FRAMEBUFFER, fboId);
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
GLUtils.h 44 static bool createFBO(GLuint& fboId, GLuint& rboId, GLuint& cboId, int width, int height);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java 136 private void initWithFbo(int fboId) {
139 if (!nativeAllocateWithFbo(mGLEnvironment, fboId, width, height)) {
372 int fboId,
  /external/deqp/modules/gles2/functional/
es2fPolygonOffsetTests.cpp 300 GLuint fboId = 0;
313 gl.genFramebuffers(1, &fboId);
314 gl.bindFramebuffer(GL_FRAMEBUFFER, fboId);
324 gl.deleteFramebuffers(1, &fboId);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPolygonOffsetTests.cpp 303 GLuint fboId = 0;
316 gl.genFramebuffers(1, &fboId);
317 gl.bindFramebuffer(GL_FRAMEBUFFER, fboId);
327 gl.deleteFramebuffers(1, &fboId);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureMultisampleTests.cpp 347 GLuint fboID = 0;
363 gl.genFramebuffers (1, &fboID);
364 gl.bindFramebuffer (GL_FRAMEBUFFER, fboID);
405 gl.deleteFramebuffers (1, &fboID);
    [all...]

Completed in 303 milliseconds