Home
last modified time | relevance | path

Searched refs:MaxTextureLevels (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i915/
Di830_context.c106 ctx->Const.MaxTextureLevels = 12; in i830CreateContext()
Di915_context.c211 ctx->Const.MaxTextureLevels = 12; in i915CreateContext()
/external/mesa3d/src/mesa/main/
Dcontext.c551 consts->MaxTextureLevels = MAX_TEXTURE_LEVELS; in _mesa_init_constants()
773 assert(ctx->Const.MaxTextureLevels <= MAX_TEXTURE_LEVELS); in check_context_limits()
783 assert((1U << (ctx->Const.MaxTextureLevels - 1)) in check_context_limits()
785 assert((1U << (ctx->Const.MaxTextureLevels - 1)) in check_context_limits()
Dteximage.c393 if (level >= ctx->Const.MaxTextureLevels) in get_proxy_tex_image()
398 if (level >= ctx->Const.MaxTextureLevels) in get_proxy_tex_image()
418 if (level >= ctx->Const.MaxTextureLevels) in get_proxy_tex_image()
423 if (level >= ctx->Const.MaxTextureLevels) in get_proxy_tex_image()
480 return ctx->Const.MaxTextureLevels; in _mesa_max_texture_levels()
502 ? ctx->Const.MaxTextureLevels : 0; in _mesa_max_texture_levels()
963 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1); /* level zero size */ in _mesa_legal_texture_dimensions()
977 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1); in _mesa_legal_texture_dimensions()
1048 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1); in _mesa_legal_texture_dimensions()
1064 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1); in _mesa_legal_texture_dimensions()
Dtexobj.c717 maxLevels = ctx->Const.MaxTextureLevels; in _mesa_test_texobj_completeness()
721 maxLevels = ctx->Const.MaxTextureLevels; in _mesa_test_texobj_completeness()
Dmtypes.h3407 GLuint MaxTextureLevels; /**< Max mipmap levels. */ member
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv04_context.c161 ctx->Const.MaxTextureLevels = 11; in nv04_context_create()
Dnv10_context.c460 ctx->Const.MaxTextureLevels = 12; in nv10_context_create()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_context.c237 ctx->Const.MaxTextureLevels = 12; in r100CreateContext()
Dradeon_mipmap_tree.c153 assert(mt->numLevels <= rmesa->glCtx.Const.MaxTextureLevels); in calculate_miptree_layout()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_context.c275 ctx->Const.MaxTextureLevels = 12; in r200CreateContext()
Dradeon_mipmap_tree.c153 assert(mt->numLevels <= rmesa->glCtx.Const.MaxTextureLevels); in calculate_miptree_layout()
/external/mesa3d/src/mesa/state_tracker/
Dst_extensions.c82 c->MaxTextureLevels in st_init_limits()
95 = _min(1 << (c->MaxTextureLevels - 1), MAX_TEXTURE_RECT_SIZE); in st_init_limits()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_context.c533 ctx->Const.MaxTextureLevels = MIN2(15 /* 16384 */, MAX_TEXTURE_LEVELS); in brw_initialize_context_constants()
537 ctx->Const.MaxTextureLevels = MIN2(14 /* 8192 */, MAX_TEXTURE_LEVELS); in brw_initialize_context_constants()
/external/mesa3d/src/mesa/swrast/
Ds_context.c734 assert((1 << (ctx->Const.MaxTextureLevels - 1)) <= SWRAST_MAX_WIDTH); in _swrast_CreateContext()
/external/deqp/external/openglcts/modules/gl/
Dgl4cDirectStateAccessFramebuffersAndRenderbuffersTests.cpp413 for (glw::GLuint j = 1; j <= MaxTextureLevels(s_targets[i]); ++j) in iterate()
694 glw::GLuint TextureAttachmentTest::MaxTextureLevels(glw::GLenum texture_target) in MaxTextureLevels() function in gl4cts::DirectStateAccess::Framebuffers::TextureAttachmentTest
841 for (glw::GLuint j = 1; j <= MaxTextureLevels(s_targets[i]); ++j) in iterate()
1188 glw::GLuint TextureLayerAttachmentTest::MaxTextureLevels(glw::GLenum texture_target) in MaxTextureLevels() function in gl4cts::DirectStateAccess::Framebuffers::TextureLayerAttachmentTest
Dgl4cDirectStateAccessTests.hpp2303 glw::GLuint MaxTextureLevels(glw::GLenum texture_target);
2383 glw::GLuint MaxTextureLevels(glw::GLenum texture_target);
/external/mesa3d/prebuilt-intermediates/main/
Dget_hash.h28 …{ GL_MAX_TEXTURE_SIZE, LOC_CUSTOM, TYPE_INT, offsetof(struct gl_context, Const.MaxTextureLevels), …
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c1234 tex->MaxSize = 1 << (ctx->Const.MaxTextureLevels - 1); in init_temp_texture()