| Michal Krol | 3f94cef | 2004-03-04 13:15:32 +0000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Mesa 3-D graphics library | 
| Michal Krol | 3f94cef | 2004-03-04 13:15:32 +0000 | [diff] [blame] | 3 |  * | 
| Brian Paul | 7948bc0 | 2005-01-19 14:44:55 +0000 | [diff] [blame] | 4 |  * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved. | 
| Michal Krol | 3f94cef | 2004-03-04 13:15:32 +0000 | [diff] [blame] | 5 |  * | 
 | 6 |  * Permission is hereby granted, free of charge, to any person obtaining a | 
 | 7 |  * copy of this software and associated documentation files (the "Software"), | 
 | 8 |  * to deal in the Software without restriction, including without limitation | 
 | 9 |  * the rights to use, copy, modify, merge, publish, distribute, sublicense, | 
 | 10 |  * and/or sell copies of the Software, and to permit persons to whom the | 
 | 11 |  * Software is furnished to do so, subject to the following conditions: | 
 | 12 |  * | 
 | 13 |  * The above copyright notice and this permission notice shall be included | 
 | 14 |  * in all copies or substantial portions of the Software. | 
 | 15 |  * | 
 | 16 |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | 
 | 17 |  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
 | 18 |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL | 
| Kenneth Graunke | 3d8d5b2 | 2013-04-21 13:46:48 -0700 | [diff] [blame] | 19 |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | 
 | 20 |  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | 
 | 21 |  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | 
 | 22 |  * OTHER DEALINGS IN THE SOFTWARE. | 
| Michal Krol | 3f94cef | 2004-03-04 13:15:32 +0000 | [diff] [blame] | 23 |  */ | 
 | 24 |  | 
 | 25 |  | 
 | 26 | #ifndef ARBPROGPARSE_H | 
 | 27 | #define ARBPROGPARSE_H | 
 | 28 |  | 
| Vinson Lee | d5810ef | 2010-12-09 23:52:28 -0800 | [diff] [blame] | 29 | #include "main/glheader.h" | 
 | 30 |  | 
 | 31 | struct gl_context; | 
| Timothy Arceri | 3423488 | 2016-10-19 13:23:37 +1100 | [diff] [blame] | 32 | struct gl_program; | 
| Michal Krol | 3f94cef | 2004-03-04 13:15:32 +0000 | [diff] [blame] | 33 |  | 
| Brian Paul | 8c41a14 | 2005-11-19 15:36:28 +0000 | [diff] [blame] | 34 | extern void | 
| Kristian Høgsberg | f9995b3 | 2010-10-12 12:26:10 -0400 | [diff] [blame] | 35 | _mesa_parse_arb_vertex_program(struct gl_context *ctx, GLenum target, | 
| Brian Paul | 8c41a14 | 2005-11-19 15:36:28 +0000 | [diff] [blame] | 36 | 			       const GLvoid *str, GLsizei len, | 
| Timothy Arceri | 81faead | 2016-10-19 12:30:09 +1100 | [diff] [blame] | 37 |                                struct gl_program *program); | 
| Brian Paul | 72030e0 | 2005-11-03 03:30:34 +0000 | [diff] [blame] | 38 |  | 
| Brian Paul | 8c41a14 | 2005-11-19 15:36:28 +0000 | [diff] [blame] | 39 | extern void | 
| Kristian Høgsberg | f9995b3 | 2010-10-12 12:26:10 -0400 | [diff] [blame] | 40 | _mesa_parse_arb_fragment_program(struct gl_context *ctx, GLenum target, | 
| Brian Paul | 8c41a14 | 2005-11-19 15:36:28 +0000 | [diff] [blame] | 41 |                                  const GLvoid *str, GLsizei len, | 
| Timothy Arceri | 3423488 | 2016-10-19 13:23:37 +1100 | [diff] [blame] | 42 |                                  struct gl_program *program); | 
| Brian Paul | 4570364 | 2005-10-29 15:52:31 +0000 | [diff] [blame] | 43 |  | 
| Michal Krol | 3f94cef | 2004-03-04 13:15:32 +0000 | [diff] [blame] | 44 | #endif |