Home | History | Annotate | Download | only in egl

Lines Matching defs:m_format

181 							TextureImageSource	(GLenum format, GLenum type, bool useTexLevel0) : m_format(format), m_type(type), m_useTexLevel0(useTexLevel0) {}
183 GLenum getFormat (void) const { return m_format; }
190 GLenum m_format;
223 *ref = Texture2D(glu::mapGLTransferFormat(m_format, m_type), IMAGE_WIDTH, IMAGE_HEIGHT);
234 GLU_CHECK_GLW_CALL(gl, texImage2D(imgTarget, 0, m_format, IMAGE_WIDTH, IMAGE_HEIGHT,
235 0, m_format, m_type, ref->getLevel(0).getDataPtr()));
256 GLU_CHECK_CALL_ERROR(gl.texImage2D(GL_TEXTURE_2D, 0, m_format, IMAGE_WIDTH, IMAGE_HEIGHT, 0, m_format, m_type, DE_NULL),
288 GLU_CHECK_GLW_CALL(gl, texImage2D(faces[faceNdx], 0, m_format, IMAGE_WIDTH, IMAGE_HEIGHT, 0, m_format, m_type, DE_NULL));
304 RenderbufferImageSource (GLenum format) : m_format(format) {}
308 GLenum getFormat (void) const { return m_format; }
314 GLenum m_format;
448 GLU_CHECK_CALL_ERROR(gl.renderbufferStorage(GL_RENDERBUFFER, m_format, 64, 64), gl.getError());
453 const TextureFormat texFormat = glu::mapGLInternalFormat(m_format);
459 switch (m_format)
489 UnsupportedImageSource (const string& message, GLenum format) : m_message(message), m_format(format) {}
493 GLenum getFormat (void) const { return m_format; }
497 GLenum m_format;