Lines Matching defs:out_format
4743 bool getFormatAndTypeCompatibleWithInternalformat(GLenum internalformat, int index, GLenum* out_format,
4745 bool getFormatForInternalformat(GLenum internalformat, GLenum* out_format) const;
4804 * @param out_format Deref will be used to store compatible GLES format. Cannot be NULL.
4810 bool TestBase::getFormatAndTypeCompatibleWithInternalformat(GLenum internalformat, int index, GLenum* out_format,
4818 DE_ASSERT(out_format != NULL);
4821 if (!getFormatForInternalformat(internalformat, out_format))
5330 * @param out_format Deref will be used to store the result. Cannot be NULL.
5334 bool TestBase::getFormatForInternalformat(GLenum internalformat, GLenum* out_format) const
5336 DE_ASSERT(out_format != NULL);
5342 *out_format = GL_ALPHA;
5346 *out_format = GL_LUMINANCE_ALPHA;
5351 *out_format = GL_LUMINANCE;
5358 *out_format = GL_RED;
5367 *out_format = GL_RED_INTEGER;
5374 *out_format = GL_RG;
5383 *out_format = GL_RG_INTEGER;
5395 *out_format = GL_RGB;
5404 *out_format = GL_RGB_INTEGER;
5416 *out_format = GL_RGBA;
5426 *out_format = GL_RGBA_INTEGER;
5432 *out_format = GL_DEPTH_COMPONENT;
5437 *out_format = GL_DEPTH_STENCIL;