Lines Matching refs:m_y
1059 GLint m_y; member in deqp::egl::GLES2ThreadTest::CopyTexImage2D
1071 , m_y (y) in CopyTexImage2D()
1091 …URE_2D, " << m_level << ", " << m_internalFormat << ", " << m_x << ", " << m_y << ", " << m_width … in exec()
1092 …GLU_CHECK_GLW_CALL(thread.gl, copyTexImage2D(GL_TEXTURE_2D, m_level, m_internalFormat, m_x, m_y, m… in exec()
1112 GLint m_y; member in deqp::egl::GLES2ThreadTest::CopyTexSubImage2D
1124 , m_y (y) in CopyTexSubImage2D()
1142 …_level << ", " << m_xoffset << ", " << m_yoffset << ", " << m_x << ", " << m_y << ", " << m_width … in exec()
1143 …d.gl, copyTexSubImage2D(GL_TEXTURE_2D, m_level, m_xoffset, m_yoffset, m_x, m_y, m_width, m_height)… in exec()
1840 int m_y; member in deqp::egl::GLES2ThreadTest::ReadPixels
1851 , m_y (y) in ReadPixels()
1868 std::vector<deUint8> data((m_width-m_x)*(m_height-m_y)*4); in exec()
1870 …thread.newMessage() << "Begin -- glReadPixels(" << m_x << ", " << m_y << ", " << m_width << ", " <… in exec()
1871 …GLU_CHECK_GLW_CALL(thread.gl, readPixels(m_x, m_y, m_width, m_height, m_format, m_type, &(data[0])… in exec()