HomeSort by relevance Sort by last modified time
    Searched refs:glBlitFramebuffer (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /external/deqp/modules/gles31/functional/
es31fNegativeBufferApiTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fNegativeBufferApiTests.cpp     [all...]
es3fFramebufferBlitTests.cpp 139 glBlitFramebuffer(m_srcRect.x(), m_srcRect.y(), m_srcRect.z(), m_srcRect.w(), m_dstRect.x(), m_dstRect.y(), m_dstRect.z(), m_dstRect.w(), GL_COLOR_BUFFER_BIT, m_filter);
417 glBlitFramebuffer(0, 0, m_size.x(), m_size.y(), 0, 0, m_size.x(), m_size.y(), GL_COLOR_BUFFER_BIT, GL_NEAREST);
573 glBlitFramebuffer(m_srcRect.x(), m_srcRect.y(), m_srcRect.z(), m_srcRect.w(), m_dstRect.x(), m_dstRect.y(), m_dstRect.z(), m_dstRect.w(), m_copyBuffers, GL_NEAREST);
668 glBlitFramebuffer(0, 0, getWidth(), getHeight(), 0, 0, texW, texH, GL_COLOR_BUFFER_BIT, m_filter);
677 glBlitFramebuffer(0, 0, texW, texH, getWidth()/2, 0, getWidth(), getHeight(), GL_COLOR_BUFFER_BIT, m_filter);
    [all...]
es3fFboMultisampleTests.cpp 171 // Resolve using glBlitFramebuffer().
173 glBlitFramebuffer(0, 0, m_size.x(), m_size.y(), 0, 0, m_size.x(), m_size.y(), GL_COLOR_BUFFER_BIT | (depth ? GL_DEPTH_BUFFER_BIT : 0) | (stencil ? GL_STENCIL_BUFFER_BIT : 0), GL_NEAREST);
es3fFboColorbufferTests.cpp 944 glBlitFramebuffer(0, 0, cellSize, cellSize, cellX*cellSize, cellY*cellSize, (cellX+1)*cellSize, (cellY+1)*cellSize, GL_COLOR_BUFFER_BIT, GL_NEAREST);
    [all...]
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 86 public native void glBlitFramebuffer(int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, int mask, int filter);
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 70 public native void glBlitFramebuffer(int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, int mask, int filter);
  /external/deqp/framework/egl/
egluStaticES30Library.inl 25 { "glBlitFramebuffer", (deFunctionPtr)glBlitFramebuffer },
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidGL30.java 231 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
233 GLES30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gl3stub.c 45 FIND_PROC(glBlitFramebuffer);
151 !glBlitFramebuffer ||
263 GL_APICALL void (* GL_APIENTRY glBlitFramebuffer) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
gl3stub.h 408 extern GL_APICALL void (* GL_APIENTRY glBlitFramebuffer) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
    [all...]
  /development/ndk/sources/android/ndk_helper/
gl3stub.c 46 FIND_PROC( glBlitFramebuffer );
136 || !glUniformMatrix4x3fv || !glBlitFramebuffer
268 GL_APICALL void (* GL_APIENTRY glBlitFramebuffer)( GLint srcX0,
gl3stub.h 418 extern GL_APICALL void (* GL_APIENTRY glBlitFramebuffer) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
FramebufferTest.java 49 * Tests very basic glBlitFramebuffer() features by copying from one offscreen framebuffer
87 GLES30.glBlitFramebuffer(0, 0, WIDTH, HEIGHT, 0, 0, WIDTH, HEIGHT,
89 checkGlError("glBlitFramebuffer");
  /external/deqp/framework/opengl/simplereference/
sglrContextWrapper.cpp 359 void ContextWrapper::glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, deUint32 filter)
sglrContextWrapper.hpp 217 void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, deUint32 filter);
  /external/deqp/framework/opengl/wrapper/
glwInitES30Direct.inl 25 gl->blitFramebuffer = &glBlitFramebuffer;
glwInitES31Direct.inl 29 gl->blitFramebuffer = &glBlitFramebuffer;
glwInitES32Direct.inl 34 gl->blitFramebuffer = &glBlitFramebuffer;
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGL30.java 217 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
219 GL30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3GL30.java 219 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
221 GL30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 29 void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter )
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
GL30.java 599 // C function void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint
602 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/profiling/
GL30Profiler.java 1410 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
1413 gl30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
    [all...]
  /frameworks/base/libs/hwui/debug/
unwrap_gles.h 78 #undef glBlitFramebuffer

Completed in 514 milliseconds

1 2 3 4 5