HomeSort by relevance Sort by last modified time
    Searched defs:readPixels (Results 1 - 25 of 50) 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)
70 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
teglGLES2RenderUtil.cpp 44 void readPixels (const glw::Functions& gl, tcu::Surface& dst, int x, int y, int width, int height)
47 gl.readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
teglVGRenderUtil.cpp 48 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
68 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
teglColorClearCase.cpp 136 static void readPixels (EGLint api, const ApiFunctions& func, tcu::Surface& dst)
140 case EGL_OPENGL_ES_BIT: gles1::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
141 case EGL_OPENGL_ES2_BIT: gles2::readPixels (func.gl, dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
142 case EGL_OPENGL_ES3_BIT_KHR: gles2::readPixels (func.gl, dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
143 case EGL_OPENVG_BIT: vg::readPixels (dst, 0, 0, dst.getWidth(), dst.getHeight()); break;
236 readPixels(api, funcs, frame);
407 readPixels(api, funcs, frame);
  /external/skia/src/gpu/
GrSurfaceContext.cpp 44 bool GrSurfaceContext::readPixels(const SkImageInfo& dstInfo, void* dstBuffer,
49 GR_AUDIT_TRAIL_AUTO_FRAME(fAuditTrail, "GrSurfaceContext::readPixels");
GrGpu.cpp 212 // GrGpu::readPixels doesn't do any sRGB conversions, so we must draw if there is one.
360 bool GrGpu::readPixels(GrSurface* surface, GrSurfaceOrigin origin, int left, int top, int width,
  /external/skqp/src/gpu/
GrSurfaceContext.cpp 41 bool GrSurfaceContext::readPixels(const SkImageInfo& dstInfo, void* dstBuffer,
46 GR_AUDIT_TRAIL_AUTO_FRAME(fAuditTrail, "GrSurfaceContext::readPixels");
GrGpu.cpp 316 bool GrGpu::readPixels(GrSurface* surface, GrSurfaceOrigin origin,
  /external/deqp/framework/egl/
egluNativePixmap.cpp 50 void NativePixmap::readPixels (tcu::TextureLevel*)
53 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/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/include/core/
SkPixmap.h 549 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
574 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const {
575 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0);
604 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, int srcX,
606 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY,
632 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const {
633 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);
653 bool readPixels(const SkPixmap& dst) const {
654 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), 0, 0);
SkBitmap.h     [all...]
  /external/skqp/include/core/
SkPixmap.h 556 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
581 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const {
582 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0);
611 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, int srcX,
613 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY,
639 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const {
640 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);
660 bool readPixels(const SkPixmap& dst) const {
661 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), 0, 0);
    [all...]
SkBitmap.h     [all...]
  /external/skqp/src/image/
SkSurface.cpp 173 bool SkSurface::readPixels(const SkPixmap& pm, int srcX, int srcY) {
174 return this->getCanvas()->readPixels(pm, srcX, srcY);
177 bool SkSurface::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
179 return this->readPixels({dstInfo, dstPixels, dstRowBytes}, srcX, srcY);
182 bool SkSurface::readPixels(const SkBitmap& bitmap, int srcX, int srcY) {
184 return bitmap.peekPixels(&pm) && this->readPixels(pm, srcX, srcY);
SkImage.cpp 50 bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
57 return this->readPixels(dst, 0, 0, chint);
203 bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const {
204 return this->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), srcX, srcY, chint);
229 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), 0, 0)) {
337 if (!this->readPixels(pm, 0, 0)) {
465 if (!src->readPixels(pm, 0, 0, SkImage::kDisallow_CachingHint)) {
  /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);
  /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 445 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)
453 ctx.readPixels(x, y, width, height, transferFmt.format, transferFmt.dataType, &data[0]);
  /external/skia/src/core/
SkPixmap.cpp 78 bool SkPixmap::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, int x, int y,
246 return src.readPixels(dst);
  /external/skia/src/image/
SkImage.cpp 50 bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
57 return this->readPixels(dst, 0, 0, chint);
203 bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const {
204 return this->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), srcX, srcY, chint);
229 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), 0, 0)) {
335 if (!this->readPixels(pm, 0, 0)) {
431 if (!src->readPixels(pm, 0, 0, SkImage::kDisallow_CachingHint)) {
SkSurface.cpp 173 bool SkSurface::readPixels(const SkPixmap& pm, int srcX, int srcY) {
174 return this->getCanvas()->readPixels(pm, srcX, srcY);
177 bool SkSurface::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
179 return this->readPixels({dstInfo, dstPixels, dstRowBytes}, srcX, srcY);
182 bool SkSurface::readPixels(const SkBitmap& bitmap, int srcX, int srcY) {
184 return bitmap.peekPixels(&pm) && this->readPixels(pm, srcX, srcY);
  /external/skqp/src/core/
SkPixmap.cpp 76 bool SkPixmap::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, int x, int y,
243 return this->readPixels(dst);
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 147 void readPixels (void);
257 void FlushFinishCase::readPixels (void)
262 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &tmp);
285 readPixels();
432 readPixels();
463 readPixels();

Completed in 721 milliseconds

1 2