1*5f2bebf7SJérôme Gardou /* $Id: enable.h,v 1.1 1996/09/13 01:38:16 brianp Exp $ */ 2*5f2bebf7SJérôme Gardou 3*5f2bebf7SJérôme Gardou /* 4*5f2bebf7SJérôme Gardou * Mesa 3-D graphics library 5*5f2bebf7SJérôme Gardou * Version: 2.0 6*5f2bebf7SJérôme Gardou * Copyright (C) 1995-1996 Brian Paul 7*5f2bebf7SJérôme Gardou * 8*5f2bebf7SJérôme Gardou * This library is free software; you can redistribute it and/or 9*5f2bebf7SJérôme Gardou * modify it under the terms of the GNU Library General Public 10*5f2bebf7SJérôme Gardou * License as published by the Free Software Foundation; either 11*5f2bebf7SJérôme Gardou * version 2 of the License, or (at your option) any later version. 12*5f2bebf7SJérôme Gardou * 13*5f2bebf7SJérôme Gardou * This library is distributed in the hope that it will be useful, 14*5f2bebf7SJérôme Gardou * but WITHOUT ANY WARRANTY; without even the implied warranty of 15*5f2bebf7SJérôme Gardou * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16*5f2bebf7SJérôme Gardou * Library General Public License for more details. 17*5f2bebf7SJérôme Gardou * 18*5f2bebf7SJérôme Gardou * You should have received a copy of the GNU Library General Public 19*5f2bebf7SJérôme Gardou * License along with this library; if not, write to the Free 20*5f2bebf7SJérôme Gardou * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 21*5f2bebf7SJérôme Gardou */ 22*5f2bebf7SJérôme Gardou 23*5f2bebf7SJérôme Gardou 24*5f2bebf7SJérôme Gardou /* 25*5f2bebf7SJérôme Gardou * $Log: enable.h,v $ 26*5f2bebf7SJérôme Gardou * Revision 1.1 1996/09/13 01:38:16 brianp 27*5f2bebf7SJérôme Gardou * Initial revision 28*5f2bebf7SJérôme Gardou * 29*5f2bebf7SJérôme Gardou */ 30*5f2bebf7SJérôme Gardou 31*5f2bebf7SJérôme Gardou 32*5f2bebf7SJérôme Gardou #ifndef ENABLE_H 33*5f2bebf7SJérôme Gardou #define ENABLE_H 34*5f2bebf7SJérôme Gardou 35*5f2bebf7SJérôme Gardou 36*5f2bebf7SJérôme Gardou #include "types.h" 37*5f2bebf7SJérôme Gardou 38*5f2bebf7SJérôme Gardou 39*5f2bebf7SJérôme Gardou extern void gl_Disable( GLcontext* ctx, GLenum cap ); 40*5f2bebf7SJérôme Gardou 41*5f2bebf7SJérôme Gardou extern void gl_Enable( GLcontext* ctx, GLenum cap ); 42*5f2bebf7SJérôme Gardou 43*5f2bebf7SJérôme Gardou extern GLboolean gl_IsEnabled( GLcontext* ctx, GLenum cap ); 44*5f2bebf7SJérôme Gardou 45*5f2bebf7SJérôme Gardou extern void gl_EnableClientState( GLcontext *ctx, GLenum cap ); 46*5f2bebf7SJérôme Gardou 47*5f2bebf7SJérôme Gardou extern void gl_DisableClientState( GLcontext *ctx, GLenum cap ); 48*5f2bebf7SJérôme Gardou 49*5f2bebf7SJérôme Gardou 50*5f2bebf7SJérôme Gardou #endif 51