Home
last modified time | relevance | path

Searched refs:MaxArrayTextureLayers (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_context.c549 ctx->Const.MaxArrayTextureLayers = devinfo->ver >= 7 ? 2048 : 512; in brw_initialize_context_constants()
818 ctx->Const.MaxFramebufferLayers = ctx->Const.MaxArrayTextureLayers; in brw_initialize_context_constants()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_extensions.c103 c->MaxArrayTextureLayers in st_init_limits()
1588 consts->MaxFramebufferLayers >= consts->MaxArrayTextureLayers))) in st_init_extensions()
/third_party/mesa3d/src/mesa/main/
Dcontext.c470 consts->MaxArrayTextureLayers = MAX_ARRAY_TEXTURE_LAYERS; in _mesa_init_constants()
Dteximage.c1063 if (height < 0 || height > ctx->Const.MaxArrayTextureLayers) in _mesa_legal_texture_dimensions()
1080 if (depth < 0 || depth > ctx->Const.MaxArrayTextureLayers) in _mesa_legal_texture_dimensions()
1097 if (depth < 0 || depth > ctx->Const.MaxArrayTextureLayers || depth % 6) in _mesa_legal_texture_dimensions()
Dmtypes.h3791 GLuint MaxArrayTextureLayers; /**< Max layers in array textures */ member
Dfbobject.c3728 if (layer >= ctx->Const.MaxArrayTextureLayers) { in check_layer()