Merge remote-tracking branch 'mesa-public/master' into vulkan
[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 <stdio.h>
34 #include <string.h>
35 #include "util/ralloc.h"
36 #include "util/strtod.h"
37
38 extern "C" void
39 _mesa_error_no_memory(const char *caller)
40 {
41 fprintf(stderr, "Mesa error: out of memory in %s", caller);
42 }
43
44 void
45 _mesa_warning(struct gl_context *ctx, const char *fmt, ...)
46 {
47 va_list vargs;
48 (void) ctx;
49
50 va_start(vargs, fmt);
51
52 /* This output is not thread-safe, but that's good enough for the
53 * standalone compiler.
54 */
55 fprintf(stderr, "Mesa warning: ");
56 vfprintf(stderr, fmt, vargs);
57 fprintf(stderr, "\n");
58
59 va_end(vargs);
60 }
61
62 void
63 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
64 struct gl_shader *sh)
65 {
66 (void) ctx;
67 *ptr = sh;
68 }
69
70 void
71 _mesa_shader_debug(struct gl_context *, GLenum, GLuint *,
72 const char *, int)
73 {
74 }
75
76 struct gl_shader *
77 _mesa_new_shader(struct gl_context *ctx, GLuint name, GLenum type)
78 {
79 struct gl_shader *shader;
80
81 (void) ctx;
82
83 assert(type == GL_FRAGMENT_SHADER || type == GL_VERTEX_SHADER);
84 shader = rzalloc(NULL, struct gl_shader);
85 if (shader) {
86 shader->Type = type;
87 shader->Stage = _mesa_shader_enum_to_shader_stage(type);
88 shader->Name = name;
89 shader->RefCount = 1;
90 }
91 return shader;
92 }
93
94 void
95 _mesa_delete_shader(struct gl_context *ctx, struct gl_shader *sh)
96 {
97 free((void *)sh->Source);
98 free(sh->Label);
99 ralloc_free(sh);
100 }
101
102 void
103 _mesa_clear_shader_program_data(struct gl_shader_program *shProg)
104 {
105 unsigned i;
106
107 shProg->NumUniformStorage = 0;
108 shProg->UniformStorage = NULL;
109 shProg->NumUniformRemapTable = 0;
110 shProg->UniformRemapTable = NULL;
111 shProg->UniformHash = NULL;
112
113 ralloc_free(shProg->InfoLog);
114 shProg->InfoLog = ralloc_strdup(shProg, "");
115
116 ralloc_free(shProg->BufferInterfaceBlocks);
117 shProg->BufferInterfaceBlocks = NULL;
118 shProg->NumBufferInterfaceBlocks = 0;
119
120 ralloc_free(shProg->UniformBlocks);
121 shProg->UniformBlocks = NULL;
122 shProg->NumUniformBlocks = 0;
123
124 ralloc_free(shProg->ShaderStorageBlocks);
125 shProg->ShaderStorageBlocks = NULL;
126 shProg->NumShaderStorageBlocks = 0;
127
128 for (i = 0; i < MESA_SHADER_STAGES; i++) {
129 ralloc_free(shProg->UniformBlockStageIndex[i]);
130 shProg->UniformBlockStageIndex[i] = NULL;
131 }
132
133 ralloc_free(shProg->AtomicBuffers);
134 shProg->AtomicBuffers = NULL;
135 shProg->NumAtomicBuffers = 0;
136 }
137
138 void initialize_context_to_defaults(struct gl_context *ctx, gl_api api)
139 {
140 memset(ctx, 0, sizeof(*ctx));
141
142 ctx->API = api;
143
144 ctx->Extensions.dummy_false = false;
145 ctx->Extensions.dummy_true = true;
146 ctx->Extensions.ARB_compute_shader = true;
147 ctx->Extensions.ARB_conservative_depth = true;
148 ctx->Extensions.ARB_draw_instanced = true;
149 ctx->Extensions.ARB_ES2_compatibility = true;
150 ctx->Extensions.ARB_ES3_compatibility = true;
151 ctx->Extensions.ARB_explicit_attrib_location = true;
152 ctx->Extensions.ARB_fragment_coord_conventions = true;
153 ctx->Extensions.ARB_fragment_layer_viewport = true;
154 ctx->Extensions.ARB_gpu_shader5 = true;
155 ctx->Extensions.ARB_gpu_shader_fp64 = true;
156 ctx->Extensions.ARB_sample_shading = true;
157 ctx->Extensions.ARB_shader_bit_encoding = true;
158 ctx->Extensions.ARB_shader_stencil_export = true;
159 ctx->Extensions.ARB_shader_subroutine = true;
160 ctx->Extensions.ARB_shader_texture_lod = true;
161 ctx->Extensions.ARB_shading_language_420pack = true;
162 ctx->Extensions.ARB_shading_language_packing = true;
163 ctx->Extensions.ARB_tessellation_shader = true;
164 ctx->Extensions.ARB_texture_cube_map_array = true;
165 ctx->Extensions.ARB_texture_gather = true;
166 ctx->Extensions.ARB_texture_multisample = true;
167 ctx->Extensions.ARB_texture_query_levels = true;
168 ctx->Extensions.ARB_texture_query_lod = true;
169 ctx->Extensions.ARB_uniform_buffer_object = true;
170 ctx->Extensions.ARB_viewport_array = true;
171
172 ctx->Extensions.OES_EGL_image_external = true;
173 ctx->Extensions.OES_standard_derivatives = true;
174
175 ctx->Extensions.EXT_shader_integer_mix = true;
176 ctx->Extensions.EXT_texture3D = true;
177 ctx->Extensions.EXT_texture_array = true;
178
179 ctx->Extensions.NV_texture_rectangle = true;
180
181 ctx->Const.GLSLVersion = 120;
182
183 /* 1.20 minimums. */
184 ctx->Const.MaxLights = 8;
185 ctx->Const.MaxClipPlanes = 6;
186 ctx->Const.MaxTextureUnits = 2;
187 ctx->Const.MaxTextureCoordUnits = 2;
188 ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs = 16;
189
190 ctx->Const.Program[MESA_SHADER_VERTEX].MaxUniformComponents = 512;
191 ctx->Const.Program[MESA_SHADER_VERTEX].MaxOutputComponents = 32;
192 ctx->Const.MaxVarying = 8; /* == gl_MaxVaryingFloats / 4 */
193 ctx->Const.Program[MESA_SHADER_VERTEX].MaxTextureImageUnits = 0;
194 ctx->Const.MaxCombinedTextureImageUnits = 2;
195 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = 2;
196 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxUniformComponents = 64;
197 ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxInputComponents = 32;
198
199 ctx->Const.MaxDrawBuffers = 1;
200 ctx->Const.MaxComputeWorkGroupCount[0] = 65535;
201 ctx->Const.MaxComputeWorkGroupCount[1] = 65535;
202 ctx->Const.MaxComputeWorkGroupCount[2] = 65535;
203 ctx->Const.MaxComputeWorkGroupSize[0] = 1024;
204 ctx->Const.MaxComputeWorkGroupSize[1] = 1024;
205 ctx->Const.MaxComputeWorkGroupSize[2] = 64;
206 ctx->Const.MaxComputeWorkGroupInvocations = 1024;
207 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxTextureImageUnits = 16;
208 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxUniformComponents = 1024;
209 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxInputComponents = 0; /* not used */
210 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxOutputComponents = 0; /* not used */
211
212 /* Set up default shader compiler options. */
213 struct gl_shader_compiler_options options;
214 memset(&options, 0, sizeof(options));
215 options.MaxUnrollIterations = 32;
216 options.MaxIfDepth = UINT_MAX;
217
218 for (int sh = 0; sh < MESA_SHADER_STAGES; ++sh)
219 memcpy(&ctx->Const.ShaderCompilerOptions[sh], &options, sizeof(options));
220
221 _mesa_locale_init();
222 }