| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 1 | /* $Id: extensions.h,v 1.12 2001/02/26 23:58:12 brianp Exp $ */ |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * Mesa 3-D graphics library |
| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 5 | * Version: 3.5 |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 6 | * |
| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 7 | * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 8 | * |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 9 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 10 | * copy of this software and associated documentation files (the "Software"), |
| 11 | * to deal in the Software without restriction, including without limitation |
| 12 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 13 | * and/or sell copies of the Software, and to permit persons to whom the |
| 14 | * Software is furnished to do so, subject to the following conditions: |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 15 | * |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 16 | * The above copyright notice and this permission notice shall be included |
| 17 | * in all copies or substantial portions of the Software. |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 18 | * |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 20 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 22 | * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
| 23 | * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 24 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 25 | */ |
| 26 | |
| 27 | |
| 28 | #ifndef _EXTENSIONS_H_ |
| 29 | #define _EXTENSIONS_H_ |
| 30 | |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 31 | #include "mtypes.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 32 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 33 | |
| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 34 | extern void _mesa_enable_sw_extensions(GLcontext *ctx); |
| Brian Paul | 5a9026c | 2000-11-17 21:01:25 +0000 | [diff] [blame] | 35 | |
| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 36 | extern void _mesa_enable_imaging_extensions(GLcontext *ctx); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 37 | |
| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 38 | extern void _mesa_add_extension( GLcontext *ctx, GLboolean enabled, |
| 39 | const char *name, GLboolean *flag_ptr ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 40 | |
| Brian Paul | 6975540 | 2001-02-26 23:58:12 +0000 | [diff] [blame] | 41 | extern void _mesa_enable_extension( GLcontext *ctx, const char *name ); |
| 42 | |
| 43 | extern void _mesa_disable_extension( GLcontext *ctx, const char *name ); |
| 44 | |
| 45 | extern GLboolean _mesa_extension_is_enabled( GLcontext *ctx, const char *name); |
| 46 | |
| 47 | extern void _mesa_extensions_dtr( GLcontext *ctx ); |
| 48 | |
| 49 | extern void _mesa_extensions_ctr( GLcontext *ctx ); |
| 50 | |
| 51 | extern const char *_mesa_extensions_get_string( GLcontext *ctx ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 52 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 53 | #endif |
| 54 | |
| 55 | |