HomeSort by relevance Sort by last modified time
    Searched defs:readPixels (Results 26 - 39 of 39) sorted by null

12

  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 324 void readPixels (const glw::Functions& gl, tcu::Surface* screen)
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);
teglRenderTests.cpp 593 gl.readPixels(0, 0, dst.getWidth(), dst.getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
629 static void readPixels (const glw::Functions& gl, EGLint api, tcu::Surface& dst)
782 readPixels(m_gl, api, frame);
1007 readPixels(m_gl, api, frame);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderHelperInvocationTests.cpp 207 void readPixels (int x, int y, const tcu::PixelBufferAccess& dst);
267 void FboHelper::readPixels (int x, int y, const tcu::PixelBufferAccess& dst)
280 glu::readPixels(m_renderCtx, x, y, dst);
439 m_fbo->readPixels(0, 0, result.getAccess());
638 m_fbo->readPixels(0, 0, result.getAccess());
es31fTextureSpecificationTests.cpp 118 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
197 readPixels(dst, 0, 0, width, height);
200 void TextureSpecCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfRgbaFile.cpp 818 void readPixels (int scanLine1, int scanLine2);
822 void readPixels (int scanLine);
950 RgbaInputFile::FromYca::readPixels (int scanLine1, int scanLine2)
958 readPixels (y);
963 readPixels (y);
969 RgbaInputFile::FromYca::readPixels (int scanLine)
1125 _inputFile.readPixels (y);
1292 RgbaInputFile::readPixels (int scanLine1, int scanLine2)
1297 _fromYca->readPixels (scanLine1, scanLine2);
1301 _inputFile->readPixels (scanLine1, scanLine2)
    [all...]
ImfScanLineInputFile.cpp 788 // Initialize the slice table for readPixels().
803 // will be skipped during readPixels().
872 ScanLineInputFile::readPixels (int scanLine1, int scanLine2)
950 // that is executing this call to ScanLineInputFile::readPixels().
985 ScanLineInputFile::readPixels (int scanLine)
987 readPixels (scanLine, scanLine);
  /external/deqp/framework/opengl/simplereference/
sglrGLContext.cpp 898 void GLContext::readPixels (int x, int y, int width, int height, deUint32 format, deUint32 type, void* data)
909 m_context.getFunctions().readPixels(x+offset.x(), y+offset.y(), width, height, format, type, data);
  /external/deqp/modules/gles2/functional/
es2fTextureSpecificationTests.cpp 380 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
576 readPixels(dst, 0, 0, width, height);
603 readPixels(dst, 0, 0, width, height);
606 void TextureSpecCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 823 bool SkBitmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB,
829 return src.pixmap().readPixels(requestedDstInfo, dstPixels, dstRB, x, y);
845 if (fPixelRef->readPixels(&tmpSrc, dstColorType, &subset)) {
847 // FIXME: The only meaningful implementation of readPixels
895 if (!srcPM.readPixels(dstUnlocker.pixmap())) {
    [all...]
SkCanvas.cpp 842 bool SkCanvas::readPixels(SkBitmap* bitmap, int x, int y) {
858 if (this->readPixels(pm.info(), pm.writable_addr(), pm.rowBytes(), x, y)) {
869 bool SkCanvas::readPixels(const SkIRect& srcRect, SkBitmap* bitmap) {
881 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), r.x(), r.y())) {
888 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) {
901 return device->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp 164 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
240 readPixels(dst, 0, 0, width, height);
243 void TextureSpecCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp     [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtGL20.java 428 gl.readPixels(x, y, width, height, format, type, buffer);
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/google/gwt/webgl/client/
WebGLRenderingContext.java 829 public final native void readPixels (int x, int y, int width, int height, int format, int type, ArrayBufferView pixels) /*-{
830 this.readPixels(x, y, width, height, format, type, pixels);
    [all...]

Completed in 562 milliseconds

12