Fix pow <small> and a very stypid bug with dummy srcs(0 equals to tmp0.x)</small...
[mesa.git] / src / mesa / shader / slang / slang_utility.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.3
4 *
5 * Copyright (C) 2005 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 slang_utility.c
27 * slang utilities
28 * \author Michal Krol
29 */
30
31 #include "imports.h"
32 #include "slang_utility.h"
33
34 void slang_alloc_free (void *ptr)
35 {
36 _mesa_free (ptr);
37 }
38
39 void *slang_alloc_malloc (unsigned int size)
40 {
41 return _mesa_malloc (size);
42 }
43
44 void *slang_alloc_realloc (void *ptr, unsigned int old_size, unsigned int size)
45 {
46 return _mesa_realloc (ptr, old_size, size);
47 }
48
49 int slang_string_compare (const char *str1, const char *str2)
50 {
51 return _mesa_strcmp (str1, str2);
52 }
53
54 char *slang_string_copy (char *dst, const char *src)
55 {
56 return _mesa_strcpy (dst, src);
57 }
58
59 char *slang_string_concat (char *dst, const char *src)
60 {
61 return _mesa_strcpy (dst + _mesa_strlen (dst), src);
62 }
63
64 char *slang_string_duplicate (const char *src)
65 {
66 return _mesa_strdup (src);
67 }
68
69 unsigned int slang_string_length (const char *str)
70 {
71 return _mesa_strlen (str);
72 }
73