Searched defs:readPixels (Results 1 - 25 of 38) 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::__anon4249
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);
571 readPixels(m_gl, &currentBuffer);
592 readPixels(m_gl, &currentBuffer);
700 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl
702 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);
570 readPixels(m_gl, &currentBuffer);
644 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl
646 gl.readPixels(0, 0, screen->getWidth(), screen->getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen->getAccess().getDataPtr());
704 // readPixels(m_gl, &currentBuffer);
714 readPixels(m_gl, &currentBuffer);
765 // readPixels(m_gl, &currentBuffer);
775 readPixels(m_gl, &currentBuffer);
/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/include/gpu/
H A DGrSurface.h86 bool readPixels(SkColorSpace* srcColorSpace,
109 bool readPixels(int left, int top, int width, int height, function in class:GrSurface
114 return this->readPixels(nullptr, left, top, width, height, config, nullptr, buffer,
/external/skia/src/gpu/
H A DGrSurfaceContext.h76 bool readPixels(const SkImageInfo& dstInfo, void* dstBuffer, size_t dstRowBytes, function in class:GrSurfaceContext
H A DGrSurface.cpp154 bool GrSurface::readPixels(SkColorSpace* srcColorSpace, int left, int top, int width, int height, function in class:GrSurface
H A DGrGpu.cpp369 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::__anon4757::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.h185 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
187 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const { function in class:SkPixmap
188 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0);
190 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const { function in class:SkPixmap
191 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);
193 bool readPixels(const SkPixmap& dst) const { function in class:SkPixmap
194 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), 0, 0);
H A DSkBitmap.h647 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
649 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const;
650 bool readPixels(const SkPixmap& dst) const { function in class:SkBitmap
651 return this->readPixels(dst, 0, 0);
657 * This is logically the same as creating a bitmap around src, and calling readPixels on it
/external/skia/src/core/
H A DSkPixmap.cpp87 bool SkPixmap::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, int x, int y) function in class:SkPixmap
242 return this->readPixels(dst);
/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.cpp55 bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, function in class:SkImage
62 return this->readPixels(dst, 0, 0, chint);
212 bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const { function in class:SkImage
213 return this->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), srcX, srcY, chint);
243 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), 0, 0)) {
438 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::__anon4296::FlushFinishCase
262 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &tmp);
285 readPixels();
432 readPixels();
463 readPixels();

Completed in 432 milliseconds

12