Searched refs:internalFormat (Results 1 - 25 of 228) sorted by relevance

12345678910

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress_cpal.h33 GLenum internalFormat,
38 _mesa_cpal_compressed_size(int level, GLenum internalFormat,
42 _mesa_cpal_compressed_format_type(GLenum internalFormat, GLenum *format,
H A Dtexformat.h36 GLint internalFormat, GLenum format, GLenum type);
H A Dtexcompress_cpal.c111 _mesa_cpal_compressed_size(int level, GLenum internalFormat, argument
119 if (internalFormat < GL_PALETTE4_RGB8_OES
120 || internalFormat > GL_PALETTE8_RGB5_A1_OES) {
124 info = &formats[internalFormat - GL_PALETTE4_RGB8_OES];
125 ASSERT(info->cpal_format == internalFormat);
146 _mesa_cpal_compressed_format_type(GLenum internalFormat, GLenum *format, argument
151 if (internalFormat < GL_PALETTE4_RGB8_OES
152 || internalFormat > GL_PALETTE8_RGB5_A1_OES) {
156 info = &formats[internalFormat - GL_PALETTE4_RGB8_OES];
162 * Convert a call to glCompressedTexImage2D() where internalFormat i
166 _mesa_cpal_compressed_teximage2d(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei imageSize, const void *palette) argument
[all...]
H A Dtexformat.c50 * internalFormat parameters passed to glTexImage().
53 * \param internalFormat user's prefered internal texture format.
65 GLint internalFormat, GLenum format, GLenum type)
70 switch (internalFormat) {
208 switch (internalFormat) {
225 switch (internalFormat) {
274 switch (internalFormat) {
284 if (internalFormat == GL_YCBCR_MESA) {
294 switch (internalFormat) {
309 switch (internalFormat) {
64 _mesa_choose_tex_format(struct gl_context *ctx, GLenum target, GLint internalFormat, GLenum format, GLenum type) argument
[all...]
H A Dteximage.c73 * \param internalFormat the internal texture format token or 1, 2, 3, or 4.
82 _mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat )
84 switch (internalFormat) {
142 switch (internalFormat) {
151 switch (internalFormat) {
160 switch (internalFormat) {
171 switch (internalFormat) {
189 switch (internalFormat) {
200 switch (internalFormat) {
213 switch (internalFormat) {
1138 _mesa_init_teximage_fields(struct gl_context *ctx, struct gl_texture_image *img, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum internalFormat, gl_format format) argument
1277 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border) argument
1738 texture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border ) argument
1969 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize) argument
2325 copytexture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLint width, GLint height, GLint border ) argument
2752 override_internal_format(GLenum internalFormat, GLint width, GLint height) argument
2803 _mesa_choose_texture_format(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target, GLint level, GLenum internalFormat, GLenum format, GLenum type) argument
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
3107 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3118 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3134 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3147 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3363 copyteximage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) argument
3454 _mesa_CopyTexImage1D( GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border ) argument
3466 _mesa_CopyTexImage2D( GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) argument
3734 _mesa_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) argument
3746 _mesa_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) argument
3758 _mesa_CompressedTexImage3DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) argument
3850 get_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat) argument
4002 validate_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat) argument
4033 _mesa_TexBuffer(GLenum target, GLenum internalFormat, GLuint buffer) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexcompress_cpal.h33 GLenum internalFormat,
38 _mesa_cpal_compressed_size(int level, GLenum internalFormat,
42 _mesa_cpal_compressed_format_type(GLenum internalFormat, GLenum *format,
H A Dtexformat.h36 GLint internalFormat, GLenum format, GLenum type);
H A Dtexcompress_cpal.c111 _mesa_cpal_compressed_size(int level, GLenum internalFormat, argument
119 if (internalFormat < GL_PALETTE4_RGB8_OES
120 || internalFormat > GL_PALETTE8_RGB5_A1_OES) {
124 info = &formats[internalFormat - GL_PALETTE4_RGB8_OES];
125 ASSERT(info->cpal_format == internalFormat);
146 _mesa_cpal_compressed_format_type(GLenum internalFormat, GLenum *format, argument
151 if (internalFormat < GL_PALETTE4_RGB8_OES
152 || internalFormat > GL_PALETTE8_RGB5_A1_OES) {
156 info = &formats[internalFormat - GL_PALETTE4_RGB8_OES];
162 * Convert a call to glCompressedTexImage2D() where internalFormat i
166 _mesa_cpal_compressed_teximage2d(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei imageSize, const void *palette) argument
[all...]
H A Dtexformat.c50 * internalFormat parameters passed to glTexImage().
53 * \param internalFormat user's prefered internal texture format.
65 GLint internalFormat, GLenum format, GLenum type)
70 switch (internalFormat) {
208 switch (internalFormat) {
225 switch (internalFormat) {
274 switch (internalFormat) {
284 if (internalFormat == GL_YCBCR_MESA) {
294 switch (internalFormat) {
309 switch (internalFormat) {
64 _mesa_choose_tex_format(struct gl_context *ctx, GLenum target, GLint internalFormat, GLenum format, GLenum type) argument
[all...]
H A Dteximage.c73 * \param internalFormat the internal texture format token or 1, 2, 3, or 4.
82 _mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat )
84 switch (internalFormat) {
142 switch (internalFormat) {
151 switch (internalFormat) {
160 switch (internalFormat) {
171 switch (internalFormat) {
189 switch (internalFormat) {
200 switch (internalFormat) {
213 switch (internalFormat) {
1138 _mesa_init_teximage_fields(struct gl_context *ctx, struct gl_texture_image *img, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum internalFormat, gl_format format) argument
1277 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border) argument
1738 texture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLenum format, GLenum type, GLint width, GLint height, GLint depth, GLint border ) argument
1969 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions, GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize) argument
2325 copytexture_error_check( struct gl_context *ctx, GLuint dimensions, GLenum target, GLint level, GLint internalFormat, GLint width, GLint height, GLint border ) argument
2752 override_internal_format(GLenum internalFormat, GLint width, GLint height) argument
2803 _mesa_choose_texture_format(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target, GLint level, GLenum internalFormat, GLenum format, GLenum type) argument
2917 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims, GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei imageSize, const GLvoid *pixels) argument
3107 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3118 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3134 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3147 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels ) argument
3363 copyteximage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) argument
3454 _mesa_CopyTexImage1D( GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border ) argument
3466 _mesa_CopyTexImage2D( GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border ) argument
3734 _mesa_CompressedTexImage1DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data) argument
3746 _mesa_CompressedTexImage2DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) argument
3758 _mesa_CompressedTexImage3DARB(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) argument
3850 get_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat) argument
4002 validate_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat) argument
4033 _mesa_TexBuffer(GLenum target, GLenum internalFormat, GLuint buffer) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_format.h51 st_choose_format(struct pipe_screen *screen, GLenum internalFormat,
58 GLenum internalFormat, unsigned sample_count);
62 st_ChooseTextureFormat_renderable(struct gl_context *ctx, GLint internalFormat,
67 GLint internalFormat,
H A Dst_cb_eglimage.c107 GLenum internalFormat; local
112 internalFormat = GL_RGBA;
114 internalFormat = GL_RGB;
128 ps->width, ps->height, 1, 0, internalFormat,
/external/mesa3d/src/mesa/state_tracker/
H A Dst_format.h51 st_choose_format(struct pipe_screen *screen, GLenum internalFormat,
58 GLenum internalFormat, unsigned sample_count);
62 st_ChooseTextureFormat_renderable(struct gl_context *ctx, GLint internalFormat,
67 GLint internalFormat,
H A Dst_cb_eglimage.c107 GLenum internalFormat; local
112 internalFormat = GL_RGBA;
114 internalFormat = GL_RGB;
128 ps->width, ps->height, 1, 0, internalFormat,
/external/deqp/framework/opengl/simplereference/
H A DsglrContext.cpp35 void Context::texImage2D (deUint32 target, int level, deUint32 internalFormat, const tcu::Surface& src) argument
39 texImage2D(target, level, internalFormat, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, src.getAccess().getDataPtr());
42 void Context::texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height) argument
47 switch (internalFormat)
54 format = internalFormat;
60 glu::TransferFormat transferFmt = glu::getTransferFormat(glu::mapGLInternalFormat(internalFormat));
67 texImage2D(target, level, internalFormat, width, height, 0, format, dataType, DE_NULL);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderTarget9.cpp35 mInternalFormat = d3dFormatInfo.internalFormat;
36 mActualFormat = d3dFormatInfo.internalFormat;
41 RenderTarget9::RenderTarget9(Renderer *renderer, GLsizei width, GLsizei height, GLenum internalFormat, GLsizei samples) argument
46 const d3d9::TextureFormat &d3d9FormatInfo = d3d9::GetTextureFormatInfo(internalFormat);
49 const gl::TextureCaps &textureCaps = mRenderer->getRendererTextureCaps().get(internalFormat);
60 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalFormat);
100 mInternalFormat = internalFormat;
102 mActualFormat = d3dFormatInfo.internalFormat;
H A Dformatutils9.h35 GLenum internalFormat; member in struct:rx::d3d9::D3DFormat
68 const TextureFormat &GetTextureFormatInfo(GLenum internalFormat);
H A DRenderTarget9.h24 RenderTarget9(Renderer *renderer, GLsizei width, GLsizei height, GLenum internalFormat, GLsizei samples);
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DDepthStencilFormatsTest.cpp30 bool checkTexStorageFormatSupport(GLenum internalFormat) argument
37 glTexStorage2DEXT(GL_TEXTURE_2D, 1, internalFormat, 1, 1);
43 bool checkRenderbufferFormatSupport(GLenum internalFormat) argument
50 glRenderbufferStorage(GL_RENDERBUFFER, internalFormat, 1, 1);
/external/deqp/framework/opengl/
H A DgluPixelTransfer.hpp43 void texImage2D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src);
44 void texImage3D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src);
/external/deqp/modules/gles3/functional/
H A Des3fInternalFormatQueryTests.cpp47 SamplesCase(Context& context, const char* name, const char* description, GLenum internalFormat, bool isIntegerInternalFormat) argument
49 , m_internalFormat (internalFormat)
128 SamplesBufferSizeCase(Context& context, const char* name, const char* description, GLenum internalFormat) argument
130 , m_internalFormat (internalFormat)
180 // \note These unsized formats seem to allowed by the spec, but they are not useful in any way. (You can't create a renderbuffer with such internalFormat)
229 const InternalFormat internalFormat = internalFormats[ndx]; local
231 addChild(new SamplesCase(m_context, (std::string(internalFormat.name) + "_samples").c_str(), "SAMPLES and NUM_SAMPLE_COUNTS", internalFormat.format, internalFormat.isIntegerFormat));
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DPixelTransfer11.h41 static bool supportsBufferToTextureCopy(GLenum internalFormat);
65 static void setBufferToTextureCopyParams(const gl::Box &destArea, const gl::Extents &destSize, GLenum internalFormat,
69 ID3D11PixelShader *findBufferToTexturePS(GLenum internalFormat) const;
/external/deqp/modules/gles31/functional/
H A Des31fTextureFormatTests.cpp74 TextureCubeArrayFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& renderCtxInfo, const char* name, const char* description, deUint32 internalFormat, int size, int depth);
116 TextureCubeArrayFormatCase::TextureCubeArrayFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& renderCtxInfo, const char* name, const char* description, deUint32 internalFormat, int size, int depth) argument
120 , m_format (internalFormat)
246 TextureBufferFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 internalFormat, int width);
266 TextureBufferFormatCase::TextureBufferFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 internalFormat, int width) argument
269 , m_format (internalFormat)
426 deUint32 internalFormat; member in struct:deqp::gles31::Functional::__anon20353
483 deUint32 internalFormat; member in struct:deqp::gles31::Functional::__anon20354
496 deUint32 internalFormat = sizedColorFormats[formatNdx].internalFormat; local
506 deUint32 internalFormat = sizedDepthStencilFormats[formatNdx].internalFormat; local
518 deUint32 internalFormat; member in struct:deqp::gles31::Functional::__anon20355
552 deUint32 internalFormat = bufferColorFormats[formatNdx].internalFormat; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLTexture.h56 void setLevelInfo(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLenum type);
89 , internalFormat(0)
99 internalFormat = internalFmt;
106 GLenum internalFormat; member in class:blink::FINAL::LevelInfo
/external/deqp/modules/gles3/performance/
H A Des3pTextureCases.hpp45 deUint32 internalFormat,

Completed in 1296 milliseconds

12345678910