Searched defs:readPixels (Results 1 - 25 of 35) 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);
405 readPixels(api, funcs, frame);
H A DteglPreservingSwapTests.cpp324 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl::__anon3969
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);
561 readPixels(m_gl, &currentBuffer);
635 void readPixels (const glw::Functions& gl, tcu::Surface* screen) function in namespace:deqp::egl
637 gl.readPixels(0, 0, screen->getWidth(), screen->getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, screen->getAccess().getDataPtr());
695 // readPixels(m_gl, &currentBuffer);
705 readPixels(m_gl, &currentBuffer);
756 // readPixels(m_gl, &currentBuffer);
766 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/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]);
/external/skia/include/core/
H A DSkPixmap.h151 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes,
153 bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const { function in class:SkPixmap
154 return this->readPixels(dstInfo, dstPixels, dstRowBytes, 0, 0);
156 bool readPixels(const SkPixmap& dst, int srcX, int srcY) const { function in class:SkPixmap
157 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), srcX, srcY);
159 bool readPixels(const SkPixmap& dst) const { function in class:SkPixmap
160 return this->readPixels(dst.info(), dst.writable_addr(), dst.rowBytes(), 0, 0);
/external/skia/src/core/
H A DSkPixelRef.cpp310 bool SkPixelRef::readPixels(SkBitmap* dst, SkColorType ct, const SkIRect* subset) { function in class:SkPixelRef
H A DSkPixmap.cpp76 bool SkPixmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB, function in class:SkPixmap
259 return this->readPixels(dst);
H A DSkDevice.cpp222 bool SkBaseDevice::readPixels(const SkImageInfo& info, void* dstP, size_t rowBytes, int x, int y) { function in class:SkBaseDevice
/external/skia/src/gpu/
H A DGrSurface.cpp107 bool GrSurface::readPixels(int left, int top, int width, int height, function in class:GrSurface
137 bool result = this->readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,
H A DGrGpu.cpp331 bool GrGpu::readPixels(GrSurface* surface, function in class:GrGpu
/external/skia/src/image/
H A DSkSurface.cpp189 bool SkSurface::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, function in class:SkSurface
191 return this->getCanvas()->readPixels(dstInfo, dstPixels, dstRowBytes, srcX, srcY);
H A DSkImage.cpp51 bool SkImage::readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, function in class:SkImage
62 return this->readPixels(dst, 0, 0, chint);
257 bool SkImage::readPixels(const SkPixmap& pmap, int srcX, int srcY, CachingHint chint) const { function in class:SkImage
258 return this->readPixels(pmap.info(), pmap.writable_addr(), pmap.rowBytes(), srcX, srcY, chint);
319 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), 0, 0)) {
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfAcesFile.cpp502 AcesInputFile::readPixels (int scanLine1, int scanLine2) function in class:Imf::AcesInputFile
508 _data->rgbaFile->readPixels (scanLine1, scanLine2);
543 AcesInputFile::readPixels (int scanLine) function in class:Imf::AcesInputFile
545 readPixels (scanLine, scanLine);
H A DImfInputFile.cpp68 // needed between calls to readPixels
565 InputFile::readPixels (int scanLine1, int scanLine2) function in class:Imf::InputFile
574 _data->sFile->readPixels (scanLine1, scanLine2);
580 InputFile::readPixels (int scanLine) function in class:Imf::InputFile
582 readPixels (scanLine, scanLine);
/external/deqp/modules/gles2/functional/
H A Des2fFlushFinishTests.cpp147 void readPixels (void);
257 void FlushFinishCase::readPixels (void) function in class:deqp::gles2::Functional::__anon4014::FlushFinishCase
262 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, &tmp);
285 readPixels();
432 readPixels();
463 readPixels();

Completed in 492 milliseconds

12