1848b8605Smrg/** 2848b8605Smrg * \file texstate.h 3848b8605Smrg * Texture state management. 4848b8605Smrg */ 5848b8605Smrg 6848b8605Smrg/* 7848b8605Smrg * Mesa 3-D graphics library 8848b8605Smrg * 9848b8605Smrg * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. 10848b8605Smrg * 11848b8605Smrg * Permission is hereby granted, free of charge, to any person obtaining a 12848b8605Smrg * copy of this software and associated documentation files (the "Software"), 13848b8605Smrg * to deal in the Software without restriction, including without limitation 14848b8605Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 15848b8605Smrg * and/or sell copies of the Software, and to permit persons to whom the 16848b8605Smrg * Software is furnished to do so, subject to the following conditions: 17848b8605Smrg * 18848b8605Smrg * The above copyright notice and this permission notice shall be included 19848b8605Smrg * in all copies or substantial portions of the Software. 20848b8605Smrg * 21848b8605Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 22848b8605Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23848b8605Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 24848b8605Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 25848b8605Smrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 26848b8605Smrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 27848b8605Smrg * OTHER DEALINGS IN THE SOFTWARE. 28848b8605Smrg */ 29848b8605Smrg 30848b8605Smrg 31848b8605Smrg#ifndef TEXSTATE_H 32848b8605Smrg#define TEXSTATE_H 33848b8605Smrg 34848b8605Smrg 35b8e80941Smrg#include "enums.h" 36b8e80941Smrg#include "macros.h" 37848b8605Smrg#include "mtypes.h" 38848b8605Smrg 39848b8605Smrg 40b8e80941Smrgstatic inline struct gl_texture_unit * 41b8e80941Smrg_mesa_get_tex_unit(struct gl_context *ctx, GLuint unit) 42b8e80941Smrg{ 43b8e80941Smrg assert(unit < ARRAY_SIZE(ctx->Texture.Unit)); 44b8e80941Smrg return &(ctx->Texture.Unit[unit]); 45b8e80941Smrg} 46b8e80941Smrg 47848b8605Smrg/** 48848b8605Smrg * Return pointer to current texture unit. 49848b8605Smrg * This the texture unit set by glActiveTexture(), not glClientActiveTexture(). 50848b8605Smrg */ 51848b8605Smrgstatic inline struct gl_texture_unit * 52848b8605Smrg_mesa_get_current_tex_unit(struct gl_context *ctx) 53848b8605Smrg{ 54b8e80941Smrg return _mesa_get_tex_unit(ctx, ctx->Texture.CurrentUnit); 55b8e80941Smrg} 56b8e80941Smrg 57b8e80941Smrg 58b8e80941Smrg/** 59b8e80941Smrg * Return pointer to current fixed-func texture unit. 60b8e80941Smrg * This the texture unit set by glActiveTexture(), not glClientActiveTexture(). 61b8e80941Smrg * \return NULL if the current unit is not a fixed-func texture unit 62b8e80941Smrg */ 63b8e80941Smrgstatic inline struct gl_fixedfunc_texture_unit * 64b8e80941Smrg_mesa_get_current_fixedfunc_tex_unit(struct gl_context *ctx) 65b8e80941Smrg{ 66b8e80941Smrg unsigned unit = ctx->Texture.CurrentUnit; 67b8e80941Smrg 68b8e80941Smrg if (unit >= ARRAY_SIZE(ctx->Texture.FixedFuncUnit)) 69b8e80941Smrg return NULL; 70b8e80941Smrg 71b8e80941Smrg return &ctx->Texture.FixedFuncUnit[unit]; 72b8e80941Smrg} 73b8e80941Smrg 74b8e80941Smrg 75b8e80941Smrgstatic inline GLuint 76b8e80941Smrg_mesa_max_tex_unit(struct gl_context *ctx) 77b8e80941Smrg{ 78b8e80941Smrg /* See OpenGL spec for glActiveTexture: */ 79b8e80941Smrg return MAX2(ctx->Const.MaxCombinedTextureImageUnits, 80b8e80941Smrg ctx->Const.MaxTextureCoordUnits); 81848b8605Smrg} 82848b8605Smrg 83848b8605Smrg 84848b8605Smrgextern void 85848b8605Smrg_mesa_copy_texture_state( const struct gl_context *src, struct gl_context *dst ); 86848b8605Smrg 87848b8605Smrgextern void 88848b8605Smrg_mesa_print_texunit_state( struct gl_context *ctx, GLuint unit ); 89848b8605Smrg 90848b8605Smrg 91848b8605Smrg 92848b8605Smrg/** 93848b8605Smrg * \name Called from API 94848b8605Smrg */ 95848b8605Smrg/*@{*/ 96848b8605Smrg 97b8e80941Smrgextern void GLAPIENTRY 98b8e80941Smrg_mesa_ActiveTexture_no_error( GLenum target ); 99b8e80941Smrg 100848b8605Smrgextern void GLAPIENTRY 101848b8605Smrg_mesa_ActiveTexture( GLenum target ); 102848b8605Smrg 103848b8605Smrgextern void GLAPIENTRY 104848b8605Smrg_mesa_ClientActiveTexture( GLenum target ); 105848b8605Smrg 106848b8605Smrg/*@}*/ 107848b8605Smrg 108848b8605Smrg 109848b8605Smrg/** 110848b8605Smrg * \name Initialization, state maintenance 111848b8605Smrg */ 112848b8605Smrg/*@{*/ 113848b8605Smrg 114b8e80941Smrgextern void 115b8e80941Smrg_mesa_update_texture_matrices(struct gl_context *ctx); 116b8e80941Smrg 117b8e80941Smrgextern void 118b8e80941Smrg_mesa_update_texture_state(struct gl_context *ctx); 119848b8605Smrg 120848b8605Smrgextern GLboolean 121848b8605Smrg_mesa_init_texture( struct gl_context *ctx ); 122848b8605Smrg 123848b8605Smrgextern void 124848b8605Smrg_mesa_free_texture_data( struct gl_context *ctx ); 125848b8605Smrg 126848b8605Smrgextern void 127848b8605Smrg_mesa_update_default_objects_texture(struct gl_context *ctx); 128848b8605Smrg 129848b8605Smrg/*@}*/ 130848b8605Smrg 131848b8605Smrg#endif 132