util/hash_set: Rework the API to know about hashing
[mesa.git] / src / glsl / standalone_scaffolding.cpp
1 /*
2 * Copyright © 2011 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 /* This file declares stripped-down versions of functions that
25 * normally exist outside of the glsl folder, so that they can be used
26 * when running the GLSL compiler standalone (for unit testing or
27 * compiling builtins).
28 */
29
30 #include "standalone_scaffolding.h"
31
32 #include <assert.h>
33 #include <string.h>
34 #include "util/ralloc.h"
35
36 void
37 _mesa_warning(struct gl_context *ctx, const char *fmt, ...)
38 {
39 va_list vargs;
40 (void) ctx;
41
42 va_start(vargs, fmt);
43
44 /* This output is not thread-safe, but that's good enough for the
45 * standalone compiler.
46 */
47 fprintf(stderr, "Mesa warning: ");
48 vfprintf(stderr, fmt, vargs);
49 fprintf(stderr, "\n");
50
51 va_end(vargs);
52 }
53
54 void
55 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
56 struct gl_shader *sh)
57 {
58 (void) ctx;
59 *ptr = sh;
60 }
61
62 void
63 _mesa_shader_debug(struct gl_context *, GLenum, GLuint *id,
64 const char *, int)
65 {
66 }
67
68 struct gl_shader *
69 _mesa_new_shader(struct gl_context *ctx, GLuint name, GLenum type)
70 {
71 struct gl_shader *shader;
72
73 (void) ctx;
74
75 assert(type == GL_FRAGMENT_SHADER || type == GL_VERTEX_SHADER);
76 shader = rzalloc(NULL, struct gl_shader);
77 if (shader) {
78 shader->Type = type;
79 shader->Stage = _mesa_shader_enum_to_shader_stage(type);
80 shader->Name = name;
81 shader->RefCount = 1;
82 }
83 return shader;
84 }
85
86 void
87 _mesa_clear_shader_program_data(struct gl_shader_program *shProg)
88 {
89 unsigned i;
90
91 shProg->NumUserUniformStorage = 0;
92 shProg->UniformStorage = NULL;
93 shProg->NumUniformRemapTable = 0;
94 shProg->UniformRemapTable = NULL;
95 shProg->UniformHash = NULL;
96
97 ralloc_free(shProg->InfoLog);
98 shProg->InfoLog = ralloc_strdup(shProg, "");
99
100 ralloc_free(shProg->UniformBlocks);
101 shProg->UniformBlocks = NULL;
102 shProg->NumUniformBlocks = 0;
103 for (i = 0; i < MESA_SHADER_STAGES; i++) {
104 ralloc_free(shProg->UniformBlockStageIndex[i]);
105 shProg->UniformBlockStageIndex[i] = NULL;
106 }
107
108 ralloc_free(shProg->AtomicBuffers);
109 shProg->AtomicBuffers = NULL;
110 shProg->NumAtomicBuffers = 0;
111 }
112
113 void initialize_context_to_defaults(struct gl_context *ctx, gl_api api)
114 {
115 memset(ctx, 0, sizeof(*ctx));
116
117 ctx->API = api;
118
119 ctx->Extensions.dummy_false = false;
120 ctx->Extensions.dummy_true = true;
121 ctx->Extensions.ARB_compute_shader = true;
122 ctx->Extensions.ARB_conservative_depth = true;
123 ctx->Extensions.ARB_draw_instanced = true;
124 ctx->Extensions.ARB_ES2_compatibility = true;
125 ctx->Extensions.ARB_ES3_compatibility = true;
126 ctx->Extensions.ARB_explicit_attrib_location = true;
127 ctx->Extensions.ARB_fragment_coord_conventions = true;
128 ctx->Extensions.ARB_fragment_layer_viewport = true;
129 ctx->Extensions.ARB_gpu_shader5 = true;
130 ctx->Extensions.ARB_sample_shading = true;
131 ctx->Extensions.ARB_shader_bit_encoding = true;
132 ctx->Extensions.ARB_shader_stencil_export = true;
133 ctx->Extensions.ARB_shader_texture_lod = true;
134 ctx->Extensions.ARB_shading_language_420pack = true;
135 ctx->Extensions.ARB_shading_language_packing = true;
136 ctx->Extensions.ARB_texture_cube_map_array = true;
137 ctx->Extensions.ARB_texture_gather = true;
138 ctx->Extensions.ARB_texture_multisample = true;
139 ctx->Extensions.ARB_texture_query_levels = true;
140 ctx->Extensions.ARB_texture_query_lod = true;
141 ctx->Extensions.ARB_uniform_buffer_object = true;
142 ctx->Extensions.ARB_viewport_array = true;
143
144 ctx->Extensions.OES_EGL_image_external = true;
145 ctx->Extensions.OES_standard_derivatives = true;
146
147 ctx->Extensions.EXT_shader_integer_mix = true;
148 ctx->Extensions.EXT_texture3D = true;
149 ctx->Extensions.EXT_texture_array = true;
150
151 ctx->Extensions.NV_texture_rectangle = true;
152
153 ctx->Const.GLSLVersion = 120;
154
155 /* 1.20 minimums. */
156 ctx->Const.MaxLights = 8;
157 ctx->Const.MaxClipPlanes = 6;
158 ctx->Const.MaxTextureUnits = 2;
159 ctx->Const.MaxTextureCoordUnits = 2;
160 ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs = 16;
161
162 ctx->Const.Program[MESA_SHADER_VERTEX].MaxUniformComponents = 512;
163 ctx->Const.Program[MESA_SHADER_VERTEX].MaxOutputComponents = 32;
164 ctx->Const.MaxVarying = 8; /* == gl_MaxVaryingFloats / 4 */
165 ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits = 0;
166 ctx->Const.MaxCombinedTextureImageUnits = 2;
167 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = 2;
168 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxUniformComponents = 64;
169 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxInputComponents = 32;
170
171 ctx->Const.MaxDrawBuffers = 1;
172 ctx->Const.MaxComputeWorkGroupCount[0] = 65535;
173 ctx->Const.MaxComputeWorkGroupCount[1] = 65535;
174 ctx->Const.MaxComputeWorkGroupCount[2] = 65535;
175 ctx->Const.MaxComputeWorkGroupSize[0] = 1024;
176 ctx->Const.MaxComputeWorkGroupSize[1] = 1024;
177 ctx->Const.MaxComputeWorkGroupSize[2] = 64;
178 ctx->Const.MaxComputeWorkGroupInvocations = 1024;
179 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxTextureImageUnits = 16;
180 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxUniformComponents = 1024;
181 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxInputComponents = 0; /* not used */
182 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxOutputComponents = 0; /* not used */
183
184 /* Set up default shader compiler options. */
185 struct gl_shader_compiler_options options;
186 memset(&options, 0, sizeof(options));
187 options.MaxUnrollIterations = 32;
188 options.MaxIfDepth = UINT_MAX;
189
190 /* Default pragma settings */
191 options.DefaultPragmas.Optimize = true;
192
193 for (int sh = 0; sh < MESA_SHADER_STAGES; ++sh)
194 memcpy(&ctx->Const.ShaderCompilerOptions[sh], &options, sizeof(options));
195 }