HomeSort by relevance Sort by last modified time
    Searched defs:readPixels (Results 1 - 25 of 42) sorted by null

1 2

  /external/deqp/modules/egl/
teglGLES1RenderUtil.cpp 50 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
65 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
teglGLES2RenderUtil.cpp 54 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
69 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
teglVGRenderUtil.cpp 48 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
63 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
teglColorClearCase.cpp 122 static void readPixels (EGLint api, tcu::Surface& dst)
126 case EGL_OPENGL_ES_BIT: gles1::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
127 case EGL_OPENGL_ES2_BIT: gles2::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
128 case EGL_OPENGL_ES3_BIT_KHR: gles2::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
129 case EGL_OPENVG_BIT: vg::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
203 readPixels(api, frame);
360 readPixels(api, frame);
  /external/deqp/framework/egl/
egluNativePixmap.cpp 48 void NativePixmap::readPixels (tcu::TextureLevel*)
51 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
  /external/deqp/framework/opengl/simplereference/
sglrContext.cpp 77 void Context::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
80 readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
  /external/chromium_org/third_party/skia/src/gpu/
GrRenderTarget.cpp 16 bool GrRenderTarget::readPixels(int left, int top, int width, int height,
GrTexture.cpp 92 bool GrTexture::readPixels(int left, int top, int width, int height,
GrGpu.cpp 237 bool GrGpu::readPixels(GrRenderTarget* target,
  /external/deqp/framework/opengl/
gluPixelTransfer.cpp 49 void readPixels (const RenderContext& context, int x, int y, const tcu::PixelBufferAccess& dst)
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst.getDataPtr());
  /external/skia/src/gpu/
GrRenderTarget.cpp 16 bool GrRenderTarget::readPixels(int left, int top, int width, int height,
GrTexture.cpp 92 bool GrTexture::readPixels(int left, int top, int width, int height,
GrGpu.cpp 237 bool GrGpu::readPixels(GrRenderTarget* target,
  /external/chromium_org/third_party/skia/src/image/
SkImage.cpp 54 bool SkImage::readPixels(SkBitmap* bitmap, const SkIRect* subset) const {
  /external/skia/src/image/
SkImage.cpp 54 bool SkImage::readPixels(SkBitmap* bitmap, const SkIRect* subset) const {
  /external/chromium_org/third_party/skia/src/core/
SkDevice.cpp 80 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) {
SkPixelRef.cpp 276 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
  /external/skia/src/core/
SkDevice.cpp 80 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) {
SkPixelRef.cpp 276 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
  /external/deqp/modules/gles3/functional/
es3fFboTestCase.cpp 127 void FboTestCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias)
129 FboTestUtil::readPixels(*getCurrentContext(), dst, x, y, width, height, format, scale, bias);
132 void FboTestCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
134 getCurrentContext()->readPixels(dst, x, y, width, height);
es3fFboTestUtil.cpp     [all...]
es3fFlushFinishTests.cpp 147 void readPixels (void);
271 void FlushFinishCase::readPixels (void)
276 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &tmp);
302 readPixels();
355 readPixels();
504 readPixels();
537 readPixels();
  /external/deqp/modules/gles31/functional/
es31fFboTestCase.cpp 131 void FboTestCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias)
133 FboTestUtil::readPixels(*getCurrentContext(), dst, x, y, width, height, format, scale, bias);
136 void FboTestCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
138 getCurrentContext()->readPixels(dst, x, y, width, height);
es31fFboTestUtil.cpp 439 void readPixels (sglr::Context& ctx, tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias)
447 ctx.readPixels(x, y, width, height, transferFmt.format, transferFmt.dataType, &data[0]);
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 146 void readPixels (void);
256 void FlushFinishCase::readPixels (void)
261 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &tmp);
284 readPixels();
432 readPixels();
463 readPixels();

Completed in 330 milliseconds

1 2