Searched defs:readPixels (Results 1 - 25 of 37) sorted by relevance

12

/external/deqp/modules/egl/
H A DteglGLES1RenderUtil.cpp50 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) function in namespace:deqp::egl::gles1
70 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
H A DteglGLES2RenderUtil.cpp44 void readPixels (const glw::Functions& gl, tcu::Surface& dst, int x, int y, int width, int height) function in namespace:deqp::egl::gles2
47 gl.readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
H A DteglVGRenderUtil.cpp48 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) function in namespace:deqp::egl::vg
68 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
H A DteglColorClearCase.cpp136 static void readPixels (EGLint api, const ApiFunctions& func, tcu::Surface& dst) function in namespace:deqp::egl
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);
406 readPixels(api, funcs, frame);
H A DteglPreservingSwapTests.cpp324 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl::__anon4340
326 gl.readPixels(0, 0, screen->getWidth(), screen->getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen->getAccess().getDataPtr());
471 readPixels(m_gl, &preSwapFramebuffer);
482 readPixels(m_gl, &postSwapFramebuffer);
H A DteglBufferAgeTests.cpp198 void readPixels (const glw::Functions& gl, tcu::Surface* screen);
575 readPixels(m_gl, &currentBuffer);
596 readPixels(m_gl, &currentBuffer);
704 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl
706 gl.readPixels(0, 0, screen->getWidth(), screen->getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen->getAccess().getDataPtr());
H A DteglPartialUpdateTests.cpp186 void readPixels (const glw::Functions& gl, tcu::Surface* screen);
574 readPixels(m_gl, &currentBuffer);
648 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl
650 gl.readPixels(0, 0, screen->getWidth(), screen->getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen->getAccess().getDataPtr());
708 // readPixels(m_gl, &currentBuffer);
718 readPixels(m_gl, &currentBuffer);
769 // readPixels(m_gl, &currentBuffer);
779 readPixels(m_gl, &currentBuffer);
H A DteglWideColorTests.cpp546 void readPixels (const glw::Functions& gl, float* dataPtr);
547 void readPixels (const glw::Functions& gl, deUint32* dataPtr);
548 void readPixels (const glw::Functions& gl, deUint8* dataPtr);
668 void WideColorSurfaceTest::readPixels (const glw::Functions& gl, float* dataPtr) function in class:deqp::egl::__anon4356::WideColorSurfaceTest
670 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_FLOAT, dataPtr);
674 void WideColorSurfaceTest::readPixels (const glw::Functions& gl, deUint32 *dataPtr) function in class:deqp::egl::__anon4356::WideColorSurfaceTest
676 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_INT_2_10_10_10_REV, dataPtr);
680 void WideColorSurfaceTest::readPixels (const glw::Functions& gl, deUint8 *dataPtr) function in class:deqp::egl::__anon4356::WideColorSurfaceTest
682 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, dataPtr);
904 readPixels(m_g
[all...]
/external/deqp/framework/egl/
H A DegluNativePixmap.cpp50 void NativePixmap::readPixels (tcu::TextureLevel*) function in class:eglu::NativePixmap
53 throw tcu::NotSupportedError("eglu::NativePixmap doesn't support readPixels", DE_NULL, __FILE__, __LINE__);
/external/deqp/framework/opengl/simplereference/
H A DsglrContext.cpp77 void Context::readPixels (tcu::Surface& dst, int x, int y, int width, int height) function in class:sglr::Context
80 readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
/external/deqp/framework/opengl/
H A DgluPixelTransfer.cpp49 void readPixels (const RenderContext& context, int x, int y, const tcu::PixelBufferAccess& dst) function in namespace:glu
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst.getDataPtr());
/external/skia/src/gpu/
H A DGrSurfaceContext.cpp41 bool GrSurfaceContext::readPixels(const SkImageInfo& dstInfo, void* dstBuffer, function in class:GrSurfaceContext
46 GR_AUDIT_TRAIL_AUTO_FRAME(fAuditTrail, "GrSurfaceContext::readPixels");
H A DGrGpu.cpp323 bool GrGpu::readPixels(GrSurface* surface, function in class:GrGpu
/external/deqp/modules/gles3/functional/
H A Des3fFboTestCase.cpp127 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) function in class:deqp::gles3::Functional::FboTestCase
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) function in class:deqp::gles3::Functional::FboTestCase
134 getCurrentContext()->readPixels(dst, x, y, width, height);
H A Des3fFboTestUtil.cpp891 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) function in namespace:deqp::gles3::Functional::FboTestUtil
899 ctx.readPixels(x, y, width, height, transferFmt.format, transferFmt.dataType, &data[0]);
/external/deqp/modules/gles31/functional/
H A Des31fFboTestCase.cpp131 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) function in class:deqp::gles31::Functional::FboTestCase
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) function in class:deqp::gles31::Functional::FboTestCase
138 getCurrentContext()->readPixels(dst, x, y, width, height);
H A Des31fFboTestUtil.cpp439 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) function in namespace:deqp::gles31::Functional::FboTestUtil
447 ctx.readPixels(x, y, width, height, transferFmt.format, transferFmt.dataType, &data[0]);
H A Des31fShaderHelperInvocationTests.cpp207 void readPixels (int x, int y, const tcu::PixelBufferAccess& dst);
267 void FboHelper::readPixels (int x, int y, const tcu::PixelBufferAccess& dst) function in class:deqp::gles31::Functional::__anon4861::FboHelper
280 glu::readPixels(m_renderCtx, x, y, dst);
439 m_fbo->readPixels(0, 0, result.getAccess());
638 m_fbo->readPixels(0, 0, result.getAccess());
/external/skia/include/core/
H A DSkPixmap.h178 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
180 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const { function in class:SkPixmap
181 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0);
183 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, int srcX, function in class:SkPixmap
185 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY,
188 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const { function in class:SkPixmap
189 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);
191 bool readPixels(const SkPixmap& dst) const { function in class:SkPixmap
192 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), 0, 0);
H A DSkBitmap.h614 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
616 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, function in class:SkBitmap
618 return this->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY,
621 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const;
622 bool readPixels(const SkPixmap& dst) const { function in class:SkBitmap
623 return this->readPixels(dst, 0, 0);
629 * This is logically the same as creating a bitmap around src, and calling readPixels on it
/external/skia/src/core/
H A DSkPixmap.cpp75 bool SkPixmap::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, int x, int y, function in class:SkPixmap
230 return this->readPixels(dst);
H A DSkBitmap.cpp507 bool SkBitmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB, function in class:SkBitmap
513 return src.readPixels(requestedDstInfo, dstPixels, dstRB, x, y, behavior);
516 bool SkBitmap::readPixels(const SkPixmap& dst, int srcX, int srcY) const { function in class:SkBitmap
517 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);
/external/skia/src/image/
H A DSkSurface.cpp173 bool SkSurface::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, function in class:SkSurface
175 return this->getCanvas()->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY);
H A DSkImage.cpp53 bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, function in class:SkImage
60 return this->readPixels(dst, 0, 0, chint);
216 bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const { function in class:SkImage
217 return this->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), srcX, srcY, chint);
242 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), 0, 0)) {
442 if (!src->readPixels(pm, 0, 0, SkImage::kDisallow_CachingHint)) {
/external/deqp/modules/gles2/functional/
H A Des2fFlushFinishTests.cpp147 void readPixels (void);
257 void FlushFinishCase::readPixels (void) function in class:deqp::gles2::Functional::__anon4388::FlushFinishCase
262 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &tmp);
285 readPixels();
432 readPixels();
463 readPixels();

Completed in 540 milliseconds

12