summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/arbfragparse.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-08-06 19:22:37 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-08-06 19:22:37 +0000
commit8f44286b291ad5f1ec918018b8d4a0398bf7ffd8 (patch)
tree5cdcc3b80fb2ebeb04806c1132c104658d07c3ee /src/mesa/main/arbfragparse.c
parent1b252a4f6f7de91f2de66b6e2b2e1130eb4bb476 (diff)
downloadexternal_mesa3d-8f44286b291ad5f1ec918018b8d4a0398bf7ffd8.zip
external_mesa3d-8f44286b291ad5f1ec918018b8d4a0398bf7ffd8.tar.gz
external_mesa3d-8f44286b291ad5f1ec918018b8d4a0398bf7ffd8.tar.bz2
placeholder files
Diffstat (limited to 'src/mesa/main/arbfragparse.c')
-rw-r--r--src/mesa/main/arbfragparse.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/mesa/main/arbfragparse.c b/src/mesa/main/arbfragparse.c
new file mode 100644
index 0000000..39aa1c3
--- /dev/null
+++ b/src/mesa/main/arbfragparse.c
@@ -0,0 +1,46 @@
+/*
+ * Mesa 3-D graphics library
+ * Version: 5.1
+ *
+ * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+
+/**
+ * \file arbfragparse.c
+ * ARB_fragment_program parser.
+ * \author
+ */
+
+#include "glheader.h"
+#include "context.h"
+#include "imports.h"
+#include "macros.h"
+#include "mtypes.h"
+#include "arbfragparse.h"
+
+
+void
+_mesa_parse_arb_fragment_program(GLcontext * ctx, GLenum target,
+ const GLubyte * str, GLsizei len,
+ struct fragment_program *program)
+{
+
+}