mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 08:51:28 +00:00
The default value is 1, and the assumption in target_spirv is that if the first one is set, all are set, but the source code doesn't need to set any explicitly.
80 lines
2 KiB
C
80 lines
2 KiB
C
/*
|
|
glsl-sub_comp.c
|
|
|
|
GLSL compute shader sublanguage
|
|
|
|
Copyright (C) 2024 Bill Currie <bill@taniwha.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "QF/alloc.h"
|
|
#include "QF/hash.h"
|
|
#include "QF/va.h"
|
|
|
|
#include "tools/qfcc/include/def.h"
|
|
#include "tools/qfcc/include/diagnostic.h"
|
|
#include "tools/qfcc/include/glsl-lang.h"
|
|
#include "tools/qfcc/include/qfcc.h"
|
|
#include "tools/qfcc/include/shared.h"
|
|
#include "tools/qfcc/include/spirv.h"
|
|
#include "tools/qfcc/include/strpool.h"
|
|
#include "tools/qfcc/include/symtab.h"
|
|
#include "tools/qfcc/include/type.h"
|
|
|
|
static const char *glsl_comp_interface_default_names[glsl_num_interfaces] = {
|
|
[glsl_in] = ".control",
|
|
[glsl_uniform] = ".default",
|
|
[glsl_buffer] = ".default",
|
|
[glsl_shared] = ".default",
|
|
};
|
|
|
|
glsl_sublang_t glsl_comp_sublanguage = {
|
|
.name = "compute",
|
|
.interface_default_names = glsl_comp_interface_default_names,
|
|
.model_name = "GLCompute",
|
|
};
|
|
|
|
int
|
|
glsl_finish_comp (const char *file, rua_ctx_t *ctx)
|
|
{
|
|
if (!pr.module || !pr.module->entry_points) {
|
|
return 1;
|
|
}
|
|
const expr_t *size = nullptr;
|
|
for (int i = 0; i < 3; i++) {
|
|
if (!pr.module->entry_points->local_size[i]) {
|
|
size = new_int_expr (1, false);
|
|
break;
|
|
}
|
|
}
|
|
if (size) {
|
|
for (int i = 0; i < 3; i++) {
|
|
if (!pr.module->entry_points->local_size[i]) {
|
|
pr.module->entry_points->local_size[i] = size;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return 1;
|
|
}
|