RetroArch/gfx/drivers_shader/glslang_util.c

345 lines
8.6 KiB
C
Raw Normal View History

2016-02-16 20:24:00 +01:00
/* RetroArch - A frontend for libretro.
2017-01-22 13:40:32 +01:00
* Copyright (C) 2010-2017 - Hans-Kristian Arntzen
2019-02-03 15:49:35 -08:00
*
2016-02-16 20:24:00 +01:00
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2016-09-11 15:07:07 +02:00
#include <string.h>
2016-02-16 20:24:00 +01:00
2016-09-16 17:33:18 +02:00
#include <retro_miscellaneous.h>
2016-09-11 15:07:07 +02:00
#include <file/file_path.h>
#include <file/config_file.h>
2016-03-20 16:29:14 +01:00
#include <streams/file_stream.h>
2016-09-16 17:33:18 +02:00
#include <string/stdstring.h>
#ifdef HAVE_CONFIG_H
2021-08-18 14:19:48 -04:00
#include "../../config.h"
#endif
#include "glslang_util.h"
2016-09-11 15:07:07 +02:00
#include "../../verbosity.h"
2016-02-16 20:24:00 +01:00
static void get_include_file(
const char *line, char *include_file, size_t len)
{
char *end = NULL;
2019-08-12 19:33:50 +02:00
char *start = (char*)strchr(line, '\"');
if (!start)
return;
start++;
end = (char*)strchr(start, '\"');
if (!end)
return;
*end = '\0';
strlcpy(include_file, start, len);
}
bool slang_texture_semantic_is_array(enum slang_texture_semantic sem)
{
switch (sem)
{
case SLANG_TEXTURE_SEMANTIC_ORIGINAL_HISTORY:
case SLANG_TEXTURE_SEMANTIC_PASS_OUTPUT:
case SLANG_TEXTURE_SEMANTIC_PASS_FEEDBACK:
case SLANG_TEXTURE_SEMANTIC_USER:
return true;
default:
break;
}
return false;
}
enum slang_texture_semantic slang_name_to_texture_semantic_array(
const char *name, const char **names,
unsigned *index)
{
unsigned i = 0;
while (*names)
{
const char *n = *names;
enum slang_texture_semantic semantic = (enum slang_texture_semantic)(i);
if (slang_texture_semantic_is_array(semantic))
{
size_t baselen = strlen(n);
int cmp = strncmp(n, name, baselen);
if (cmp == 0)
{
*index = (unsigned)strtoul(name + baselen, NULL, 0);
return semantic;
}
}
else if (string_is_equal(name, n))
{
*index = 0;
return semantic;
}
i++;
names++;
}
return SLANG_INVALID_TEXTURE_SEMANTIC;
}
2019-08-18 14:40:26 +02:00
bool glslang_read_shader_file(const char *path,
struct string_list *output, bool root_file)
2016-02-16 20:24:00 +01:00
{
2020-08-26 23:22:49 +02:00
size_t i;
2016-10-21 05:57:40 +02:00
char tmp[PATH_MAX_LENGTH];
union string_list_elem_attr attr;
const char *basename = NULL;
uint8_t *buf = NULL;
int64_t buf_len = 0;
2020-08-26 23:22:49 +02:00
struct string_list lines = {0};
bool ret = false;
tmp[0] = '\0';
attr.i = 0;
/* Sanity check */
if (string_is_empty(path) || !output)
return false;
2016-03-02 00:07:31 +01:00
basename = path_basename_nocompression(path);
2016-10-21 05:57:40 +02:00
if (string_is_empty(basename))
return false;
/* Read file contents */
if (!filestream_read_file(path, (void**)&buf, &buf_len))
2016-02-16 20:24:00 +01:00
{
2022-01-31 19:05:23 +02:00
RARCH_ERR("[slang]: Failed to open shader file: \"%s\".\n", path);
2016-02-16 20:24:00 +01:00
return false;
}
if (buf_len > 0)
{
/* Remove Windows '\r' chars if we encounter them */
string_remove_all_chars((char*)buf, '\r');
2017-01-12 10:32:57 +01:00
/* Split into lines
* (Blank lines must be included) */
2020-08-26 23:22:49 +02:00
string_list_initialize(&lines);
ret = string_separate_noalloc(&lines, (char*)buf, "\n");
}
2016-03-02 00:07:31 +01:00
/* Buffer is no longer required - clean up */
if (buf)
free(buf);
2017-01-12 10:32:57 +01:00
/* Sanity check */
2020-08-26 23:22:49 +02:00
if (!ret)
return false;
2020-08-26 23:22:49 +02:00
if (lines.size < 1)
2017-01-12 10:32:57 +01:00
goto error;
2016-02-16 20:24:00 +01:00
/* If this is the 'parent' shader file, ensure that first
* line is a 'VERSION' string */
if (root_file)
2016-02-16 20:24:00 +01:00
{
2020-08-26 23:22:49 +02:00
const char *line = lines.elems[0].data;
if (strncmp("#version ", line, STRLEN_CONST("#version ")))
{
2022-01-31 19:05:23 +02:00
RARCH_ERR("[slang]: First line of the shader must contain a valid "
"#version string.\n");
goto error;
}
if (!string_list_append(output, line, attr))
goto error;
/* Allows us to use #line to make dealing with shader
* errors easier.
* This is supported by glslang, but since we always
* use glslang statically, this is fine. */
if (!string_list_append(output,
"#extension GL_GOOGLE_cpp_style_line_directive : require",
attr))
goto error;
2016-02-16 20:24:00 +01:00
}
2019-02-03 15:49:35 -08:00
/* At least VIM treats the first line as line #1,
2016-09-11 15:07:07 +02:00
* so offset everything by one. */
snprintf(tmp, sizeof(tmp), "#line %u \"%s\"", root_file ? 2 : 1, basename);
if (!string_list_append(output, tmp, attr))
goto error;
/* Loop through lines of file */
2020-08-26 23:22:49 +02:00
for (i = root_file ? 1 : 0; i < lines.size; i++)
{
2020-08-26 23:22:49 +02:00
const char *line = lines.elems[i].data;
2016-09-11 15:07:07 +02:00
/* Check for 'include' statements */
if (!strncmp("#include ", line, STRLEN_CONST("#include ")))
{
char include_file[PATH_MAX_LENGTH];
char include_path[PATH_MAX_LENGTH];
2017-01-12 10:32:57 +01:00
include_file[0] = '\0';
include_path[0] = '\0';
2016-09-11 15:07:07 +02:00
/* Build include file path */
get_include_file(line, include_file, sizeof(include_file));
2016-09-11 15:07:07 +02:00
if (string_is_empty(include_file))
{
2022-01-31 19:05:23 +02:00
RARCH_ERR("[slang]: Invalid include statement \"%s\".\n", line);
2017-01-12 10:32:57 +01:00
goto error;
}
2016-09-11 15:07:07 +02:00
fill_pathname_resolve_relative(
include_path, path, include_file, sizeof(include_path));
/* Parse include file */
if (!glslang_read_shader_file(include_path, output, false))
2017-01-12 10:32:57 +01:00
goto error;
2019-02-03 15:49:35 -08:00
/* After including a file, use line directive
2016-09-11 15:07:07 +02:00
* to pull it back to current file. */
snprintf(tmp, sizeof(tmp), "#line %u \"%s\"",
(unsigned)(i + 1), basename);
if (!string_list_append(output, tmp, attr))
goto error;
}
else if (!strncmp("#endif", line, STRLEN_CONST("#endif")) ||
!strncmp("#pragma", line, STRLEN_CONST("#pragma")))
{
2016-09-11 15:07:07 +02:00
/* #line seems to be ignored if preprocessor tests fail,
* so we should reapply #line after each #endif.
2019-02-03 15:49:35 -08:00
* Add extra offset here since we're setting #line
2016-09-11 15:07:07 +02:00
* for the line after this one.
*/
if (!string_list_append(output, line, attr))
goto error;
2019-08-18 14:40:26 +02:00
snprintf(tmp, sizeof(tmp), "#line %u \"%s\"",
(unsigned)(i + 2), basename);
if (!string_list_append(output, tmp, attr))
goto error;
2019-08-08 17:04:45 +02:00
}
else
if (!string_list_append(output, line, attr))
goto error;
}
2016-02-16 20:24:00 +01:00
2020-08-26 23:22:49 +02:00
string_list_deinitialize(&lines);
2016-02-16 20:24:00 +01:00
return true;
2017-01-12 10:32:57 +01:00
error:
2020-08-26 23:22:49 +02:00
string_list_deinitialize(&lines);
2017-01-12 10:32:57 +01:00
return false;
2016-02-16 20:24:00 +01:00
}
const char *glslang_format_to_string(enum glslang_format fmt)
{
2021-03-27 02:22:39 +01:00
static const char *glslang_formats[] = {
"UNKNOWN",
"R8_UNORM",
"R8_UINT",
"R8_SINT",
"R8G8_UNORM",
"R8G8_UINT",
"R8G8_SINT",
"R8G8B8A8_UNORM",
"R8G8B8A8_UINT",
"R8G8B8A8_SINT",
"R8G8B8A8_SRGB",
"A2B10G10R10_UNORM_PACK32",
"A2B10G10R10_UINT_PACK32",
"R16_UINT",
"R16_SINT",
"R16_SFLOAT",
"R16G16_UINT",
"R16G16_SINT",
"R16G16_SFLOAT",
"R16G16B16A16_UINT",
"R16G16B16A16_SINT",
"R16G16B16A16_SFLOAT",
"R32_UINT",
"R32_SINT",
"R32_SFLOAT",
"R32G32_UINT",
"R32G32_SINT",
"R32G32_SFLOAT",
"R32G32B32A32_UINT",
"R32G32B32A32_SINT",
"R32G32B32A32_SFLOAT",
};
return glslang_formats[fmt];
}
2019-08-18 18:01:21 +02:00
enum glslang_format glslang_find_format(const char *fmt)
{
#undef FMT
#define FMT(x) if (string_is_equal(fmt, #x)) return SLANG_FORMAT_ ## x
FMT(R8_UNORM);
FMT(R8_UINT);
FMT(R8_SINT);
FMT(R8G8_UNORM);
FMT(R8G8_UINT);
FMT(R8G8_SINT);
FMT(R8G8B8A8_UNORM);
FMT(R8G8B8A8_UINT);
FMT(R8G8B8A8_SINT);
FMT(R8G8B8A8_SRGB);
FMT(A2B10G10R10_UNORM_PACK32);
FMT(A2B10G10R10_UINT_PACK32);
FMT(R16_UINT);
FMT(R16_SINT);
FMT(R16_SFLOAT);
FMT(R16G16_UINT);
FMT(R16G16_SINT);
FMT(R16G16_SFLOAT);
FMT(R16G16B16A16_UINT);
FMT(R16G16B16A16_SINT);
FMT(R16G16B16A16_SFLOAT);
FMT(R32_UINT);
FMT(R32_SINT);
FMT(R32_SFLOAT);
FMT(R32G32_UINT);
FMT(R32G32_SINT);
FMT(R32G32_SFLOAT);
FMT(R32G32B32A32_UINT);
FMT(R32G32B32A32_SINT);
FMT(R32G32B32A32_SFLOAT);
return SLANG_FORMAT_UNKNOWN;
}
2020-08-03 18:34:33 +02:00
2020-08-03 18:37:07 +02:00
unsigned glslang_num_miplevels(unsigned width, unsigned height)
{
unsigned size = MAX(width, height);
unsigned levels = 0;
while (size)
{
levels++;
size >>= 1;
}
return levels;
}