Home
last modified time | relevance | path

Searched refs:tex_type (Results 1 – 12 of 12) sorted by relevance

/external/deqp/external/openglcts/modules/gles31/
Des31cTextureGatherTests.cpp374 GLenum tex_type = GL_FLOAT; in CreateTexture2DRgb() local
381 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, &pixels[0]); in CreateTexture2DRgb()
387 glTexSubImage2D(target, base_level, 22, 25, 2, 2, format, tex_type, data); in CreateTexture2DRgb()
388 glTexSubImage2D(target, base_level, 16, 10, 1, 1, format, tex_type, data + 0); in CreateTexture2DRgb()
389 glTexSubImage2D(target, base_level, 11, 2, 1, 1, format, tex_type, data + 1); in CreateTexture2DRgb()
390 glTexSubImage2D(target, base_level, 24, 13, 1, 1, format, tex_type, data + 2); in CreateTexture2DRgb()
391 glTexSubImage2D(target, base_level, 9, 14, 1, 1, format, tex_type, data + 3); in CreateTexture2DRgb()
411 GLenum tex_type = GL_FLOAT; in CreateTexture2DRg() local
417 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, 0); in CreateTexture2DRg()
419 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, &pixels[0]); in CreateTexture2DRg()
[all …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cTextureGatherTests.cpp441 GLenum tex_type = GL_FLOAT; in CreateTexture2DRgb() local
447 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, 0); in CreateTexture2DRgb()
450 glTexSubImage2D(target, 0, 0, 0, csize, csize, format, tex_type, &pixels[0]); in CreateTexture2DRgb()
456 glTexSubImage2D(target, base_level, 22, 25, 2, 2, format, tex_type, data); in CreateTexture2DRgb()
457 glTexSubImage2D(target, base_level, 16, 10, 1, 1, format, tex_type, data + 0); in CreateTexture2DRgb()
458 glTexSubImage2D(target, base_level, 11, 2, 1, 1, format, tex_type, data + 1); in CreateTexture2DRgb()
459 glTexSubImage2D(target, base_level, 24, 13, 1, 1, format, tex_type, data + 2); in CreateTexture2DRgb()
460 glTexSubImage2D(target, base_level, 9, 14, 1, 1, format, tex_type, data + 3); in CreateTexture2DRgb()
474 GLenum tex_type = GL_FLOAT; in CreateTexture2DRg() local
480 glTexImage2D(target, i, internal_format, size, size, 0, format, tex_type, 0); in CreateTexture2DRg()
[all …]
Dgl4cEnhancedLayoutsTests.hpp869 …void Init(TYPES tex_type, glw::GLuint width, glw::GLuint height, glw::GLuint depth, glw::GLenum in…
882 static void Bind(const glw::Functions& gl, glw::GLuint id, TYPES tex_type);
886 static void Get(const glw::Functions& gl, TYPES tex_type, glw::GLenum format, glw::GLenum type,
889 …static void Storage(const glw::Functions& gl, TYPES tex_type, glw::GLuint width, glw::GLuint heigh…
894 static void Update(const glw::Functions& gl, TYPES tex_type, glw::GLuint width, glw::GLuint height,
898 static glw::GLenum GetTargetGLenum(TYPES tex_type);
Dgl4cEnhancedLayoutsTests.cpp3205 void Texture::Init(TYPES tex_type, GLuint width, GLuint height, GLuint depth, GLenum internal_forma… in Init() argument
3213 m_type = tex_type; in Init()
3217 Bind(gl, m_id, tex_type); in Init()
3218 Storage(gl, tex_type, width, height, depth, internal_format); in Init()
3219 Update(gl, tex_type, width, height, depth, format, type, data); in Init()
3286 void Texture::Bind(const Functions& gl, GLuint id, TYPES tex_type) in Bind() argument
3288 GLenum target = GetTargetGLenum(tex_type); in Bind()
3321 void Texture::Get(const Functions& gl, TYPES tex_type, GLenum format, GLenum type, GLvoid* out_data) in Get() argument
3323 GLenum target = GetTargetGLenum(tex_type); in Get()
3325 if (TEX_CUBE != tex_type) in Get()
[all …]
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_formats.c52 uint8_t tex_type; member
157 return vf->tex_type; in vc4_get_tex_format()
/external/mesa3d/src/gallium/drivers/vc5/
Dvc5_format_table.h37 uint8_t tex_type; member
Dvc5_formats.c89 return vf->tex_type; in vc5_get_tex_format()
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/
Dfd3_texture.c192 tex_type(unsigned target) in tex_type() function
232 A3XX_TEX_CONST_0_TYPE(tex_type(prsc->target)) | in fd3_sampler_view_create()
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
Dfd4_texture.c193 tex_type(unsigned target) in tex_type() function
246 A4XX_TEX_CONST_0_TYPE(tex_type(cso->target)) | in fd4_sampler_view_create()
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi_private.h131 glsl_base_type tex_type:6; variable
Dst_manager.c675 enum st_texture_type tex_type, in st_context_teximage() argument
689 switch (tex_type) { in st_context_teximage()
Dst_glsl_to_tgsi.cpp444 inst->tex_type = GLSL_TYPE_FLOAT; in emit_asm()
4363 inst->tex_type = ir->type->base_type; in visit()
4526 v->sampler_types[idx] = inst->tex_type; in count_resources()
5861 st_translate_texture_type(inst->tex_type), in compile_tgsi_instruction()
6257 ASSERT_BITFIELD_SIZE(glsl_to_tgsi_instruction, tex_type, GLSL_TYPE_ERROR); in st_translate_program()