Searched refs:fboHeight (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A 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 314 glTexStorage2D(GL_TEXTURE_2D, 1, GL_RGBA8, fboWidth, fboHeight); 321 mFBOHeight = fboHeight;
|
H A D | RobustResourceInitTest.cpp | 261 int fboHeight, 586 int fboHeight, in checkCustomFramebufferNonZeroPixels() 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() 585 checkCustomFramebufferNonZeroPixels(int fboWidth, int fboHeight, int skipX, int skipY, int skipWidth, int skipHeight, const GLColor &skip) checkCustomFramebufferNonZeroPixels() argument 981 constexpr int fboHeight = 16; TEST_P() local [all...] |
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fRasterizationTests.cpp | 562 static const int fboHeight = 4; in iterate() local 601 // Create a framebuffer that is (fboWidth)x(fboHeight), cleared to green: in iterate() 605 gl.viewport(0, 0, fboWidth, fboHeight); in iterate() 612 gl.renderbufferStorage(GL_RENDERBUFFER, GL_RGBA8, fboWidth, fboHeight); in iterate() 657 deUint32 pixels[testAreaWidth * fboHeight] = {}; in iterate() 658 gl.readPixels(0, 0, testAreaWidth, fboHeight, GL_RGBA, GL_UNSIGNED_BYTE, pixels); in iterate() 662 for (deUint32 y = 0; y < fboHeight; ++y) in iterate()
|
Completed in 7 milliseconds