/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | RobustResourceInitTest.cpp | 260 int fboHeight, 496 int fboHeight, in checkCustomFramebufferNonZeroPixels() argument 503 std::vector<GLColor> data(fboWidth * fboHeight); in checkCustomFramebufferNonZeroPixels() 504 glReadPixels(0, 0, fboWidth, fboHeight, GL_RGBA, GL_UNSIGNED_BYTE, data.data()); in checkCustomFramebufferNonZeroPixels() 507 for (int y = 0; y < fboHeight; ++y) in checkCustomFramebufferNonZeroPixels() 766 constexpr int fboHeight = 16; in TEST_P() local 767 glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA4, fboWidth, fboHeight); in TEST_P() 774 checkNonZeroPixels(&tex, 0, 0, fboWidth, fboHeight, GLColor::red); in TEST_P() 798 constexpr int fboHeight = 16; in TEST_P() local 799 glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA4, fboWidth, fboHeight); in TEST_P() [all …]
|
D | ReadPixelsTest.cpp | 77 void Reset(GLuint bufferSize, GLuint fboWidth, GLuint fboHeight) in Reset() argument 86 glTexStorage2D(GL_TEXTURE_2D, 1, GL_RGBA8, fboWidth, fboHeight); in Reset()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | ReadPixelsTest.cpp | 78 virtual void Reset(GLuint bufferSize, GLuint fboWidth, GLuint fboHeight) in Reset() argument 89 glTexStorage2DEXT(GL_TEXTURE_2D, 1, GL_RGBA8, fboWidth, fboHeight); in Reset() 91 mFBOHeight = fboHeight; in Reset() 305 void Reset(GLuint bufferSize, GLuint fboWidth, GLuint fboHeight) override in Reset() argument 314 glTexStorage2D(GL_TEXTURE_2D, 1, GL_RGBA8, fboWidth, fboHeight); in Reset() 321 mFBOHeight = fboHeight; in Reset()
|
D | RobustResourceInitTest.cpp | 261 int fboHeight, 586 int fboHeight, in checkCustomFramebufferNonZeroPixels() argument 593 std::vector<GLColor> data(fboWidth * fboHeight); in checkCustomFramebufferNonZeroPixels() 594 glReadPixels(0, 0, fboWidth, fboHeight, GL_RGBA, GL_UNSIGNED_BYTE, data.data()); in checkCustomFramebufferNonZeroPixels() 597 for (int y = 0; y < fboHeight; ++y) in checkCustomFramebufferNonZeroPixels() 897 constexpr int fboHeight = 16; in TEST_P() local 898 glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA4, fboWidth, fboHeight); in TEST_P() 905 checkNonZeroPixels(&tex, 0, 0, fboWidth, fboHeight, GLColor::red); in TEST_P() 929 constexpr int fboHeight = 16; in TEST_P() local 930 glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA4, fboWidth, fboHeight); in TEST_P() [all …]
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fRasterizationTests.cpp | 561 static const int fboHeight = 4; in iterate() local 604 gl.viewport(0, 0, fboWidth, fboHeight); in iterate() 611 gl.renderbufferStorage(GL_RENDERBUFFER, GL_RGBA8, fboWidth, fboHeight); in iterate() 656 deUint32 pixels[testAreaWidth * fboHeight] = {}; in iterate() 657 gl.readPixels(0, 0, testAreaWidth, fboHeight, GL_RGBA, GL_UNSIGNED_BYTE, pixels); in iterate() 661 for (deUint32 y = 0; y < fboHeight; ++y) in iterate()
|