Searched refs:glReadPixels (Results 1 - 25 of 35) sorted by relevance

12

/external/deqp/modules/gles2/functional/
H A Des2fNegativeBufferApiTests.cpp160 ES2F_ADD_API_CASE(read_pixels, "Invalid glReadPixels() usage",
165 glReadPixels(0, 0, 1, 1, GL_LUMINANCE_ALPHA, GL_UNSIGNED_SHORT_4_4_4_4, &ubyteData[0]);
170 glReadPixels(0, 0, -1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
172 glReadPixels(0, 0, 1, -1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
174 glReadPixels(0, 0, -1, -1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
183 glReadPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
187 ES2F_ADD_API_CASE(read_pixels_format_mismatch, "Invalid glReadPixels() usage",
193 glReadPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_SHORT_5_6_5, &ushortData[0]);
195 glReadPixels(0, 0, 1, 1, GL_ALPHA, GL_UNSIGNED_SHORT_5_6_5, &ushortData[0]);
197 glReadPixels(
[all...]
H A Des2fReadPixelsTests.cpp213 GLU_CHECK_CALL(glReadPixels(0, 0, width, height, glFormat, glType, &(pixelData[0])));
/external/deqp/modules/egl/
H A DteglGLES1RenderUtil.cpp53 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
/external/deqp/modules/gles3/functional/
H A Des3fNegativeBufferApiTests.cpp170 ES3F_ADD_API_CASE(read_pixels, "Invalid glReadPixels() usage",
175 glReadPixels(0, 0, 1, 1, GL_LUMINANCE_ALPHA, GL_UNSIGNED_SHORT_4_4_4_4, &ubyteData[0]);
180 glReadPixels(0, 0, -1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
182 glReadPixels(0, 0, 1, -1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
184 glReadPixels(0, 0, -1, -1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
193 glReadPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
199 ES3F_ADD_API_CASE(read_pixels_format_mismatch, "Invalid glReadPixels() usage",
205 glReadPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_SHORT_5_6_5, &ushortData[0]);
207 glReadPixels(0, 0, 1, 1, GL_ALPHA, GL_UNSIGNED_SHORT_5_6_5, &ushortData[0]);
209 glReadPixels(
[all...]
H A Des3fPixelBufferObjectTests.cpp547 GLU_CHECK_CALL(glReadPixels(0, 0, width, height, readPixelsFormat, readPixelsType, 0));
556 GLU_CHECK_CALL(glReadPixels(0, 0, width, height, readPixelsFormat, readPixelsType, readRefrence.getLevel(0).getDataPtr()));
H A Des3fReadPixelsTests.cpp318 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0])));
/external/deqp/modules/gles31/functional/
H A Des31fNegativeBufferApiTests.cpp173 ctx.glReadPixels(0, 0, 1, 1, GL_LUMINANCE_ALPHA, GL_UNSIGNED_SHORT_4_4_4_4, &ubyteData[0]);
178 ctx.glReadPixels(0, 0, -1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
180 ctx.glReadPixels(0, 0, 1, -1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
182 ctx.glReadPixels(0, 0, -1, -1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
191 ctx.glReadPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &ubyteData[0]);
204 ctx.glReadPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_SHORT_5_6_5, &ushortData[0]);
206 ctx.glReadPixels(0, 0, 1, 1, GL_ALPHA, GL_UNSIGNED_SHORT_5_6_5, &ushortData[0]);
208 ctx.glReadPixels(0, 0, 1, 1, GL_RGB, GL_UNSIGNED_SHORT_4_4_4_4, &ushortData[0]);
210 ctx.glReadPixels(0, 0, 1, 1, GL_ALPHA, GL_UNSIGNED_SHORT_4_4_4_4, &ushortData[0]);
212 ctx.glReadPixels(
[all...]
H A Des31fTextureSpecificationTests.cpp203 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
/external/libvncserver/x11vnc/
H A Dmacosx_opengl.c144 glReadPixels((GLint) x, (GLint) yflip, (int) w, (int) h,
/external/mesa3d/docs/
H A DMESA_copy_sub_buffer.spec70 corresponds to the lower-left pixel of the window, like glReadPixels.
/external/deqp/framework/egl/
H A DegluStaticES20Library.inl98 { "glReadPixels", (deFunctionPtr)glReadPixels },
H A DegluStaticES30Library.inl168 { "glReadPixels", (deFunctionPtr)glReadPixels },
/external/deqp/framework/opengl/wrapper/
H A DglwInitES20Direct.inl98 gl->readPixels = &glReadPixels;
H A DglwInitES30Direct.inl168 gl->readPixels = &glReadPixels;
H A DglwInitES31Direct.inl228 gl->readPixels = &glReadPixels;
/external/skia/src/gpu/gl/android/
H A DGrGLCreateNativeInterface_android.cpp121 } else if (0 == strcmp("glReadPixels", name)) {
122 return (GrGLFuncPtr) glReadPixels;
/external/deqp/framework/opengl/simplereference/
H A DsglrContextWrapper.cpp374 void ContextWrapper::glReadPixels (int x, int y, int width, int height, deUint32 format, deUint32 type, void* data) function in class:sglr::ContextWrapper
H A DsglrContextWrapper.hpp142 void glReadPixels (int x, int y, int width, int height, deUint32 format, deUint32 type, void* pixels);
/external/deqp/framework/platform/null/
H A DtcuNullRenderContext.cpp503 GLW_APICALL void GLW_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels) function in namespace:tcu::null
H A DtcuNullRenderContextInitFuncs.inl445 gl->readPixels = glReadPixels;
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_context.c693 &glReadPixels,
/external/replicaisland/src/com/replica/replicaisland/
H A DGLErrorLogger.java559 public void glReadPixels(int x, int y, int width, int height, method in class:GLErrorLogger.ErrorLoggingGL
561 ((GL10)mGL).glReadPixels( x, y, width, height,
/external/robolectric/lib/main/
H A Dopengl-api-gl1.1-android-2.1_r1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/microedition/ javax/microedition/khronos/ javax/microedition/khronos/opengles/ ...
/external/mesa3d/include/GLES/
H A Dgl.h715 GL_API void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
/external/mesa3d/include/GLES2/
H A Dgl2.h566 GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels);

Completed in 945 milliseconds

12