mesa: Don't bind DRAW/READ_FRAMEBUFFER separately without FBO blit support
[mesa.git] / src / mesa / shader / grammar / grammar_mesa.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.1
4 *
5 * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * \file grammar_mesa.c
27 * mesa3d port to syntax parsing engine
28 * \author Michal Krol
29 */
30
31 #include "grammar_mesa.h"
32
33 #define GRAMMAR_PORT_BUILD 1
34 #include "grammar.c"
35 #undef GRAMMAR_PORT_BUILD
36
37
38 void grammar_alloc_free (void *ptr)
39 {
40 _mesa_free (ptr);
41 }
42
43 void *grammar_alloc_malloc (size_t size)
44 {
45 return _mesa_malloc (size);
46 }
47
48 void *grammar_alloc_realloc (void *ptr, size_t old_size, size_t size)
49 {
50 return _mesa_realloc (ptr, old_size, size);
51 }
52
53 void *grammar_memory_copy (void *dst, const void * src, size_t size)
54 {
55 return _mesa_memcpy (dst, src, size);
56 }
57
58 int grammar_string_compare (const byte *str1, const byte *str2)
59 {
60 return _mesa_strcmp ((const char *) str1, (const char *) str2);
61 }
62
63 int grammar_string_compare_n (const byte *str1, const byte *str2, size_t n)
64 {
65 return _mesa_strncmp ((const char *) str1, (const char *) str2, n);
66 }
67
68 byte *grammar_string_copy (byte *dst, const byte *src)
69 {
70 return (byte *) _mesa_strcpy ((char *) dst, (const char *) src);
71 }
72
73 byte *grammar_string_copy_n (byte *dst, const byte *src, size_t n)
74 {
75 return (byte *) _mesa_strncpy ((char *) dst, (const char *) src, n);
76 }
77
78 byte *grammar_string_duplicate (const byte *src)
79 {
80 return (byte *) _mesa_strdup ((const char *) src);
81 }
82
83 unsigned int grammar_string_length (const byte *str)
84 {
85 return (unsigned int)_mesa_strlen ((const char *) str);
86 }
87