1af69d88dSmrg/* 2af69d88dSmrg * Mesa 3-D graphics library 3af69d88dSmrg * 4af69d88dSmrg * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. 5af69d88dSmrg * 6af69d88dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 7af69d88dSmrg * copy of this software and associated documentation files (the "Software"), 8af69d88dSmrg * to deal in the Software without restriction, including without limitation 9af69d88dSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10af69d88dSmrg * and/or sell copies of the Software, and to permit persons to whom the 11af69d88dSmrg * Software is furnished to do so, subject to the following conditions: 12af69d88dSmrg * 13af69d88dSmrg * The above copyright notice and this permission notice shall be included 14af69d88dSmrg * in all copies or substantial portions of the Software. 15af69d88dSmrg * 16af69d88dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 17af69d88dSmrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18af69d88dSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19af69d88dSmrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20af69d88dSmrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21af69d88dSmrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22af69d88dSmrg * OTHER DEALINGS IN THE SOFTWARE. 23af69d88dSmrg */ 24af69d88dSmrg 25af69d88dSmrg 26af69d88dSmrg#ifndef GENMIPMAP_H 27af69d88dSmrg#define GENMIPMAP_H 28af69d88dSmrg 29af69d88dSmrg#include "glheader.h" 30af69d88dSmrg 3101e04c3fSmrgbool 3201e04c3fSmrg_mesa_is_valid_generate_texture_mipmap_target(struct gl_context *ctx, 3301e04c3fSmrg GLenum target); 3401e04c3fSmrgbool 3501e04c3fSmrg_mesa_is_valid_generate_texture_mipmap_internalformat(struct gl_context *ctx, 3601e04c3fSmrg GLenum internalformat); 3701e04c3fSmrg 3801e04c3fSmrgvoid GLAPIENTRY 3901e04c3fSmrg_mesa_GenerateMipmap_no_error(GLenum target); 40af69d88dSmrg 41af69d88dSmrgextern void GLAPIENTRY 42af69d88dSmrg_mesa_GenerateMipmap(GLenum target); 43af69d88dSmrg 4401e04c3fSmrgvoid GLAPIENTRY 4501e04c3fSmrg_mesa_GenerateTextureMipmap_no_error(GLuint texture); 4601e04c3fSmrg 4701e04c3fSmrgextern void GLAPIENTRY 4801e04c3fSmrg_mesa_GenerateTextureMipmap(GLuint texture); 49af69d88dSmrg 507ec681f3Smrgextern void GLAPIENTRY 517ec681f3Smrg_mesa_GenerateTextureMipmapEXT(GLuint texture, GLenum target); 527ec681f3Smrg 537ec681f3Smrgextern void GLAPIENTRY 547ec681f3Smrg_mesa_GenerateMultiTexMipmapEXT(GLenum texunit, GLenum target); 557ec681f3Smrg 56af69d88dSmrg#endif /* GENMIPMAP_H */ 57