diff options
author | 3gg <3gg@shellblade.net> | 2023-01-03 08:49:54 -0800 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2023-01-03 08:49:54 -0800 |
commit | 1e3fcf5b38d67fb54102786be74af42be5c6792f (patch) | |
tree | 88bff4e24121c50d0e3c62f5ddb4eff6a3dfa238 |
Initial commit.
133 files changed, 31425 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..2aac1ab --- /dev/null +++ b/CMakeLists.txt | |||
@@ -0,0 +1,5 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | add_subdirectory(gfx) | ||
4 | add_subdirectory(gfx-app) | ||
5 | add_subdirectory(gltfview) | ||
diff --git a/gfx-app/CMakeLists.txt b/gfx-app/CMakeLists.txt new file mode 100644 index 0000000..d9cb80f --- /dev/null +++ b/gfx-app/CMakeLists.txt | |||
@@ -0,0 +1,14 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | project(gfx-app) | ||
4 | |||
5 | add_library(gfx-app | ||
6 | src/gfx_app.c) | ||
7 | |||
8 | target_include_directories(gfx-app PUBLIC | ||
9 | include/) | ||
10 | |||
11 | target_link_libraries(gfx-app PUBLIC | ||
12 | glfw | ||
13 | log | ||
14 | timer) | ||
diff --git a/gfx-app/README.md b/gfx-app/README.md new file mode 100644 index 0000000..b21d1aa --- /dev/null +++ b/gfx-app/README.md | |||
@@ -0,0 +1,3 @@ | |||
1 | # Gfx App | ||
2 | |||
3 | A small library to more conveniently create a window and run a game loop. | ||
diff --git a/gfx-app/include/gfx/gfx_app.h b/gfx-app/include/gfx/gfx_app.h new file mode 100644 index 0000000..bdb3550 --- /dev/null +++ b/gfx-app/include/gfx/gfx_app.h | |||
@@ -0,0 +1,23 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <stdbool.h> | ||
4 | |||
5 | typedef struct GfxAppDesc { | ||
6 | int argc; // Number of application arguments. | ||
7 | const char** argv; // Application arguments. | ||
8 | int width; // Window width. | ||
9 | int height; // Window height. | ||
10 | int max_fps; // Desired maximum framerate. 0 to disable. | ||
11 | double update_delta_time; // Desired delta time between frame updates. | ||
12 | } GfxAppDesc; | ||
13 | |||
14 | typedef struct GfxAppCallbacks { | ||
15 | bool (*init)(const GfxAppDesc*, void** app_state); | ||
16 | void (*update)(void* app_state, double t, double dt); | ||
17 | void (*render)(void* app_state); | ||
18 | void (*resize)(void* app_state, int width, int height); | ||
19 | void (*shutdown)(void* app_state); | ||
20 | } GfxAppCallbacks; | ||
21 | |||
22 | /// Create a window with an OpenGL context and run the main loop. | ||
23 | bool gfx_app_run(const GfxAppDesc*, const GfxAppCallbacks*); | ||
diff --git a/gfx-app/src/gfx_app.c b/gfx-app/src/gfx_app.c new file mode 100644 index 0000000..f3f0473 --- /dev/null +++ b/gfx-app/src/gfx_app.c | |||
@@ -0,0 +1,126 @@ | |||
1 | #include <gfx/gfx_app.h> | ||
2 | |||
3 | #include <GLFW/glfw3.h> | ||
4 | #include <log/log.h> | ||
5 | #include <timer.h> | ||
6 | |||
7 | #include <assert.h> | ||
8 | #include <stdlib.h> | ||
9 | |||
10 | /// Application state. | ||
11 | typedef struct GfxApp { | ||
12 | void* app_state; | ||
13 | GfxAppCallbacks callbacks; | ||
14 | int max_fps; | ||
15 | double update_delta_time; | ||
16 | GLFWwindow* window; | ||
17 | } GfxApp; | ||
18 | |||
19 | /// Storing the application state in a global variable so that we can call the | ||
20 | /// application's callbacks from GLFW callbacks. | ||
21 | static GfxApp g_gfx_app; | ||
22 | |||
23 | /// Called by GLFW when the window is resized. | ||
24 | static void on_resize(GLFWwindow* window, int width, int height) { | ||
25 | (*g_gfx_app.callbacks.resize)(g_gfx_app.app_state, width, height); | ||
26 | } | ||
27 | |||
28 | /// Run the application's main loop. | ||
29 | static void loop(GfxApp* app) { | ||
30 | assert(app); | ||
31 | assert(app->window); | ||
32 | |||
33 | const double min_frame_time = | ||
34 | app->max_fps > 0 ? 1.0 / (double)(app->max_fps) : 0.0; | ||
35 | const double update_dt = app->update_delta_time; | ||
36 | double time = 0.0; | ||
37 | double time_budget = 0.0; | ||
38 | Timer timer = timer_make(); | ||
39 | |||
40 | // Warm up the rendering before entering the main loop. A renderer can compile | ||
41 | // shaders and do other initialization the first time it renders a scene. | ||
42 | (*app->callbacks.render)(app->app_state); | ||
43 | glfwSwapBuffers(app->window); | ||
44 | |||
45 | timer_start(&timer); | ||
46 | while (!glfwWindowShouldClose(app->window)) { | ||
47 | timer_tick(&timer); | ||
48 | time_budget += time_delta_to_sec(timer.delta_time); | ||
49 | |||
50 | while (time_budget >= update_dt) { | ||
51 | (*app->callbacks.update)(app->app_state, time, update_dt); | ||
52 | time += update_dt; | ||
53 | time_budget -= update_dt; | ||
54 | } | ||
55 | |||
56 | (*app->callbacks.render)(app->app_state); | ||
57 | glfwSwapBuffers(app->window); | ||
58 | glfwPollEvents(); | ||
59 | |||
60 | const time_point frame_end = time_now(); | ||
61 | const time_delta frame_time = time_diff(timer.last_tick, frame_end); | ||
62 | if (min_frame_time > 0.0 && frame_time < min_frame_time) { | ||
63 | time_sleep(min_frame_time - frame_time); | ||
64 | } | ||
65 | } | ||
66 | } | ||
67 | |||
68 | bool gfx_app_run(const GfxAppDesc* desc, const GfxAppCallbacks* callbacks) { | ||
69 | assert(desc); | ||
70 | assert(callbacks); | ||
71 | |||
72 | bool success = false; | ||
73 | |||
74 | g_gfx_app.callbacks = *callbacks; | ||
75 | g_gfx_app.max_fps = desc->max_fps; | ||
76 | g_gfx_app.update_delta_time = desc->update_delta_time; | ||
77 | g_gfx_app.window = 0; | ||
78 | |||
79 | if (!glfwInit()) { | ||
80 | LOGE("glfwInit() failed"); | ||
81 | return false; | ||
82 | } | ||
83 | |||
84 | const int major = 4; | ||
85 | const int minor = 4; | ||
86 | glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_API); | ||
87 | glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, major); | ||
88 | glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, minor); | ||
89 | glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); | ||
90 | glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE); | ||
91 | // TODO: Test antialiasing later on. | ||
92 | // glfwWindowHint(GLFW_SAMPLES, 4); | ||
93 | |||
94 | g_gfx_app.window = | ||
95 | glfwCreateWindow(desc->width, desc->height, "space", NULL, NULL); | ||
96 | if (!g_gfx_app.window) { | ||
97 | LOGE("glfwCreateWindow() failed"); | ||
98 | goto cleanup; | ||
99 | } | ||
100 | glfwMakeContextCurrent(g_gfx_app.window); | ||
101 | |||
102 | // Initialize the application's state before setting any callbacks. | ||
103 | if (!(*g_gfx_app.callbacks.init)(desc, &g_gfx_app.app_state)) { | ||
104 | LOGE("Failed to initialize application"); | ||
105 | goto cleanup; | ||
106 | } | ||
107 | |||
108 | // Trigger an initial resize for convenience. | ||
109 | (*g_gfx_app.callbacks.resize)(g_gfx_app.app_state, desc->width, desc->height); | ||
110 | |||
111 | // Set GLFW callbacks now that the application has been initialized. | ||
112 | glfwSetWindowSizeCallback(g_gfx_app.window, on_resize); | ||
113 | |||
114 | loop(&g_gfx_app); | ||
115 | |||
116 | (*g_gfx_app.callbacks.shutdown)(g_gfx_app.app_state); | ||
117 | |||
118 | success = true; | ||
119 | |||
120 | cleanup: | ||
121 | if (g_gfx_app.window) { | ||
122 | glfwDestroyWindow(g_gfx_app.window); | ||
123 | } | ||
124 | glfwTerminate(); | ||
125 | return success; | ||
126 | } | ||
diff --git a/gfx/CMakeLists.txt b/gfx/CMakeLists.txt new file mode 100644 index 0000000..e91450b --- /dev/null +++ b/gfx/CMakeLists.txt | |||
@@ -0,0 +1,84 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | include(cmake/shader.txt) | ||
4 | |||
5 | add_subdirectory(contrib/cgltf) | ||
6 | add_subdirectory(contrib/cgltf-tangents) | ||
7 | add_subdirectory(contrib/glad) | ||
8 | add_subdirectory(contrib/stb) | ||
9 | |||
10 | project(gfx) | ||
11 | |||
12 | add_shader_library(shaders | ||
13 | shaders/brdf_integration_map.frag | ||
14 | shaders/cook_torrance.frag | ||
15 | shaders/cook_torrance.vert | ||
16 | shaders/cubemap_filtering.vert | ||
17 | shaders/debug3d.frag | ||
18 | shaders/debug3d.vert | ||
19 | shaders/irradiance_map.frag | ||
20 | shaders/prefiltered_environment_map.frag | ||
21 | shaders/quad.vert | ||
22 | shaders/skyquad.frag | ||
23 | shaders/skyquad.vert | ||
24 | shaders/view_normal_mapped_normals.frag | ||
25 | shaders/view_normal_mapped_normals.vert | ||
26 | shaders/view_normals.frag | ||
27 | shaders/view_normals.vert | ||
28 | shaders/view_tangents.frag | ||
29 | shaders/view_tangents.vert | ||
30 | shaders/view_texture.frag | ||
31 | shaders/view_texture.vert) | ||
32 | |||
33 | add_library(gfx | ||
34 | src/render/buffer.c | ||
35 | src/render/framebuffer.c | ||
36 | src/render/geometry.c | ||
37 | src/render/render_backend.c | ||
38 | src/render/renderbuffer.c | ||
39 | src/render/shader_program.c | ||
40 | src/render/shader.c | ||
41 | src/render/texture.c | ||
42 | src/renderer/renderer.c | ||
43 | src/scene/camera.c | ||
44 | src/scene/light.c | ||
45 | src/scene/material.c | ||
46 | src/scene/mesh.c | ||
47 | src/scene/node.c | ||
48 | src/scene/object.c | ||
49 | src/scene/scene.c | ||
50 | src/scene/scene_memory.c | ||
51 | src/error.c | ||
52 | src/gfx.c | ||
53 | src/util/geometry.c | ||
54 | src/util/ibl.c | ||
55 | src/util/shader.c | ||
56 | src/util/scene.c | ||
57 | src/util/skyquad.c | ||
58 | src/util/texture.c) | ||
59 | |||
60 | target_include_directories(gfx PUBLIC | ||
61 | include) | ||
62 | |||
63 | target_include_directories(gfx PRIVATE | ||
64 | src) | ||
65 | |||
66 | target_compile_options(gfx PRIVATE -std=gnu11 -Wall -Wextra -Wpedantic) | ||
67 | |||
68 | target_link_libraries(gfx PUBLIC | ||
69 | cstring) | ||
70 | |||
71 | target_link_libraries(gfx PRIVATE | ||
72 | cgltf | ||
73 | cgltf-tangents | ||
74 | glad | ||
75 | listpool | ||
76 | log | ||
77 | math | ||
78 | mempool | ||
79 | shaders | ||
80 | stb | ||
81 | # System libraries. | ||
82 | GL | ||
83 | # Required to initialize GLAD. | ||
84 | -ldl) | ||
diff --git a/gfx/README.md b/gfx/README.md new file mode 100644 index 0000000..97c6ce9 --- /dev/null +++ b/gfx/README.md | |||
@@ -0,0 +1,71 @@ | |||
1 | # GFX - 3D Rendering Library | ||
2 | |||
3 | A portable 3D rendering library with minimal dependencies written for | ||
4 | educational purposes. | ||
5 | |||
6 | ## Guiding Principles | ||
7 | |||
8 | - Provide a minimal set of functionality necessary for indie games and graphics | ||
9 | applications. | ||
10 | - Provide a minimal interface; physically hide the implementation. | ||
11 | - Allow for additional future rendering backends (e.g. Vulkan). | ||
12 | - Strive for a minimal set of dependencies. | ||
13 | - All dependencies but system libraries should be compiled with the graphics | ||
14 | library for portability and ease of use. | ||
15 | - Rely on dynamic allocation as little as possible. Isolate dynamic allocation | ||
16 | to where it is strictly needed. | ||
17 | |||
18 | ## Design | ||
19 | |||
20 | ### Gfx | ||
21 | |||
22 | The `Gfx` object represents the graphics subsystem and provides a high-level API | ||
23 | to render graphics. The `Gfx` object exposes a `Render` backend and a `Renderer` | ||
24 | , and allows the caller to create `Scene` objects. | ||
25 | |||
26 | ### Render Backend | ||
27 | |||
28 | The `Render Backend` is a thin abstraction layer over low-level graphics APIs | ||
29 | (OpenGL, etc). It presents an immediate mode style of rendering, whereby callers | ||
30 | directly submit draw commands to the `Render Backend`. | ||
31 | |||
32 | The `Render Backend` holds GPU resources such as geometry, textures, shaders, | ||
33 | etc. | ||
34 | |||
35 | Currently there is only one implementation of the `Render Backend` based on | ||
36 | OpenGL for simplicity and portability. | ||
37 | |||
38 | #### Ownership | ||
39 | |||
40 | The `Render Backend` owns all rendering resources: buffers, geometries, | ||
41 | textures, shaders, etc. Even resources that point to other resources do not own | ||
42 | those other resources (geometries and buffers). | ||
43 | |||
44 | There is no sophisticated resource sharing on the renderer side, like reference | ||
45 | counting or resource naming. Instead, it is up to the user to make appropriate | ||
46 | use of allocated resources and share them where appropriate. | ||
47 | |||
48 | ### Scene | ||
49 | |||
50 | A `Scene` is the top-level object of a scene graph. A scene graph is a | ||
51 | description of the scene and holds all of the elements that make up a scene: | ||
52 | nodes, cameras, lights, objects, etc. | ||
53 | |||
54 | ### Renderer | ||
55 | |||
56 | The `Renderer` takes a `Render` backend and a `Scene` and renders the scene. | ||
57 | Currently, only a forward renderer is provided, but additional renderers can be | ||
58 | implemented in the future. | ||
59 | |||
60 | ## Future Work | ||
61 | |||
62 | - Ideally, some way to customize the rendering pipeline to allow for custom | ||
63 | multi-pass rendering algorithms. | ||
64 | |||
65 | ## Build (Ubuntu) | ||
66 | |||
67 | ``` | ||
68 | sudo apt install libbsd-dev libgl-dev libglfw3-dev zlib1g-dev | ||
69 | ``` | ||
70 | |||
71 | TODO: Add GLFW and zlib to `contrib/`. | ||
diff --git a/gfx/bin/txt2c.py b/gfx/bin/txt2c.py new file mode 100755 index 0000000..1d8ff70 --- /dev/null +++ b/gfx/bin/txt2c.py | |||
@@ -0,0 +1,62 @@ | |||
1 | #!/usr/bin/python3 | ||
2 | |||
3 | import fileinput | ||
4 | import os | ||
5 | import sys | ||
6 | |||
7 | |||
8 | def escape_quotes(string): | ||
9 | return string.replace("\"", '\\"') | ||
10 | |||
11 | |||
12 | def escape_newlines(string): | ||
13 | return string.replace("\n", "\\n") | ||
14 | |||
15 | |||
16 | def quote(string): | ||
17 | return "\"" + string + "\"" | ||
18 | |||
19 | |||
20 | def main(): | ||
21 | if len(sys.argv) < 3: | ||
22 | print("Usage: {} [text files...] [C files...]".format(sys.argv[0])) | ||
23 | return 1 | ||
24 | |||
25 | files = sys.argv[1:] | ||
26 | assert(len(files) % 2 == 0) | ||
27 | N = int(len(files) / 2) | ||
28 | text_files = files[:N] | ||
29 | c_files = files[N:] | ||
30 | |||
31 | for i in range(len(text_files)): | ||
32 | text_file = text_files[i] | ||
33 | c_file = c_files[i] | ||
34 | h_file = c_file.replace(".c", ".h") | ||
35 | variable_name = os.path.basename(text_file).replace(".", "_") | ||
36 | |||
37 | os.makedirs(os.path.join(".", os.path.dirname(c_file)), exist_ok=True) | ||
38 | |||
39 | # Create the C file. | ||
40 | with open(c_file, 'w') as out_file: | ||
41 | out_file.write("const char {}[] =\n".format(variable_name)) | ||
42 | pad = " " | ||
43 | with open(text_file, 'r') as in_file: | ||
44 | for line in in_file.readlines(): | ||
45 | line = escape_quotes(line) | ||
46 | line = escape_newlines(line) | ||
47 | line = quote(line) | ||
48 | line = pad + line + "\n" | ||
49 | out_file.write(line) | ||
50 | out_file.write(pad + "\"\";") | ||
51 | |||
52 | # Create the header file. | ||
53 | with open(h_file, 'w') as out_file: | ||
54 | out_file.write("#pragma once\n") | ||
55 | out_file.write("\n") | ||
56 | out_file.write("extern const char {}[];".format(variable_name)) | ||
57 | |||
58 | return 0 | ||
59 | |||
60 | |||
61 | if __name__ == '__main__': | ||
62 | sys.exit(main()) | ||
diff --git a/gfx/cmake/shader.txt b/gfx/cmake/shader.txt new file mode 100644 index 0000000..8273f4d --- /dev/null +++ b/gfx/cmake/shader.txt | |||
@@ -0,0 +1,5 @@ | |||
1 | include(cmake/txt2c.txt) | ||
2 | |||
3 | macro(add_shader_library) | ||
4 | txt2c(${ARGN}) | ||
5 | endmacro() | ||
diff --git a/gfx/cmake/txt2c.txt b/gfx/cmake/txt2c.txt new file mode 100644 index 0000000..0cb11a9 --- /dev/null +++ b/gfx/cmake/txt2c.txt | |||
@@ -0,0 +1,44 @@ | |||
1 | function(txt2c target) | ||
2 | set(BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}/${target}") | ||
3 | file(MAKE_DIRECTORY ${BUILD_DIR}) | ||
4 | message(${BUILD_DIR}) | ||
5 | |||
6 | set(TEXT_FILES) | ||
7 | set(SOURCE_FILES) | ||
8 | set(INCLUDE_DIRECTORIES) | ||
9 | foreach(filepath IN ITEMS ${ARGN}) | ||
10 | set(textfile "${CMAKE_CURRENT_SOURCE_DIR}/${filepath}") | ||
11 | list(APPEND TEXT_FILES ${textfile}) | ||
12 | |||
13 | set(srcfile "${BUILD_DIR}/${filepath}.c") | ||
14 | list(APPEND SOURCE_FILES ${srcfile}) | ||
15 | |||
16 | get_filename_component(include_dir ${srcfile} DIRECTORY) | ||
17 | list(APPEND INCLUDE_DIRECTORIES ${include_dir}) | ||
18 | endforeach() | ||
19 | |||
20 | foreach(filepath IN ITEMS ${TEXT_FILES}) | ||
21 | message(${filepath}) | ||
22 | endforeach() | ||
23 | |||
24 | foreach(filepath IN ITEMS ${SOURCE_FILES}) | ||
25 | message(${filepath}) | ||
26 | endforeach() | ||
27 | |||
28 | foreach(filepath IN ITEMS ${INCLUDE_DIRECTORIES}) | ||
29 | message(${filepath}) | ||
30 | endforeach() | ||
31 | |||
32 | add_custom_command(OUTPUT ${SOURCE_FILES} | ||
33 | COMMAND "${PROJECT_SOURCE_DIR}/bin/txt2c.py" ${TEXT_FILES} ${SOURCE_FILES} | ||
34 | WORKING_DIRECTORY ${BUILD_DIR} | ||
35 | DEPENDS ${ARGN} | ||
36 | COMMENT "Generating ${target}") | ||
37 | |||
38 | add_library(${target} | ||
39 | ${SOURCE_FILES}) | ||
40 | |||
41 | target_include_directories(${target} PUBLIC | ||
42 | ${BUILD_DIR} | ||
43 | ${INCLUDE_DIRECTORIES}) | ||
44 | endfunction() | ||
diff --git a/gfx/contrib/cgltf-tangents/CMakeLists.txt b/gfx/contrib/cgltf-tangents/CMakeLists.txt new file mode 100644 index 0000000..2c0771e --- /dev/null +++ b/gfx/contrib/cgltf-tangents/CMakeLists.txt | |||
@@ -0,0 +1,13 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | project(cgltf-tangents) | ||
4 | |||
5 | add_library(cgltf-tangents | ||
6 | cgltf_tangents.c | ||
7 | MikkTSpace/mikktspace.c) | ||
8 | |||
9 | target_include_directories(cgltf-tangents PUBLIC | ||
10 | ${CMAKE_CURRENT_SOURCE_DIR}) | ||
11 | |||
12 | target_link_libraries(cgltf-tangents PUBLIC | ||
13 | cgltf) | ||
diff --git a/gfx/contrib/cgltf-tangents/LICENSE b/gfx/contrib/cgltf-tangents/LICENSE new file mode 100644 index 0000000..7796e37 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/LICENSE | |||
@@ -0,0 +1,79 @@ | |||
1 | This project has two third-party dependencies: | ||
2 | - MikkTSpace | ||
3 | - cgltf | ||
4 | |||
5 | The license for this project and its dependencies are included below. | ||
6 | |||
7 | -------------------------------------------------------------------------------- | ||
8 | cgltf-tangents | ||
9 | -------------------------------------------------------------------------------- | ||
10 | |||
11 | Copyright 2022 Marc Sunet | ||
12 | |||
13 | Redistribution and use in source and binary forms, with or without modification, | ||
14 | are permitted provided that the following conditions are met: | ||
15 | |||
16 | 1. Redistributions of source code must retain the above copyright notice, this | ||
17 | list of conditions and the following disclaimer. | ||
18 | |||
19 | 2. Redistributions in binary form must reproduce the above copyright notice, | ||
20 | this list of conditions and the following disclaimer in the documentation and/or | ||
21 | other materials provided with the distribution. | ||
22 | |||
23 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
24 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
25 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
26 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | ||
27 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
28 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
29 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
30 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
31 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
32 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
33 | |||
34 | -------------------------------------------------------------------------------- | ||
35 | MikkTSpace | ||
36 | -------------------------------------------------------------------------------- | ||
37 | |||
38 | Copyright (C) 2011 by Morten S. Mikkelsen | ||
39 | |||
40 | This software is provided 'as-is', without any express or implied | ||
41 | warranty. In no event will the authors be held liable for any damages | ||
42 | arising from the use of this software. | ||
43 | |||
44 | Permission is granted to anyone to use this software for any purpose, | ||
45 | including commercial applications, and to alter it and redistribute it | ||
46 | freely, subject to the following restrictions: | ||
47 | |||
48 | 1. The origin of this software must not be misrepresented; you must not | ||
49 | claim that you wrote the original software. If you use this software | ||
50 | in a product, an acknowledgment in the product documentation would be | ||
51 | appreciated but is not required. | ||
52 | |||
53 | 2. Altered source versions must be plainly marked as such, and must not be | ||
54 | misrepresented as being the original software. | ||
55 | |||
56 | 3. This notice may not be removed or altered from any source distribution. | ||
57 | |||
58 | -------------------------------------------------------------------------------- | ||
59 | cgltf | ||
60 | -------------------------------------------------------------------------------- | ||
61 | |||
62 | Copyright (c) 2018-2021 Johannes Kuhlmann | ||
63 | |||
64 | Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
65 | this software and associated documentation files (the "Software"), to deal in | ||
66 | the Software without restriction, including without limitation the rights to | ||
67 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
68 | the Software, and to permit persons to whom the Software is furnished to do so, | ||
69 | subject to the following conditions: | ||
70 | |||
71 | The above copyright notice and this permission notice shall be included in all | ||
72 | copies or substantial portions of the Software. | ||
73 | |||
74 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
75 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
76 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
77 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
78 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
79 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
diff --git a/gfx/contrib/cgltf-tangents/MikkTSpace/README.md b/gfx/contrib/cgltf-tangents/MikkTSpace/README.md new file mode 100644 index 0000000..9fda155 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/MikkTSpace/README.md | |||
@@ -0,0 +1,4 @@ | |||
1 | # MikkTSpace | ||
2 | A common standard for tangent space used in baking tools to produce normal maps. | ||
3 | |||
4 | More information can be found at http://www.mikktspace.com/. | ||
diff --git a/gfx/contrib/cgltf-tangents/MikkTSpace/mikktspace.c b/gfx/contrib/cgltf-tangents/MikkTSpace/mikktspace.c new file mode 100644 index 0000000..0342ae0 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/MikkTSpace/mikktspace.c | |||
@@ -0,0 +1,1899 @@ | |||
1 | /** \file mikktspace/mikktspace.c | ||
2 | * \ingroup mikktspace | ||
3 | */ | ||
4 | /** | ||
5 | * Copyright (C) 2011 by Morten S. Mikkelsen | ||
6 | * | ||
7 | * This software is provided 'as-is', without any express or implied | ||
8 | * warranty. In no event will the authors be held liable for any damages | ||
9 | * arising from the use of this software. | ||
10 | * | ||
11 | * Permission is granted to anyone to use this software for any purpose, | ||
12 | * including commercial applications, and to alter it and redistribute it | ||
13 | * freely, subject to the following restrictions: | ||
14 | * | ||
15 | * 1. The origin of this software must not be misrepresented; you must not | ||
16 | * claim that you wrote the original software. If you use this software | ||
17 | * in a product, an acknowledgment in the product documentation would be | ||
18 | * appreciated but is not required. | ||
19 | * 2. Altered source versions must be plainly marked as such, and must not be | ||
20 | * misrepresented as being the original software. | ||
21 | * 3. This notice may not be removed or altered from any source distribution. | ||
22 | */ | ||
23 | |||
24 | #include <assert.h> | ||
25 | #include <stdio.h> | ||
26 | #include <math.h> | ||
27 | #include <string.h> | ||
28 | #include <float.h> | ||
29 | #include <stdlib.h> | ||
30 | |||
31 | #include "mikktspace.h" | ||
32 | |||
33 | #define TFALSE 0 | ||
34 | #define TTRUE 1 | ||
35 | |||
36 | #ifndef M_PI | ||
37 | #define M_PI 3.1415926535897932384626433832795 | ||
38 | #endif | ||
39 | |||
40 | #define INTERNAL_RND_SORT_SEED 39871946 | ||
41 | |||
42 | // internal structure | ||
43 | typedef struct { | ||
44 | float x, y, z; | ||
45 | } SVec3; | ||
46 | |||
47 | static tbool veq( const SVec3 v1, const SVec3 v2 ) | ||
48 | { | ||
49 | return (v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z); | ||
50 | } | ||
51 | |||
52 | static SVec3 vadd( const SVec3 v1, const SVec3 v2 ) | ||
53 | { | ||
54 | SVec3 vRes; | ||
55 | |||
56 | vRes.x = v1.x + v2.x; | ||
57 | vRes.y = v1.y + v2.y; | ||
58 | vRes.z = v1.z + v2.z; | ||
59 | |||
60 | return vRes; | ||
61 | } | ||
62 | |||
63 | |||
64 | static SVec3 vsub( const SVec3 v1, const SVec3 v2 ) | ||
65 | { | ||
66 | SVec3 vRes; | ||
67 | |||
68 | vRes.x = v1.x - v2.x; | ||
69 | vRes.y = v1.y - v2.y; | ||
70 | vRes.z = v1.z - v2.z; | ||
71 | |||
72 | return vRes; | ||
73 | } | ||
74 | |||
75 | static SVec3 vscale(const float fS, const SVec3 v) | ||
76 | { | ||
77 | SVec3 vRes; | ||
78 | |||
79 | vRes.x = fS * v.x; | ||
80 | vRes.y = fS * v.y; | ||
81 | vRes.z = fS * v.z; | ||
82 | |||
83 | return vRes; | ||
84 | } | ||
85 | |||
86 | static float LengthSquared( const SVec3 v ) | ||
87 | { | ||
88 | return v.x*v.x + v.y*v.y + v.z*v.z; | ||
89 | } | ||
90 | |||
91 | static float Length( const SVec3 v ) | ||
92 | { | ||
93 | return sqrtf(LengthSquared(v)); | ||
94 | } | ||
95 | |||
96 | static SVec3 Normalize( const SVec3 v ) | ||
97 | { | ||
98 | return vscale(1 / Length(v), v); | ||
99 | } | ||
100 | |||
101 | static float vdot( const SVec3 v1, const SVec3 v2) | ||
102 | { | ||
103 | return v1.x*v2.x + v1.y*v2.y + v1.z*v2.z; | ||
104 | } | ||
105 | |||
106 | |||
107 | static tbool NotZero(const float fX) | ||
108 | { | ||
109 | // could possibly use FLT_EPSILON instead | ||
110 | return fabsf(fX) > FLT_MIN; | ||
111 | } | ||
112 | |||
113 | static tbool VNotZero(const SVec3 v) | ||
114 | { | ||
115 | // might change this to an epsilon based test | ||
116 | return NotZero(v.x) || NotZero(v.y) || NotZero(v.z); | ||
117 | } | ||
118 | |||
119 | |||
120 | |||
121 | typedef struct { | ||
122 | int iNrFaces; | ||
123 | int * pTriMembers; | ||
124 | } SSubGroup; | ||
125 | |||
126 | typedef struct { | ||
127 | int iNrFaces; | ||
128 | int * pFaceIndices; | ||
129 | int iVertexRepresentitive; | ||
130 | tbool bOrientPreservering; | ||
131 | } SGroup; | ||
132 | |||
133 | // | ||
134 | #define MARK_DEGENERATE 1 | ||
135 | #define QUAD_ONE_DEGEN_TRI 2 | ||
136 | #define GROUP_WITH_ANY 4 | ||
137 | #define ORIENT_PRESERVING 8 | ||
138 | |||
139 | |||
140 | |||
141 | typedef struct { | ||
142 | int FaceNeighbors[3]; | ||
143 | SGroup * AssignedGroup[3]; | ||
144 | |||
145 | // normalized first order face derivatives | ||
146 | SVec3 vOs, vOt; | ||
147 | float fMagS, fMagT; // original magnitudes | ||
148 | |||
149 | // determines if the current and the next triangle are a quad. | ||
150 | int iOrgFaceNumber; | ||
151 | int iFlag, iTSpacesOffs; | ||
152 | unsigned char vert_num[4]; | ||
153 | } STriInfo; | ||
154 | |||
155 | typedef struct { | ||
156 | SVec3 vOs; | ||
157 | float fMagS; | ||
158 | SVec3 vOt; | ||
159 | float fMagT; | ||
160 | int iCounter; // this is to average back into quads. | ||
161 | tbool bOrient; | ||
162 | } STSpace; | ||
163 | |||
164 | static int GenerateInitialVerticesIndexList(STriInfo pTriInfos[], int piTriList_out[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn); | ||
165 | static void GenerateSharedVerticesIndexList(int piTriList_in_and_out[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn); | ||
166 | static void InitTriInfo(STriInfo pTriInfos[], const int piTriListIn[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn); | ||
167 | static int Build4RuleGroups(STriInfo pTriInfos[], SGroup pGroups[], int piGroupTrianglesBuffer[], const int piTriListIn[], const int iNrTrianglesIn); | ||
168 | static tbool GenerateTSpaces(STSpace psTspace[], const STriInfo pTriInfos[], const SGroup pGroups[], | ||
169 | const int iNrActiveGroups, const int piTriListIn[], const float fThresCos, | ||
170 | const SMikkTSpaceContext * pContext); | ||
171 | |||
172 | static int MakeIndex(const int iFace, const int iVert) | ||
173 | { | ||
174 | assert(iVert>=0 && iVert<4 && iFace>=0); | ||
175 | return (iFace<<2) | (iVert&0x3); | ||
176 | } | ||
177 | |||
178 | static void IndexToData(int * piFace, int * piVert, const int iIndexIn) | ||
179 | { | ||
180 | piVert[0] = iIndexIn&0x3; | ||
181 | piFace[0] = iIndexIn>>2; | ||
182 | } | ||
183 | |||
184 | static STSpace AvgTSpace(const STSpace * pTS0, const STSpace * pTS1) | ||
185 | { | ||
186 | STSpace ts_res; | ||
187 | |||
188 | // this if is important. Due to floating point precision | ||
189 | // averaging when ts0==ts1 will cause a slight difference | ||
190 | // which results in tangent space splits later on | ||
191 | if (pTS0->fMagS==pTS1->fMagS && pTS0->fMagT==pTS1->fMagT && | ||
192 | veq(pTS0->vOs,pTS1->vOs) && veq(pTS0->vOt, pTS1->vOt)) | ||
193 | { | ||
194 | ts_res.fMagS = pTS0->fMagS; | ||
195 | ts_res.fMagT = pTS0->fMagT; | ||
196 | ts_res.vOs = pTS0->vOs; | ||
197 | ts_res.vOt = pTS0->vOt; | ||
198 | } | ||
199 | else | ||
200 | { | ||
201 | ts_res.fMagS = 0.5f*(pTS0->fMagS+pTS1->fMagS); | ||
202 | ts_res.fMagT = 0.5f*(pTS0->fMagT+pTS1->fMagT); | ||
203 | ts_res.vOs = vadd(pTS0->vOs,pTS1->vOs); | ||
204 | ts_res.vOt = vadd(pTS0->vOt,pTS1->vOt); | ||
205 | if ( VNotZero(ts_res.vOs) ) ts_res.vOs = Normalize(ts_res.vOs); | ||
206 | if ( VNotZero(ts_res.vOt) ) ts_res.vOt = Normalize(ts_res.vOt); | ||
207 | } | ||
208 | |||
209 | return ts_res; | ||
210 | } | ||
211 | |||
212 | |||
213 | |||
214 | static SVec3 GetPosition(const SMikkTSpaceContext * pContext, const int index); | ||
215 | static SVec3 GetNormal(const SMikkTSpaceContext * pContext, const int index); | ||
216 | static SVec3 GetTexCoord(const SMikkTSpaceContext * pContext, const int index); | ||
217 | |||
218 | |||
219 | // degen triangles | ||
220 | static void DegenPrologue(STriInfo pTriInfos[], int piTriList_out[], const int iNrTrianglesIn, const int iTotTris); | ||
221 | static void DegenEpilogue(STSpace psTspace[], STriInfo pTriInfos[], int piTriListIn[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn, const int iTotTris); | ||
222 | |||
223 | |||
224 | tbool genTangSpaceDefault(const SMikkTSpaceContext * pContext) | ||
225 | { | ||
226 | return genTangSpace(pContext, 180.0f); | ||
227 | } | ||
228 | |||
229 | tbool genTangSpace(const SMikkTSpaceContext * pContext, const float fAngularThreshold) | ||
230 | { | ||
231 | // count nr_triangles | ||
232 | int * piTriListIn = NULL, * piGroupTrianglesBuffer = NULL; | ||
233 | STriInfo * pTriInfos = NULL; | ||
234 | SGroup * pGroups = NULL; | ||
235 | STSpace * psTspace = NULL; | ||
236 | int iNrTrianglesIn = 0, f=0, t=0, i=0; | ||
237 | int iNrTSPaces = 0, iTotTris = 0, iDegenTriangles = 0, iNrMaxGroups = 0; | ||
238 | int iNrActiveGroups = 0, index = 0; | ||
239 | const int iNrFaces = pContext->m_pInterface->m_getNumFaces(pContext); | ||
240 | tbool bRes = TFALSE; | ||
241 | const float fThresCos = (float) cos((fAngularThreshold*(float)M_PI)/180.0f); | ||
242 | |||
243 | // verify all call-backs have been set | ||
244 | if ( pContext->m_pInterface->m_getNumFaces==NULL || | ||
245 | pContext->m_pInterface->m_getNumVerticesOfFace==NULL || | ||
246 | pContext->m_pInterface->m_getPosition==NULL || | ||
247 | pContext->m_pInterface->m_getNormal==NULL || | ||
248 | pContext->m_pInterface->m_getTexCoord==NULL ) | ||
249 | return TFALSE; | ||
250 | |||
251 | // count triangles on supported faces | ||
252 | for (f=0; f<iNrFaces; f++) | ||
253 | { | ||
254 | const int verts = pContext->m_pInterface->m_getNumVerticesOfFace(pContext, f); | ||
255 | if (verts==3) ++iNrTrianglesIn; | ||
256 | else if (verts==4) iNrTrianglesIn += 2; | ||
257 | } | ||
258 | if (iNrTrianglesIn<=0) return TFALSE; | ||
259 | |||
260 | // allocate memory for an index list | ||
261 | piTriListIn = (int *) malloc(sizeof(int)*3*iNrTrianglesIn); | ||
262 | pTriInfos = (STriInfo *) malloc(sizeof(STriInfo)*iNrTrianglesIn); | ||
263 | if (piTriListIn==NULL || pTriInfos==NULL) | ||
264 | { | ||
265 | if (piTriListIn!=NULL) free(piTriListIn); | ||
266 | if (pTriInfos!=NULL) free(pTriInfos); | ||
267 | return TFALSE; | ||
268 | } | ||
269 | |||
270 | // make an initial triangle --> face index list | ||
271 | iNrTSPaces = GenerateInitialVerticesIndexList(pTriInfos, piTriListIn, pContext, iNrTrianglesIn); | ||
272 | |||
273 | // make a welded index list of identical positions and attributes (pos, norm, texc) | ||
274 | //printf("gen welded index list begin\n"); | ||
275 | GenerateSharedVerticesIndexList(piTriListIn, pContext, iNrTrianglesIn); | ||
276 | //printf("gen welded index list end\n"); | ||
277 | |||
278 | // Mark all degenerate triangles | ||
279 | iTotTris = iNrTrianglesIn; | ||
280 | iDegenTriangles = 0; | ||
281 | for (t=0; t<iTotTris; t++) | ||
282 | { | ||
283 | const int i0 = piTriListIn[t*3+0]; | ||
284 | const int i1 = piTriListIn[t*3+1]; | ||
285 | const int i2 = piTriListIn[t*3+2]; | ||
286 | const SVec3 p0 = GetPosition(pContext, i0); | ||
287 | const SVec3 p1 = GetPosition(pContext, i1); | ||
288 | const SVec3 p2 = GetPosition(pContext, i2); | ||
289 | if (veq(p0,p1) || veq(p0,p2) || veq(p1,p2)) // degenerate | ||
290 | { | ||
291 | pTriInfos[t].iFlag |= MARK_DEGENERATE; | ||
292 | ++iDegenTriangles; | ||
293 | } | ||
294 | } | ||
295 | iNrTrianglesIn = iTotTris - iDegenTriangles; | ||
296 | |||
297 | // mark all triangle pairs that belong to a quad with only one | ||
298 | // good triangle. These need special treatment in DegenEpilogue(). | ||
299 | // Additionally, move all good triangles to the start of | ||
300 | // pTriInfos[] and piTriListIn[] without changing order and | ||
301 | // put the degenerate triangles last. | ||
302 | DegenPrologue(pTriInfos, piTriListIn, iNrTrianglesIn, iTotTris); | ||
303 | |||
304 | |||
305 | // evaluate triangle level attributes and neighbor list | ||
306 | //printf("gen neighbors list begin\n"); | ||
307 | InitTriInfo(pTriInfos, piTriListIn, pContext, iNrTrianglesIn); | ||
308 | //printf("gen neighbors list end\n"); | ||
309 | |||
310 | |||
311 | // based on the 4 rules, identify groups based on connectivity | ||
312 | iNrMaxGroups = iNrTrianglesIn*3; | ||
313 | pGroups = (SGroup *) malloc(sizeof(SGroup)*iNrMaxGroups); | ||
314 | piGroupTrianglesBuffer = (int *) malloc(sizeof(int)*iNrTrianglesIn*3); | ||
315 | if (pGroups==NULL || piGroupTrianglesBuffer==NULL) | ||
316 | { | ||
317 | if (pGroups!=NULL) free(pGroups); | ||
318 | if (piGroupTrianglesBuffer!=NULL) free(piGroupTrianglesBuffer); | ||
319 | free(piTriListIn); | ||
320 | free(pTriInfos); | ||
321 | return TFALSE; | ||
322 | } | ||
323 | //printf("gen 4rule groups begin\n"); | ||
324 | iNrActiveGroups = | ||
325 | Build4RuleGroups(pTriInfos, pGroups, piGroupTrianglesBuffer, piTriListIn, iNrTrianglesIn); | ||
326 | //printf("gen 4rule groups end\n"); | ||
327 | |||
328 | // | ||
329 | |||
330 | psTspace = (STSpace *) malloc(sizeof(STSpace)*iNrTSPaces); | ||
331 | if (psTspace==NULL) | ||
332 | { | ||
333 | free(piTriListIn); | ||
334 | free(pTriInfos); | ||
335 | free(pGroups); | ||
336 | free(piGroupTrianglesBuffer); | ||
337 | return TFALSE; | ||
338 | } | ||
339 | memset(psTspace, 0, sizeof(STSpace)*iNrTSPaces); | ||
340 | for (t=0; t<iNrTSPaces; t++) | ||
341 | { | ||
342 | psTspace[t].vOs.x=1.0f; psTspace[t].vOs.y=0.0f; psTspace[t].vOs.z=0.0f; psTspace[t].fMagS = 1.0f; | ||
343 | psTspace[t].vOt.x=0.0f; psTspace[t].vOt.y=1.0f; psTspace[t].vOt.z=0.0f; psTspace[t].fMagT = 1.0f; | ||
344 | } | ||
345 | |||
346 | // make tspaces, each group is split up into subgroups if necessary | ||
347 | // based on fAngularThreshold. Finally a tangent space is made for | ||
348 | // every resulting subgroup | ||
349 | //printf("gen tspaces begin\n"); | ||
350 | bRes = GenerateTSpaces(psTspace, pTriInfos, pGroups, iNrActiveGroups, piTriListIn, fThresCos, pContext); | ||
351 | //printf("gen tspaces end\n"); | ||
352 | |||
353 | // clean up | ||
354 | free(pGroups); | ||
355 | free(piGroupTrianglesBuffer); | ||
356 | |||
357 | if (!bRes) // if an allocation in GenerateTSpaces() failed | ||
358 | { | ||
359 | // clean up and return false | ||
360 | free(pTriInfos); free(piTriListIn); free(psTspace); | ||
361 | return TFALSE; | ||
362 | } | ||
363 | |||
364 | |||
365 | // degenerate quads with one good triangle will be fixed by copying a space from | ||
366 | // the good triangle to the coinciding vertex. | ||
367 | // all other degenerate triangles will just copy a space from any good triangle | ||
368 | // with the same welded index in piTriListIn[]. | ||
369 | DegenEpilogue(psTspace, pTriInfos, piTriListIn, pContext, iNrTrianglesIn, iTotTris); | ||
370 | |||
371 | free(pTriInfos); free(piTriListIn); | ||
372 | |||
373 | index = 0; | ||
374 | for (f=0; f<iNrFaces; f++) | ||
375 | { | ||
376 | const int verts = pContext->m_pInterface->m_getNumVerticesOfFace(pContext, f); | ||
377 | if (verts!=3 && verts!=4) continue; | ||
378 | |||
379 | |||
380 | // I've decided to let degenerate triangles and group-with-anythings | ||
381 | // vary between left/right hand coordinate systems at the vertices. | ||
382 | // All healthy triangles on the other hand are built to always be either or. | ||
383 | |||
384 | /*// force the coordinate system orientation to be uniform for every face. | ||
385 | // (this is already the case for good triangles but not for | ||
386 | // degenerate ones and those with bGroupWithAnything==true) | ||
387 | bool bOrient = psTspace[index].bOrient; | ||
388 | if (psTspace[index].iCounter == 0) // tspace was not derived from a group | ||
389 | { | ||
390 | // look for a space created in GenerateTSpaces() by iCounter>0 | ||
391 | bool bNotFound = true; | ||
392 | int i=1; | ||
393 | while (i<verts && bNotFound) | ||
394 | { | ||
395 | if (psTspace[index+i].iCounter > 0) bNotFound=false; | ||
396 | else ++i; | ||
397 | } | ||
398 | if (!bNotFound) bOrient = psTspace[index+i].bOrient; | ||
399 | }*/ | ||
400 | |||
401 | // set data | ||
402 | for (i=0; i<verts; i++) | ||
403 | { | ||
404 | const STSpace * pTSpace = &psTspace[index]; | ||
405 | float tang[] = {pTSpace->vOs.x, pTSpace->vOs.y, pTSpace->vOs.z}; | ||
406 | float bitang[] = {pTSpace->vOt.x, pTSpace->vOt.y, pTSpace->vOt.z}; | ||
407 | if (pContext->m_pInterface->m_setTSpace!=NULL) | ||
408 | pContext->m_pInterface->m_setTSpace(pContext, tang, bitang, pTSpace->fMagS, pTSpace->fMagT, pTSpace->bOrient, f, i); | ||
409 | if (pContext->m_pInterface->m_setTSpaceBasic!=NULL) | ||
410 | pContext->m_pInterface->m_setTSpaceBasic(pContext, tang, pTSpace->bOrient==TTRUE ? 1.0f : (-1.0f), f, i); | ||
411 | |||
412 | ++index; | ||
413 | } | ||
414 | } | ||
415 | |||
416 | free(psTspace); | ||
417 | |||
418 | |||
419 | return TTRUE; | ||
420 | } | ||
421 | |||
422 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
423 | |||
424 | typedef struct { | ||
425 | float vert[3]; | ||
426 | int index; | ||
427 | } STmpVert; | ||
428 | |||
429 | static const int g_iCells = 2048; | ||
430 | |||
431 | #ifdef _MSC_VER | ||
432 | # define NOINLINE __declspec(noinline) | ||
433 | #else | ||
434 | # define NOINLINE __attribute__ ((noinline)) | ||
435 | #endif | ||
436 | |||
437 | // it is IMPORTANT that this function is called to evaluate the hash since | ||
438 | // inlining could potentially reorder instructions and generate different | ||
439 | // results for the same effective input value fVal. | ||
440 | static NOINLINE int FindGridCell(const float fMin, const float fMax, const float fVal) | ||
441 | { | ||
442 | const float fIndex = g_iCells * ((fVal-fMin)/(fMax-fMin)); | ||
443 | const int iIndex = (int)fIndex; | ||
444 | return iIndex < g_iCells ? (iIndex >= 0 ? iIndex : 0) : (g_iCells - 1); | ||
445 | } | ||
446 | |||
447 | static void MergeVertsFast(int piTriList_in_and_out[], STmpVert pTmpVert[], const SMikkTSpaceContext * pContext, const int iL_in, const int iR_in); | ||
448 | static void MergeVertsSlow(int piTriList_in_and_out[], const SMikkTSpaceContext * pContext, const int pTable[], const int iEntries); | ||
449 | static void GenerateSharedVerticesIndexListSlow(int piTriList_in_and_out[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn); | ||
450 | |||
451 | static void GenerateSharedVerticesIndexList(int piTriList_in_and_out[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn) | ||
452 | { | ||
453 | |||
454 | // Generate bounding box | ||
455 | int * piHashTable=NULL, * piHashCount=NULL, * piHashOffsets=NULL, * piHashCount2=NULL; | ||
456 | STmpVert * pTmpVert = NULL; | ||
457 | int i=0, iChannel=0, k=0, e=0; | ||
458 | int iMaxCount=0; | ||
459 | SVec3 vMin = GetPosition(pContext, 0), vMax = vMin, vDim; | ||
460 | float fMin, fMax; | ||
461 | for (i=1; i<(iNrTrianglesIn*3); i++) | ||
462 | { | ||
463 | const int index = piTriList_in_and_out[i]; | ||
464 | |||
465 | const SVec3 vP = GetPosition(pContext, index); | ||
466 | if (vMin.x > vP.x) vMin.x = vP.x; | ||
467 | else if (vMax.x < vP.x) vMax.x = vP.x; | ||
468 | if (vMin.y > vP.y) vMin.y = vP.y; | ||
469 | else if (vMax.y < vP.y) vMax.y = vP.y; | ||
470 | if (vMin.z > vP.z) vMin.z = vP.z; | ||
471 | else if (vMax.z < vP.z) vMax.z = vP.z; | ||
472 | } | ||
473 | |||
474 | vDim = vsub(vMax,vMin); | ||
475 | iChannel = 0; | ||
476 | fMin = vMin.x; fMax=vMax.x; | ||
477 | if (vDim.y>vDim.x && vDim.y>vDim.z) | ||
478 | { | ||
479 | iChannel=1; | ||
480 | fMin = vMin.y; | ||
481 | fMax = vMax.y; | ||
482 | } | ||
483 | else if (vDim.z>vDim.x) | ||
484 | { | ||
485 | iChannel=2; | ||
486 | fMin = vMin.z; | ||
487 | fMax = vMax.z; | ||
488 | } | ||
489 | |||
490 | // make allocations | ||
491 | piHashTable = (int *) malloc(sizeof(int)*iNrTrianglesIn*3); | ||
492 | piHashCount = (int *) malloc(sizeof(int)*g_iCells); | ||
493 | piHashOffsets = (int *) malloc(sizeof(int)*g_iCells); | ||
494 | piHashCount2 = (int *) malloc(sizeof(int)*g_iCells); | ||
495 | |||
496 | if (piHashTable==NULL || piHashCount==NULL || piHashOffsets==NULL || piHashCount2==NULL) | ||
497 | { | ||
498 | if (piHashTable!=NULL) free(piHashTable); | ||
499 | if (piHashCount!=NULL) free(piHashCount); | ||
500 | if (piHashOffsets!=NULL) free(piHashOffsets); | ||
501 | if (piHashCount2!=NULL) free(piHashCount2); | ||
502 | GenerateSharedVerticesIndexListSlow(piTriList_in_and_out, pContext, iNrTrianglesIn); | ||
503 | return; | ||
504 | } | ||
505 | memset(piHashCount, 0, sizeof(int)*g_iCells); | ||
506 | memset(piHashCount2, 0, sizeof(int)*g_iCells); | ||
507 | |||
508 | // count amount of elements in each cell unit | ||
509 | for (i=0; i<(iNrTrianglesIn*3); i++) | ||
510 | { | ||
511 | const int index = piTriList_in_and_out[i]; | ||
512 | const SVec3 vP = GetPosition(pContext, index); | ||
513 | const float fVal = iChannel==0 ? vP.x : (iChannel==1 ? vP.y : vP.z); | ||
514 | const int iCell = FindGridCell(fMin, fMax, fVal); | ||
515 | ++piHashCount[iCell]; | ||
516 | } | ||
517 | |||
518 | // evaluate start index of each cell. | ||
519 | piHashOffsets[0]=0; | ||
520 | for (k=1; k<g_iCells; k++) | ||
521 | piHashOffsets[k]=piHashOffsets[k-1]+piHashCount[k-1]; | ||
522 | |||
523 | // insert vertices | ||
524 | for (i=0; i<(iNrTrianglesIn*3); i++) | ||
525 | { | ||
526 | const int index = piTriList_in_and_out[i]; | ||
527 | const SVec3 vP = GetPosition(pContext, index); | ||
528 | const float fVal = iChannel==0 ? vP.x : (iChannel==1 ? vP.y : vP.z); | ||
529 | const int iCell = FindGridCell(fMin, fMax, fVal); | ||
530 | int * pTable = NULL; | ||
531 | |||
532 | assert(piHashCount2[iCell]<piHashCount[iCell]); | ||
533 | pTable = &piHashTable[piHashOffsets[iCell]]; | ||
534 | pTable[piHashCount2[iCell]] = i; // vertex i has been inserted. | ||
535 | ++piHashCount2[iCell]; | ||
536 | } | ||
537 | for (k=0; k<g_iCells; k++) | ||
538 | assert(piHashCount2[k] == piHashCount[k]); // verify the count | ||
539 | free(piHashCount2); | ||
540 | |||
541 | // find maximum amount of entries in any hash entry | ||
542 | iMaxCount = piHashCount[0]; | ||
543 | for (k=1; k<g_iCells; k++) | ||
544 | if (iMaxCount<piHashCount[k]) | ||
545 | iMaxCount=piHashCount[k]; | ||
546 | pTmpVert = (STmpVert *) malloc(sizeof(STmpVert)*iMaxCount); | ||
547 | |||
548 | |||
549 | // complete the merge | ||
550 | for (k=0; k<g_iCells; k++) | ||
551 | { | ||
552 | // extract table of cell k and amount of entries in it | ||
553 | int * pTable = &piHashTable[piHashOffsets[k]]; | ||
554 | const int iEntries = piHashCount[k]; | ||
555 | if (iEntries < 2) continue; | ||
556 | |||
557 | if (pTmpVert!=NULL) | ||
558 | { | ||
559 | for (e=0; e<iEntries; e++) | ||
560 | { | ||
561 | int i = pTable[e]; | ||
562 | const SVec3 vP = GetPosition(pContext, piTriList_in_and_out[i]); | ||
563 | pTmpVert[e].vert[0] = vP.x; pTmpVert[e].vert[1] = vP.y; | ||
564 | pTmpVert[e].vert[2] = vP.z; pTmpVert[e].index = i; | ||
565 | } | ||
566 | MergeVertsFast(piTriList_in_and_out, pTmpVert, pContext, 0, iEntries-1); | ||
567 | } | ||
568 | else | ||
569 | MergeVertsSlow(piTriList_in_and_out, pContext, pTable, iEntries); | ||
570 | } | ||
571 | |||
572 | if (pTmpVert!=NULL) { free(pTmpVert); } | ||
573 | free(piHashTable); | ||
574 | free(piHashCount); | ||
575 | free(piHashOffsets); | ||
576 | } | ||
577 | |||
578 | static void MergeVertsFast(int piTriList_in_and_out[], STmpVert pTmpVert[], const SMikkTSpaceContext * pContext, const int iL_in, const int iR_in) | ||
579 | { | ||
580 | // make bbox | ||
581 | int c=0, l=0, channel=0; | ||
582 | float fvMin[3], fvMax[3]; | ||
583 | float dx=0, dy=0, dz=0, fSep=0; | ||
584 | for (c=0; c<3; c++) | ||
585 | { fvMin[c]=pTmpVert[iL_in].vert[c]; fvMax[c]=fvMin[c]; } | ||
586 | for (l=(iL_in+1); l<=iR_in; l++) { | ||
587 | for (c=0; c<3; c++) { | ||
588 | if (fvMin[c]>pTmpVert[l].vert[c]) fvMin[c]=pTmpVert[l].vert[c]; | ||
589 | if (fvMax[c]<pTmpVert[l].vert[c]) fvMax[c]=pTmpVert[l].vert[c]; | ||
590 | } | ||
591 | } | ||
592 | |||
593 | dx = fvMax[0]-fvMin[0]; | ||
594 | dy = fvMax[1]-fvMin[1]; | ||
595 | dz = fvMax[2]-fvMin[2]; | ||
596 | |||
597 | channel = 0; | ||
598 | if (dy>dx && dy>dz) channel=1; | ||
599 | else if (dz>dx) channel=2; | ||
600 | |||
601 | fSep = 0.5f*(fvMax[channel]+fvMin[channel]); | ||
602 | |||
603 | // stop if all vertices are NaNs | ||
604 | if (!isfinite(fSep)) | ||
605 | return; | ||
606 | |||
607 | // terminate recursion when the separation/average value | ||
608 | // is no longer strictly between fMin and fMax values. | ||
609 | if (fSep>=fvMax[channel] || fSep<=fvMin[channel]) | ||
610 | { | ||
611 | // complete the weld | ||
612 | for (l=iL_in; l<=iR_in; l++) | ||
613 | { | ||
614 | int i = pTmpVert[l].index; | ||
615 | const int index = piTriList_in_and_out[i]; | ||
616 | const SVec3 vP = GetPosition(pContext, index); | ||
617 | const SVec3 vN = GetNormal(pContext, index); | ||
618 | const SVec3 vT = GetTexCoord(pContext, index); | ||
619 | |||
620 | tbool bNotFound = TTRUE; | ||
621 | int l2=iL_in, i2rec=-1; | ||
622 | while (l2<l && bNotFound) | ||
623 | { | ||
624 | const int i2 = pTmpVert[l2].index; | ||
625 | const int index2 = piTriList_in_and_out[i2]; | ||
626 | const SVec3 vP2 = GetPosition(pContext, index2); | ||
627 | const SVec3 vN2 = GetNormal(pContext, index2); | ||
628 | const SVec3 vT2 = GetTexCoord(pContext, index2); | ||
629 | i2rec=i2; | ||
630 | |||
631 | //if (vP==vP2 && vN==vN2 && vT==vT2) | ||
632 | if (vP.x==vP2.x && vP.y==vP2.y && vP.z==vP2.z && | ||
633 | vN.x==vN2.x && vN.y==vN2.y && vN.z==vN2.z && | ||
634 | vT.x==vT2.x && vT.y==vT2.y && vT.z==vT2.z) | ||
635 | bNotFound = TFALSE; | ||
636 | else | ||
637 | ++l2; | ||
638 | } | ||
639 | |||
640 | // merge if previously found | ||
641 | if (!bNotFound) | ||
642 | piTriList_in_and_out[i] = piTriList_in_and_out[i2rec]; | ||
643 | } | ||
644 | } | ||
645 | else | ||
646 | { | ||
647 | int iL=iL_in, iR=iR_in; | ||
648 | assert((iR_in-iL_in)>0); // at least 2 entries | ||
649 | |||
650 | // separate (by fSep) all points between iL_in and iR_in in pTmpVert[] | ||
651 | while (iL < iR) | ||
652 | { | ||
653 | tbool bReadyLeftSwap = TFALSE, bReadyRightSwap = TFALSE; | ||
654 | while ((!bReadyLeftSwap) && iL<iR) | ||
655 | { | ||
656 | assert(iL>=iL_in && iL<=iR_in); | ||
657 | bReadyLeftSwap = !(pTmpVert[iL].vert[channel]<fSep); | ||
658 | if (!bReadyLeftSwap) ++iL; | ||
659 | } | ||
660 | while ((!bReadyRightSwap) && iL<iR) | ||
661 | { | ||
662 | assert(iR>=iL_in && iR<=iR_in); | ||
663 | bReadyRightSwap = pTmpVert[iR].vert[channel]<fSep; | ||
664 | if (!bReadyRightSwap) --iR; | ||
665 | } | ||
666 | assert( (iL<iR) || !(bReadyLeftSwap && bReadyRightSwap) ); | ||
667 | |||
668 | if (bReadyLeftSwap && bReadyRightSwap) | ||
669 | { | ||
670 | const STmpVert sTmp = pTmpVert[iL]; | ||
671 | assert(iL<iR); | ||
672 | pTmpVert[iL] = pTmpVert[iR]; | ||
673 | pTmpVert[iR] = sTmp; | ||
674 | ++iL; --iR; | ||
675 | } | ||
676 | } | ||
677 | |||
678 | assert(iL==(iR+1) || (iL==iR)); | ||
679 | if (iL==iR) | ||
680 | { | ||
681 | const tbool bReadyRightSwap = pTmpVert[iR].vert[channel]<fSep; | ||
682 | if (bReadyRightSwap) ++iL; | ||
683 | else --iR; | ||
684 | } | ||
685 | |||
686 | // only need to weld when there is more than 1 instance of the (x,y,z) | ||
687 | if (iL_in < iR) | ||
688 | MergeVertsFast(piTriList_in_and_out, pTmpVert, pContext, iL_in, iR); // weld all left of fSep | ||
689 | if (iL < iR_in) | ||
690 | MergeVertsFast(piTriList_in_and_out, pTmpVert, pContext, iL, iR_in); // weld all right of (or equal to) fSep | ||
691 | } | ||
692 | } | ||
693 | |||
694 | static void MergeVertsSlow(int piTriList_in_and_out[], const SMikkTSpaceContext * pContext, const int pTable[], const int iEntries) | ||
695 | { | ||
696 | // this can be optimized further using a tree structure or more hashing. | ||
697 | int e=0; | ||
698 | for (e=0; e<iEntries; e++) | ||
699 | { | ||
700 | int i = pTable[e]; | ||
701 | const int index = piTriList_in_and_out[i]; | ||
702 | const SVec3 vP = GetPosition(pContext, index); | ||
703 | const SVec3 vN = GetNormal(pContext, index); | ||
704 | const SVec3 vT = GetTexCoord(pContext, index); | ||
705 | |||
706 | tbool bNotFound = TTRUE; | ||
707 | int e2=0, i2rec=-1; | ||
708 | while (e2<e && bNotFound) | ||
709 | { | ||
710 | const int i2 = pTable[e2]; | ||
711 | const int index2 = piTriList_in_and_out[i2]; | ||
712 | const SVec3 vP2 = GetPosition(pContext, index2); | ||
713 | const SVec3 vN2 = GetNormal(pContext, index2); | ||
714 | const SVec3 vT2 = GetTexCoord(pContext, index2); | ||
715 | i2rec = i2; | ||
716 | |||
717 | if (veq(vP,vP2) && veq(vN,vN2) && veq(vT,vT2)) | ||
718 | bNotFound = TFALSE; | ||
719 | else | ||
720 | ++e2; | ||
721 | } | ||
722 | |||
723 | // merge if previously found | ||
724 | if (!bNotFound) | ||
725 | piTriList_in_and_out[i] = piTriList_in_and_out[i2rec]; | ||
726 | } | ||
727 | } | ||
728 | |||
729 | static void GenerateSharedVerticesIndexListSlow(int piTriList_in_and_out[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn) | ||
730 | { | ||
731 | int iNumUniqueVerts = 0, t=0, i=0; | ||
732 | for (t=0; t<iNrTrianglesIn; t++) | ||
733 | { | ||
734 | for (i=0; i<3; i++) | ||
735 | { | ||
736 | const int offs = t*3 + i; | ||
737 | const int index = piTriList_in_and_out[offs]; | ||
738 | |||
739 | const SVec3 vP = GetPosition(pContext, index); | ||
740 | const SVec3 vN = GetNormal(pContext, index); | ||
741 | const SVec3 vT = GetTexCoord(pContext, index); | ||
742 | |||
743 | tbool bFound = TFALSE; | ||
744 | int t2=0, index2rec=-1; | ||
745 | while (!bFound && t2<=t) | ||
746 | { | ||
747 | int j=0; | ||
748 | while (!bFound && j<3) | ||
749 | { | ||
750 | const int index2 = piTriList_in_and_out[t2*3 + j]; | ||
751 | const SVec3 vP2 = GetPosition(pContext, index2); | ||
752 | const SVec3 vN2 = GetNormal(pContext, index2); | ||
753 | const SVec3 vT2 = GetTexCoord(pContext, index2); | ||
754 | |||
755 | if (veq(vP,vP2) && veq(vN,vN2) && veq(vT,vT2)) | ||
756 | bFound = TTRUE; | ||
757 | else | ||
758 | ++j; | ||
759 | } | ||
760 | if (!bFound) ++t2; | ||
761 | } | ||
762 | |||
763 | assert(bFound); | ||
764 | // if we found our own | ||
765 | if (index2rec == index) { ++iNumUniqueVerts; } | ||
766 | |||
767 | piTriList_in_and_out[offs] = index2rec; | ||
768 | } | ||
769 | } | ||
770 | } | ||
771 | |||
772 | static int GenerateInitialVerticesIndexList(STriInfo pTriInfos[], int piTriList_out[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn) | ||
773 | { | ||
774 | int iTSpacesOffs = 0, f=0, t=0; | ||
775 | int iDstTriIndex = 0; | ||
776 | for (f=0; f<pContext->m_pInterface->m_getNumFaces(pContext); f++) | ||
777 | { | ||
778 | const int verts = pContext->m_pInterface->m_getNumVerticesOfFace(pContext, f); | ||
779 | if (verts!=3 && verts!=4) continue; | ||
780 | |||
781 | pTriInfos[iDstTriIndex].iOrgFaceNumber = f; | ||
782 | pTriInfos[iDstTriIndex].iTSpacesOffs = iTSpacesOffs; | ||
783 | |||
784 | if (verts==3) | ||
785 | { | ||
786 | unsigned char * pVerts = pTriInfos[iDstTriIndex].vert_num; | ||
787 | pVerts[0]=0; pVerts[1]=1; pVerts[2]=2; | ||
788 | piTriList_out[iDstTriIndex*3+0] = MakeIndex(f, 0); | ||
789 | piTriList_out[iDstTriIndex*3+1] = MakeIndex(f, 1); | ||
790 | piTriList_out[iDstTriIndex*3+2] = MakeIndex(f, 2); | ||
791 | ++iDstTriIndex; // next | ||
792 | } | ||
793 | else | ||
794 | { | ||
795 | { | ||
796 | pTriInfos[iDstTriIndex+1].iOrgFaceNumber = f; | ||
797 | pTriInfos[iDstTriIndex+1].iTSpacesOffs = iTSpacesOffs; | ||
798 | } | ||
799 | |||
800 | { | ||
801 | // need an order independent way to evaluate | ||
802 | // tspace on quads. This is done by splitting | ||
803 | // along the shortest diagonal. | ||
804 | const int i0 = MakeIndex(f, 0); | ||
805 | const int i1 = MakeIndex(f, 1); | ||
806 | const int i2 = MakeIndex(f, 2); | ||
807 | const int i3 = MakeIndex(f, 3); | ||
808 | const SVec3 T0 = GetTexCoord(pContext, i0); | ||
809 | const SVec3 T1 = GetTexCoord(pContext, i1); | ||
810 | const SVec3 T2 = GetTexCoord(pContext, i2); | ||
811 | const SVec3 T3 = GetTexCoord(pContext, i3); | ||
812 | const float distSQ_02 = LengthSquared(vsub(T2,T0)); | ||
813 | const float distSQ_13 = LengthSquared(vsub(T3,T1)); | ||
814 | tbool bQuadDiagIs_02; | ||
815 | if (distSQ_02<distSQ_13) | ||
816 | bQuadDiagIs_02 = TTRUE; | ||
817 | else if (distSQ_13<distSQ_02) | ||
818 | bQuadDiagIs_02 = TFALSE; | ||
819 | else | ||
820 | { | ||
821 | const SVec3 P0 = GetPosition(pContext, i0); | ||
822 | const SVec3 P1 = GetPosition(pContext, i1); | ||
823 | const SVec3 P2 = GetPosition(pContext, i2); | ||
824 | const SVec3 P3 = GetPosition(pContext, i3); | ||
825 | const float distSQ_02 = LengthSquared(vsub(P2,P0)); | ||
826 | const float distSQ_13 = LengthSquared(vsub(P3,P1)); | ||
827 | |||
828 | bQuadDiagIs_02 = distSQ_13<distSQ_02 ? TFALSE : TTRUE; | ||
829 | } | ||
830 | |||
831 | if (bQuadDiagIs_02) | ||
832 | { | ||
833 | { | ||
834 | unsigned char * pVerts_A = pTriInfos[iDstTriIndex].vert_num; | ||
835 | pVerts_A[0]=0; pVerts_A[1]=1; pVerts_A[2]=2; | ||
836 | } | ||
837 | piTriList_out[iDstTriIndex*3+0] = i0; | ||
838 | piTriList_out[iDstTriIndex*3+1] = i1; | ||
839 | piTriList_out[iDstTriIndex*3+2] = i2; | ||
840 | ++iDstTriIndex; // next | ||
841 | { | ||
842 | unsigned char * pVerts_B = pTriInfos[iDstTriIndex].vert_num; | ||
843 | pVerts_B[0]=0; pVerts_B[1]=2; pVerts_B[2]=3; | ||
844 | } | ||
845 | piTriList_out[iDstTriIndex*3+0] = i0; | ||
846 | piTriList_out[iDstTriIndex*3+1] = i2; | ||
847 | piTriList_out[iDstTriIndex*3+2] = i3; | ||
848 | ++iDstTriIndex; // next | ||
849 | } | ||
850 | else | ||
851 | { | ||
852 | { | ||
853 | unsigned char * pVerts_A = pTriInfos[iDstTriIndex].vert_num; | ||
854 | pVerts_A[0]=0; pVerts_A[1]=1; pVerts_A[2]=3; | ||
855 | } | ||
856 | piTriList_out[iDstTriIndex*3+0] = i0; | ||
857 | piTriList_out[iDstTriIndex*3+1] = i1; | ||
858 | piTriList_out[iDstTriIndex*3+2] = i3; | ||
859 | ++iDstTriIndex; // next | ||
860 | { | ||
861 | unsigned char * pVerts_B = pTriInfos[iDstTriIndex].vert_num; | ||
862 | pVerts_B[0]=1; pVerts_B[1]=2; pVerts_B[2]=3; | ||
863 | } | ||
864 | piTriList_out[iDstTriIndex*3+0] = i1; | ||
865 | piTriList_out[iDstTriIndex*3+1] = i2; | ||
866 | piTriList_out[iDstTriIndex*3+2] = i3; | ||
867 | ++iDstTriIndex; // next | ||
868 | } | ||
869 | } | ||
870 | } | ||
871 | |||
872 | iTSpacesOffs += verts; | ||
873 | assert(iDstTriIndex<=iNrTrianglesIn); | ||
874 | } | ||
875 | |||
876 | for (t=0; t<iNrTrianglesIn; t++) | ||
877 | pTriInfos[t].iFlag = 0; | ||
878 | |||
879 | // return total amount of tspaces | ||
880 | return iTSpacesOffs; | ||
881 | } | ||
882 | |||
883 | static SVec3 GetPosition(const SMikkTSpaceContext * pContext, const int index) | ||
884 | { | ||
885 | int iF, iI; | ||
886 | SVec3 res; float pos[3]; | ||
887 | IndexToData(&iF, &iI, index); | ||
888 | pContext->m_pInterface->m_getPosition(pContext, pos, iF, iI); | ||
889 | res.x=pos[0]; res.y=pos[1]; res.z=pos[2]; | ||
890 | return res; | ||
891 | } | ||
892 | |||
893 | static SVec3 GetNormal(const SMikkTSpaceContext * pContext, const int index) | ||
894 | { | ||
895 | int iF, iI; | ||
896 | SVec3 res; float norm[3]; | ||
897 | IndexToData(&iF, &iI, index); | ||
898 | pContext->m_pInterface->m_getNormal(pContext, norm, iF, iI); | ||
899 | res.x=norm[0]; res.y=norm[1]; res.z=norm[2]; | ||
900 | return res; | ||
901 | } | ||
902 | |||
903 | static SVec3 GetTexCoord(const SMikkTSpaceContext * pContext, const int index) | ||
904 | { | ||
905 | int iF, iI; | ||
906 | SVec3 res; float texc[2]; | ||
907 | IndexToData(&iF, &iI, index); | ||
908 | pContext->m_pInterface->m_getTexCoord(pContext, texc, iF, iI); | ||
909 | res.x=texc[0]; res.y=texc[1]; res.z=1.0f; | ||
910 | return res; | ||
911 | } | ||
912 | |||
913 | ///////////////////////////////////////////////////////////////////////////////////////////////////// | ||
914 | ///////////////////////////////////////////////////////////////////////////////////////////////////// | ||
915 | |||
916 | typedef union { | ||
917 | struct | ||
918 | { | ||
919 | int i0, i1, f; | ||
920 | }; | ||
921 | int array[3]; | ||
922 | } SEdge; | ||
923 | |||
924 | static void BuildNeighborsFast(STriInfo pTriInfos[], SEdge * pEdges, const int piTriListIn[], const int iNrTrianglesIn); | ||
925 | static void BuildNeighborsSlow(STriInfo pTriInfos[], const int piTriListIn[], const int iNrTrianglesIn); | ||
926 | |||
927 | // returns the texture area times 2 | ||
928 | static float CalcTexArea(const SMikkTSpaceContext * pContext, const int indices[]) | ||
929 | { | ||
930 | const SVec3 t1 = GetTexCoord(pContext, indices[0]); | ||
931 | const SVec3 t2 = GetTexCoord(pContext, indices[1]); | ||
932 | const SVec3 t3 = GetTexCoord(pContext, indices[2]); | ||
933 | |||
934 | const float t21x = t2.x-t1.x; | ||
935 | const float t21y = t2.y-t1.y; | ||
936 | const float t31x = t3.x-t1.x; | ||
937 | const float t31y = t3.y-t1.y; | ||
938 | |||
939 | const float fSignedAreaSTx2 = t21x*t31y - t21y*t31x; | ||
940 | |||
941 | return fSignedAreaSTx2<0 ? (-fSignedAreaSTx2) : fSignedAreaSTx2; | ||
942 | } | ||
943 | |||
944 | static void InitTriInfo(STriInfo pTriInfos[], const int piTriListIn[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn) | ||
945 | { | ||
946 | int f=0, i=0, t=0; | ||
947 | // pTriInfos[f].iFlag is cleared in GenerateInitialVerticesIndexList() which is called before this function. | ||
948 | |||
949 | // generate neighbor info list | ||
950 | for (f=0; f<iNrTrianglesIn; f++) | ||
951 | for (i=0; i<3; i++) | ||
952 | { | ||
953 | pTriInfos[f].FaceNeighbors[i] = -1; | ||
954 | pTriInfos[f].AssignedGroup[i] = NULL; | ||
955 | |||
956 | pTriInfos[f].vOs.x=0.0f; pTriInfos[f].vOs.y=0.0f; pTriInfos[f].vOs.z=0.0f; | ||
957 | pTriInfos[f].vOt.x=0.0f; pTriInfos[f].vOt.y=0.0f; pTriInfos[f].vOt.z=0.0f; | ||
958 | pTriInfos[f].fMagS = 0; | ||
959 | pTriInfos[f].fMagT = 0; | ||
960 | |||
961 | // assumed bad | ||
962 | pTriInfos[f].iFlag |= GROUP_WITH_ANY; | ||
963 | } | ||
964 | |||
965 | // evaluate first order derivatives | ||
966 | for (f=0; f<iNrTrianglesIn; f++) | ||
967 | { | ||
968 | // initial values | ||
969 | const SVec3 v1 = GetPosition(pContext, piTriListIn[f*3+0]); | ||
970 | const SVec3 v2 = GetPosition(pContext, piTriListIn[f*3+1]); | ||
971 | const SVec3 v3 = GetPosition(pContext, piTriListIn[f*3+2]); | ||
972 | const SVec3 t1 = GetTexCoord(pContext, piTriListIn[f*3+0]); | ||
973 | const SVec3 t2 = GetTexCoord(pContext, piTriListIn[f*3+1]); | ||
974 | const SVec3 t3 = GetTexCoord(pContext, piTriListIn[f*3+2]); | ||
975 | |||
976 | const float t21x = t2.x-t1.x; | ||
977 | const float t21y = t2.y-t1.y; | ||
978 | const float t31x = t3.x-t1.x; | ||
979 | const float t31y = t3.y-t1.y; | ||
980 | const SVec3 d1 = vsub(v2,v1); | ||
981 | const SVec3 d2 = vsub(v3,v1); | ||
982 | |||
983 | const float fSignedAreaSTx2 = t21x*t31y - t21y*t31x; | ||
984 | //assert(fSignedAreaSTx2!=0); | ||
985 | SVec3 vOs = vsub(vscale(t31y,d1), vscale(t21y,d2)); // eq 18 | ||
986 | SVec3 vOt = vadd(vscale(-t31x,d1), vscale(t21x,d2)); // eq 19 | ||
987 | |||
988 | pTriInfos[f].iFlag |= (fSignedAreaSTx2>0 ? ORIENT_PRESERVING : 0); | ||
989 | |||
990 | if ( NotZero(fSignedAreaSTx2) ) | ||
991 | { | ||
992 | const float fAbsArea = fabsf(fSignedAreaSTx2); | ||
993 | const float fLenOs = Length(vOs); | ||
994 | const float fLenOt = Length(vOt); | ||
995 | const float fS = (pTriInfos[f].iFlag&ORIENT_PRESERVING)==0 ? (-1.0f) : 1.0f; | ||
996 | if ( NotZero(fLenOs) ) pTriInfos[f].vOs = vscale(fS/fLenOs, vOs); | ||
997 | if ( NotZero(fLenOt) ) pTriInfos[f].vOt = vscale(fS/fLenOt, vOt); | ||
998 | |||
999 | // evaluate magnitudes prior to normalization of vOs and vOt | ||
1000 | pTriInfos[f].fMagS = fLenOs / fAbsArea; | ||
1001 | pTriInfos[f].fMagT = fLenOt / fAbsArea; | ||
1002 | |||
1003 | // if this is a good triangle | ||
1004 | if ( NotZero(pTriInfos[f].fMagS) && NotZero(pTriInfos[f].fMagT)) | ||
1005 | pTriInfos[f].iFlag &= (~GROUP_WITH_ANY); | ||
1006 | } | ||
1007 | } | ||
1008 | |||
1009 | // force otherwise healthy quads to a fixed orientation | ||
1010 | while (t<(iNrTrianglesIn-1)) | ||
1011 | { | ||
1012 | const int iFO_a = pTriInfos[t].iOrgFaceNumber; | ||
1013 | const int iFO_b = pTriInfos[t+1].iOrgFaceNumber; | ||
1014 | if (iFO_a==iFO_b) // this is a quad | ||
1015 | { | ||
1016 | const tbool bIsDeg_a = (pTriInfos[t].iFlag&MARK_DEGENERATE)!=0 ? TTRUE : TFALSE; | ||
1017 | const tbool bIsDeg_b = (pTriInfos[t+1].iFlag&MARK_DEGENERATE)!=0 ? TTRUE : TFALSE; | ||
1018 | |||
1019 | // bad triangles should already have been removed by | ||
1020 | // DegenPrologue(), but just in case check bIsDeg_a and bIsDeg_a are false | ||
1021 | if ((bIsDeg_a||bIsDeg_b)==TFALSE) | ||
1022 | { | ||
1023 | const tbool bOrientA = (pTriInfos[t].iFlag&ORIENT_PRESERVING)!=0 ? TTRUE : TFALSE; | ||
1024 | const tbool bOrientB = (pTriInfos[t+1].iFlag&ORIENT_PRESERVING)!=0 ? TTRUE : TFALSE; | ||
1025 | // if this happens the quad has extremely bad mapping!! | ||
1026 | if (bOrientA!=bOrientB) | ||
1027 | { | ||
1028 | //printf("found quad with bad mapping\n"); | ||
1029 | tbool bChooseOrientFirstTri = TFALSE; | ||
1030 | if ((pTriInfos[t+1].iFlag&GROUP_WITH_ANY)!=0) bChooseOrientFirstTri = TTRUE; | ||
1031 | else if ( CalcTexArea(pContext, &piTriListIn[t*3+0]) >= CalcTexArea(pContext, &piTriListIn[(t+1)*3+0]) ) | ||
1032 | bChooseOrientFirstTri = TTRUE; | ||
1033 | |||
1034 | // force match | ||
1035 | { | ||
1036 | const int t0 = bChooseOrientFirstTri ? t : (t+1); | ||
1037 | const int t1 = bChooseOrientFirstTri ? (t+1) : t; | ||
1038 | pTriInfos[t1].iFlag &= (~ORIENT_PRESERVING); // clear first | ||
1039 | pTriInfos[t1].iFlag |= (pTriInfos[t0].iFlag&ORIENT_PRESERVING); // copy bit | ||
1040 | } | ||
1041 | } | ||
1042 | } | ||
1043 | t += 2; | ||
1044 | } | ||
1045 | else | ||
1046 | ++t; | ||
1047 | } | ||
1048 | |||
1049 | // match up edge pairs | ||
1050 | { | ||
1051 | SEdge * pEdges = (SEdge *) malloc(sizeof(SEdge)*iNrTrianglesIn*3); | ||
1052 | if (pEdges==NULL) | ||
1053 | BuildNeighborsSlow(pTriInfos, piTriListIn, iNrTrianglesIn); | ||
1054 | else | ||
1055 | { | ||
1056 | BuildNeighborsFast(pTriInfos, pEdges, piTriListIn, iNrTrianglesIn); | ||
1057 | |||
1058 | free(pEdges); | ||
1059 | } | ||
1060 | } | ||
1061 | } | ||
1062 | |||
1063 | ///////////////////////////////////////////////////////////////////////////////////////////////////// | ||
1064 | ///////////////////////////////////////////////////////////////////////////////////////////////////// | ||
1065 | |||
1066 | static tbool AssignRecur(const int piTriListIn[], STriInfo psTriInfos[], const int iMyTriIndex, SGroup * pGroup); | ||
1067 | static void AddTriToGroup(SGroup * pGroup, const int iTriIndex); | ||
1068 | |||
1069 | static int Build4RuleGroups(STriInfo pTriInfos[], SGroup pGroups[], int piGroupTrianglesBuffer[], const int piTriListIn[], const int iNrTrianglesIn) | ||
1070 | { | ||
1071 | const int iNrMaxGroups = iNrTrianglesIn*3; | ||
1072 | int iNrActiveGroups = 0; | ||
1073 | int iOffset = 0, f=0, i=0; | ||
1074 | (void)iNrMaxGroups; /* quiet warnings in non debug mode */ | ||
1075 | for (f=0; f<iNrTrianglesIn; f++) | ||
1076 | { | ||
1077 | for (i=0; i<3; i++) | ||
1078 | { | ||
1079 | // if not assigned to a group | ||
1080 | if ((pTriInfos[f].iFlag&GROUP_WITH_ANY)==0 && pTriInfos[f].AssignedGroup[i]==NULL) | ||
1081 | { | ||
1082 | tbool bOrPre; | ||
1083 | int neigh_indexL, neigh_indexR; | ||
1084 | const int vert_index = piTriListIn[f*3+i]; | ||
1085 | assert(iNrActiveGroups<iNrMaxGroups); | ||
1086 | pTriInfos[f].AssignedGroup[i] = &pGroups[iNrActiveGroups]; | ||
1087 | pTriInfos[f].AssignedGroup[i]->iVertexRepresentitive = vert_index; | ||
1088 | pTriInfos[f].AssignedGroup[i]->bOrientPreservering = (pTriInfos[f].iFlag&ORIENT_PRESERVING)!=0; | ||
1089 | pTriInfos[f].AssignedGroup[i]->iNrFaces = 0; | ||
1090 | pTriInfos[f].AssignedGroup[i]->pFaceIndices = &piGroupTrianglesBuffer[iOffset]; | ||
1091 | ++iNrActiveGroups; | ||
1092 | |||
1093 | AddTriToGroup(pTriInfos[f].AssignedGroup[i], f); | ||
1094 | bOrPre = (pTriInfos[f].iFlag&ORIENT_PRESERVING)!=0 ? TTRUE : TFALSE; | ||
1095 | neigh_indexL = pTriInfos[f].FaceNeighbors[i]; | ||
1096 | neigh_indexR = pTriInfos[f].FaceNeighbors[i>0?(i-1):2]; | ||
1097 | if (neigh_indexL>=0) // neighbor | ||
1098 | { | ||
1099 | const tbool bAnswer = | ||
1100 | AssignRecur(piTriListIn, pTriInfos, neigh_indexL, | ||
1101 | pTriInfos[f].AssignedGroup[i] ); | ||
1102 | |||
1103 | const tbool bOrPre2 = (pTriInfos[neigh_indexL].iFlag&ORIENT_PRESERVING)!=0 ? TTRUE : TFALSE; | ||
1104 | const tbool bDiff = bOrPre!=bOrPre2 ? TTRUE : TFALSE; | ||
1105 | assert(bAnswer || bDiff); | ||
1106 | (void)bAnswer, (void)bDiff; /* quiet warnings in non debug mode */ | ||
1107 | } | ||
1108 | if (neigh_indexR>=0) // neighbor | ||
1109 | { | ||
1110 | const tbool bAnswer = | ||
1111 | AssignRecur(piTriListIn, pTriInfos, neigh_indexR, | ||
1112 | pTriInfos[f].AssignedGroup[i] ); | ||
1113 | |||
1114 | const tbool bOrPre2 = (pTriInfos[neigh_indexR].iFlag&ORIENT_PRESERVING)!=0 ? TTRUE : TFALSE; | ||
1115 | const tbool bDiff = bOrPre!=bOrPre2 ? TTRUE : TFALSE; | ||
1116 | assert(bAnswer || bDiff); | ||
1117 | (void)bAnswer, (void)bDiff; /* quiet warnings in non debug mode */ | ||
1118 | } | ||
1119 | |||
1120 | // update offset | ||
1121 | iOffset += pTriInfos[f].AssignedGroup[i]->iNrFaces; | ||
1122 | // since the groups are disjoint a triangle can never | ||
1123 | // belong to more than 3 groups. Subsequently something | ||
1124 | // is completely screwed if this assertion ever hits. | ||
1125 | assert(iOffset <= iNrMaxGroups); | ||
1126 | } | ||
1127 | } | ||
1128 | } | ||
1129 | |||
1130 | return iNrActiveGroups; | ||
1131 | } | ||
1132 | |||
1133 | static void AddTriToGroup(SGroup * pGroup, const int iTriIndex) | ||
1134 | { | ||
1135 | pGroup->pFaceIndices[pGroup->iNrFaces] = iTriIndex; | ||
1136 | ++pGroup->iNrFaces; | ||
1137 | } | ||
1138 | |||
1139 | static tbool AssignRecur(const int piTriListIn[], STriInfo psTriInfos[], | ||
1140 | const int iMyTriIndex, SGroup * pGroup) | ||
1141 | { | ||
1142 | STriInfo * pMyTriInfo = &psTriInfos[iMyTriIndex]; | ||
1143 | |||
1144 | // track down vertex | ||
1145 | const int iVertRep = pGroup->iVertexRepresentitive; | ||
1146 | const int * pVerts = &piTriListIn[3*iMyTriIndex+0]; | ||
1147 | int i=-1; | ||
1148 | if (pVerts[0]==iVertRep) i=0; | ||
1149 | else if (pVerts[1]==iVertRep) i=1; | ||
1150 | else if (pVerts[2]==iVertRep) i=2; | ||
1151 | assert(i>=0 && i<3); | ||
1152 | |||
1153 | // early out | ||
1154 | if (pMyTriInfo->AssignedGroup[i] == pGroup) return TTRUE; | ||
1155 | else if (pMyTriInfo->AssignedGroup[i]!=NULL) return TFALSE; | ||
1156 | if ((pMyTriInfo->iFlag&GROUP_WITH_ANY)!=0) | ||
1157 | { | ||
1158 | // first to group with a group-with-anything triangle | ||
1159 | // determines it's orientation. | ||
1160 | // This is the only existing order dependency in the code!! | ||
1161 | if ( pMyTriInfo->AssignedGroup[0] == NULL && | ||
1162 | pMyTriInfo->AssignedGroup[1] == NULL && | ||
1163 | pMyTriInfo->AssignedGroup[2] == NULL ) | ||
1164 | { | ||
1165 | pMyTriInfo->iFlag &= (~ORIENT_PRESERVING); | ||
1166 | pMyTriInfo->iFlag |= (pGroup->bOrientPreservering ? ORIENT_PRESERVING : 0); | ||
1167 | } | ||
1168 | } | ||
1169 | { | ||
1170 | const tbool bOrient = (pMyTriInfo->iFlag&ORIENT_PRESERVING)!=0 ? TTRUE : TFALSE; | ||
1171 | if (bOrient != pGroup->bOrientPreservering) return TFALSE; | ||
1172 | } | ||
1173 | |||
1174 | AddTriToGroup(pGroup, iMyTriIndex); | ||
1175 | pMyTriInfo->AssignedGroup[i] = pGroup; | ||
1176 | |||
1177 | { | ||
1178 | const int neigh_indexL = pMyTriInfo->FaceNeighbors[i]; | ||
1179 | const int neigh_indexR = pMyTriInfo->FaceNeighbors[i>0?(i-1):2]; | ||
1180 | if (neigh_indexL>=0) | ||
1181 | AssignRecur(piTriListIn, psTriInfos, neigh_indexL, pGroup); | ||
1182 | if (neigh_indexR>=0) | ||
1183 | AssignRecur(piTriListIn, psTriInfos, neigh_indexR, pGroup); | ||
1184 | } | ||
1185 | |||
1186 | |||
1187 | |||
1188 | return TTRUE; | ||
1189 | } | ||
1190 | |||
1191 | ///////////////////////////////////////////////////////////////////////////////////////////////////// | ||
1192 | ///////////////////////////////////////////////////////////////////////////////////////////////////// | ||
1193 | |||
1194 | static tbool CompareSubGroups(const SSubGroup * pg1, const SSubGroup * pg2); | ||
1195 | static void QuickSort(int* pSortBuffer, int iLeft, int iRight, unsigned int uSeed); | ||
1196 | static STSpace EvalTspace(int face_indices[], const int iFaces, const int piTriListIn[], const STriInfo pTriInfos[], const SMikkTSpaceContext * pContext, const int iVertexRepresentitive); | ||
1197 | |||
1198 | static tbool GenerateTSpaces(STSpace psTspace[], const STriInfo pTriInfos[], const SGroup pGroups[], | ||
1199 | const int iNrActiveGroups, const int piTriListIn[], const float fThresCos, | ||
1200 | const SMikkTSpaceContext * pContext) | ||
1201 | { | ||
1202 | STSpace * pSubGroupTspace = NULL; | ||
1203 | SSubGroup * pUniSubGroups = NULL; | ||
1204 | int * pTmpMembers = NULL; | ||
1205 | int iMaxNrFaces=0, iUniqueTspaces=0, g=0, i=0; | ||
1206 | for (g=0; g<iNrActiveGroups; g++) | ||
1207 | if (iMaxNrFaces < pGroups[g].iNrFaces) | ||
1208 | iMaxNrFaces = pGroups[g].iNrFaces; | ||
1209 | |||
1210 | if (iMaxNrFaces == 0) return TTRUE; | ||
1211 | |||
1212 | // make initial allocations | ||
1213 | pSubGroupTspace = (STSpace *) malloc(sizeof(STSpace)*iMaxNrFaces); | ||
1214 | pUniSubGroups = (SSubGroup *) malloc(sizeof(SSubGroup)*iMaxNrFaces); | ||
1215 | pTmpMembers = (int *) malloc(sizeof(int)*iMaxNrFaces); | ||
1216 | if (pSubGroupTspace==NULL || pUniSubGroups==NULL || pTmpMembers==NULL) | ||
1217 | { | ||
1218 | if (pSubGroupTspace!=NULL) free(pSubGroupTspace); | ||
1219 | if (pUniSubGroups!=NULL) free(pUniSubGroups); | ||
1220 | if (pTmpMembers!=NULL) free(pTmpMembers); | ||
1221 | return TFALSE; | ||
1222 | } | ||
1223 | |||
1224 | |||
1225 | iUniqueTspaces = 0; | ||
1226 | for (g=0; g<iNrActiveGroups; g++) | ||
1227 | { | ||
1228 | const SGroup * pGroup = &pGroups[g]; | ||
1229 | int iUniqueSubGroups = 0, s=0; | ||
1230 | |||
1231 | for (i=0; i<pGroup->iNrFaces; i++) // triangles | ||
1232 | { | ||
1233 | const int f = pGroup->pFaceIndices[i]; // triangle number | ||
1234 | int index=-1, iVertIndex=-1, iOF_1=-1, iMembers=0, j=0, l=0; | ||
1235 | SSubGroup tmp_group; | ||
1236 | tbool bFound; | ||
1237 | SVec3 n, vOs, vOt; | ||
1238 | if (pTriInfos[f].AssignedGroup[0]==pGroup) index=0; | ||
1239 | else if (pTriInfos[f].AssignedGroup[1]==pGroup) index=1; | ||
1240 | else if (pTriInfos[f].AssignedGroup[2]==pGroup) index=2; | ||
1241 | assert(index>=0 && index<3); | ||
1242 | |||
1243 | iVertIndex = piTriListIn[f*3+index]; | ||
1244 | assert(iVertIndex==pGroup->iVertexRepresentitive); | ||
1245 | |||
1246 | // is normalized already | ||
1247 | n = GetNormal(pContext, iVertIndex); | ||
1248 | |||
1249 | // project | ||
1250 | vOs = vsub(pTriInfos[f].vOs, vscale(vdot(n,pTriInfos[f].vOs), n)); | ||
1251 | vOt = vsub(pTriInfos[f].vOt, vscale(vdot(n,pTriInfos[f].vOt), n)); | ||
1252 | if ( VNotZero(vOs) ) vOs = Normalize(vOs); | ||
1253 | if ( VNotZero(vOt) ) vOt = Normalize(vOt); | ||
1254 | |||
1255 | // original face number | ||
1256 | iOF_1 = pTriInfos[f].iOrgFaceNumber; | ||
1257 | |||
1258 | iMembers = 0; | ||
1259 | for (j=0; j<pGroup->iNrFaces; j++) | ||
1260 | { | ||
1261 | const int t = pGroup->pFaceIndices[j]; // triangle number | ||
1262 | const int iOF_2 = pTriInfos[t].iOrgFaceNumber; | ||
1263 | |||
1264 | // project | ||
1265 | SVec3 vOs2 = vsub(pTriInfos[t].vOs, vscale(vdot(n,pTriInfos[t].vOs), n)); | ||
1266 | SVec3 vOt2 = vsub(pTriInfos[t].vOt, vscale(vdot(n,pTriInfos[t].vOt), n)); | ||
1267 | if ( VNotZero(vOs2) ) vOs2 = Normalize(vOs2); | ||
1268 | if ( VNotZero(vOt2) ) vOt2 = Normalize(vOt2); | ||
1269 | |||
1270 | { | ||
1271 | const tbool bAny = ( (pTriInfos[f].iFlag | pTriInfos[t].iFlag) & GROUP_WITH_ANY )!=0 ? TTRUE : TFALSE; | ||
1272 | // make sure triangles which belong to the same quad are joined. | ||
1273 | const tbool bSameOrgFace = iOF_1==iOF_2 ? TTRUE : TFALSE; | ||
1274 | |||
1275 | const float fCosS = vdot(vOs,vOs2); | ||
1276 | const float fCosT = vdot(vOt,vOt2); | ||
1277 | |||
1278 | assert(f!=t || bSameOrgFace); // sanity check | ||
1279 | if (bAny || bSameOrgFace || (fCosS>fThresCos && fCosT>fThresCos)) | ||
1280 | pTmpMembers[iMembers++] = t; | ||
1281 | } | ||
1282 | } | ||
1283 | |||
1284 | // sort pTmpMembers | ||
1285 | tmp_group.iNrFaces = iMembers; | ||
1286 | tmp_group.pTriMembers = pTmpMembers; | ||
1287 | if (iMembers>1) | ||
1288 | { | ||
1289 | unsigned int uSeed = INTERNAL_RND_SORT_SEED; // could replace with a random seed? | ||
1290 | QuickSort(pTmpMembers, 0, iMembers-1, uSeed); | ||
1291 | } | ||
1292 | |||
1293 | // look for an existing match | ||
1294 | bFound = TFALSE; | ||
1295 | l=0; | ||
1296 | while (l<iUniqueSubGroups && !bFound) | ||
1297 | { | ||
1298 | bFound = CompareSubGroups(&tmp_group, &pUniSubGroups[l]); | ||
1299 | if (!bFound) ++l; | ||
1300 | } | ||
1301 | |||
1302 | // assign tangent space index | ||
1303 | assert(bFound || l==iUniqueSubGroups); | ||
1304 | //piTempTangIndices[f*3+index] = iUniqueTspaces+l; | ||
1305 | |||
1306 | // if no match was found we allocate a new subgroup | ||
1307 | if (!bFound) | ||
1308 | { | ||
1309 | // insert new subgroup | ||
1310 | int * pIndices = (int *) malloc(sizeof(int)*iMembers); | ||
1311 | if (pIndices==NULL) | ||
1312 | { | ||
1313 | // clean up and return false | ||
1314 | int s=0; | ||
1315 | for (s=0; s<iUniqueSubGroups; s++) | ||
1316 | free(pUniSubGroups[s].pTriMembers); | ||
1317 | free(pUniSubGroups); | ||
1318 | free(pTmpMembers); | ||
1319 | free(pSubGroupTspace); | ||
1320 | return TFALSE; | ||
1321 | } | ||
1322 | pUniSubGroups[iUniqueSubGroups].iNrFaces = iMembers; | ||
1323 | pUniSubGroups[iUniqueSubGroups].pTriMembers = pIndices; | ||
1324 | memcpy(pIndices, tmp_group.pTriMembers, iMembers*sizeof(int)); | ||
1325 | pSubGroupTspace[iUniqueSubGroups] = | ||
1326 | EvalTspace(tmp_group.pTriMembers, iMembers, piTriListIn, pTriInfos, pContext, pGroup->iVertexRepresentitive); | ||
1327 | ++iUniqueSubGroups; | ||
1328 | } | ||
1329 | |||
1330 | // output tspace | ||
1331 | { | ||
1332 | const int iOffs = pTriInfos[f].iTSpacesOffs; | ||
1333 | const int iVert = pTriInfos[f].vert_num[index]; | ||
1334 | STSpace * pTS_out = &psTspace[iOffs+iVert]; | ||
1335 | assert(pTS_out->iCounter<2); | ||
1336 | assert(((pTriInfos[f].iFlag&ORIENT_PRESERVING)!=0) == pGroup->bOrientPreservering); | ||
1337 | if (pTS_out->iCounter==1) | ||
1338 | { | ||
1339 | *pTS_out = AvgTSpace(pTS_out, &pSubGroupTspace[l]); | ||
1340 | pTS_out->iCounter = 2; // update counter | ||
1341 | pTS_out->bOrient = pGroup->bOrientPreservering; | ||
1342 | } | ||
1343 | else | ||
1344 | { | ||
1345 | assert(pTS_out->iCounter==0); | ||
1346 | *pTS_out = pSubGroupTspace[l]; | ||
1347 | pTS_out->iCounter = 1; // update counter | ||
1348 | pTS_out->bOrient = pGroup->bOrientPreservering; | ||
1349 | } | ||
1350 | } | ||
1351 | } | ||
1352 | |||
1353 | // clean up and offset iUniqueTspaces | ||
1354 | for (s=0; s<iUniqueSubGroups; s++) | ||
1355 | free(pUniSubGroups[s].pTriMembers); | ||
1356 | iUniqueTspaces += iUniqueSubGroups; | ||
1357 | } | ||
1358 | |||
1359 | // clean up | ||
1360 | free(pUniSubGroups); | ||
1361 | free(pTmpMembers); | ||
1362 | free(pSubGroupTspace); | ||
1363 | |||
1364 | return TTRUE; | ||
1365 | } | ||
1366 | |||
1367 | static STSpace EvalTspace(int face_indices[], const int iFaces, const int piTriListIn[], const STriInfo pTriInfos[], | ||
1368 | const SMikkTSpaceContext * pContext, const int iVertexRepresentitive) | ||
1369 | { | ||
1370 | STSpace res; | ||
1371 | float fAngleSum = 0; | ||
1372 | int face=0; | ||
1373 | res.vOs.x=0.0f; res.vOs.y=0.0f; res.vOs.z=0.0f; | ||
1374 | res.vOt.x=0.0f; res.vOt.y=0.0f; res.vOt.z=0.0f; | ||
1375 | res.fMagS = 0; res.fMagT = 0; | ||
1376 | |||
1377 | for (face=0; face<iFaces; face++) | ||
1378 | { | ||
1379 | const int f = face_indices[face]; | ||
1380 | |||
1381 | // only valid triangles get to add their contribution | ||
1382 | if ( (pTriInfos[f].iFlag&GROUP_WITH_ANY)==0 ) | ||
1383 | { | ||
1384 | SVec3 n, vOs, vOt, p0, p1, p2, v1, v2; | ||
1385 | float fCos, fAngle, fMagS, fMagT; | ||
1386 | int i=-1, index=-1, i0=-1, i1=-1, i2=-1; | ||
1387 | if (piTriListIn[3*f+0]==iVertexRepresentitive) i=0; | ||
1388 | else if (piTriListIn[3*f+1]==iVertexRepresentitive) i=1; | ||
1389 | else if (piTriListIn[3*f+2]==iVertexRepresentitive) i=2; | ||
1390 | assert(i>=0 && i<3); | ||
1391 | |||
1392 | // project | ||
1393 | index = piTriListIn[3*f+i]; | ||
1394 | n = GetNormal(pContext, index); | ||
1395 | vOs = vsub(pTriInfos[f].vOs, vscale(vdot(n,pTriInfos[f].vOs), n)); | ||
1396 | vOt = vsub(pTriInfos[f].vOt, vscale(vdot(n,pTriInfos[f].vOt), n)); | ||
1397 | if ( VNotZero(vOs) ) vOs = Normalize(vOs); | ||
1398 | if ( VNotZero(vOt) ) vOt = Normalize(vOt); | ||
1399 | |||
1400 | i2 = piTriListIn[3*f + (i<2?(i+1):0)]; | ||
1401 | i1 = piTriListIn[3*f + i]; | ||
1402 | i0 = piTriListIn[3*f + (i>0?(i-1):2)]; | ||
1403 | |||
1404 | p0 = GetPosition(pContext, i0); | ||
1405 | p1 = GetPosition(pContext, i1); | ||
1406 | p2 = GetPosition(pContext, i2); | ||
1407 | v1 = vsub(p0,p1); | ||
1408 | v2 = vsub(p2,p1); | ||
1409 | |||
1410 | // project | ||
1411 | v1 = vsub(v1, vscale(vdot(n,v1),n)); if ( VNotZero(v1) ) v1 = Normalize(v1); | ||
1412 | v2 = vsub(v2, vscale(vdot(n,v2),n)); if ( VNotZero(v2) ) v2 = Normalize(v2); | ||
1413 | |||
1414 | // weight contribution by the angle | ||
1415 | // between the two edge vectors | ||
1416 | fCos = vdot(v1,v2); fCos=fCos>1?1:(fCos<(-1) ? (-1) : fCos); | ||
1417 | fAngle = (float) acos(fCos); | ||
1418 | fMagS = pTriInfos[f].fMagS; | ||
1419 | fMagT = pTriInfos[f].fMagT; | ||
1420 | |||
1421 | res.vOs=vadd(res.vOs, vscale(fAngle,vOs)); | ||
1422 | res.vOt=vadd(res.vOt,vscale(fAngle,vOt)); | ||
1423 | res.fMagS+=(fAngle*fMagS); | ||
1424 | res.fMagT+=(fAngle*fMagT); | ||
1425 | fAngleSum += fAngle; | ||
1426 | } | ||
1427 | } | ||
1428 | |||
1429 | // normalize | ||
1430 | if ( VNotZero(res.vOs) ) res.vOs = Normalize(res.vOs); | ||
1431 | if ( VNotZero(res.vOt) ) res.vOt = Normalize(res.vOt); | ||
1432 | if (fAngleSum>0) | ||
1433 | { | ||
1434 | res.fMagS /= fAngleSum; | ||
1435 | res.fMagT /= fAngleSum; | ||
1436 | } | ||
1437 | |||
1438 | return res; | ||
1439 | } | ||
1440 | |||
1441 | static tbool CompareSubGroups(const SSubGroup * pg1, const SSubGroup * pg2) | ||
1442 | { | ||
1443 | tbool bStillSame=TTRUE; | ||
1444 | int i=0; | ||
1445 | if (pg1->iNrFaces!=pg2->iNrFaces) return TFALSE; | ||
1446 | while (i<pg1->iNrFaces && bStillSame) | ||
1447 | { | ||
1448 | bStillSame = pg1->pTriMembers[i]==pg2->pTriMembers[i] ? TTRUE : TFALSE; | ||
1449 | if (bStillSame) ++i; | ||
1450 | } | ||
1451 | return bStillSame; | ||
1452 | } | ||
1453 | |||
1454 | static void QuickSort(int* pSortBuffer, int iLeft, int iRight, unsigned int uSeed) | ||
1455 | { | ||
1456 | int iL, iR, n, index, iMid, iTmp; | ||
1457 | |||
1458 | // Random | ||
1459 | unsigned int t=uSeed&31; | ||
1460 | t=(uSeed<<t)|(uSeed>>(32-t)); | ||
1461 | uSeed=uSeed+t+3; | ||
1462 | // Random end | ||
1463 | |||
1464 | iL=iLeft; iR=iRight; | ||
1465 | n = (iR-iL)+1; | ||
1466 | assert(n>=0); | ||
1467 | index = (int) (uSeed%n); | ||
1468 | |||
1469 | iMid=pSortBuffer[index + iL]; | ||
1470 | |||
1471 | |||
1472 | do | ||
1473 | { | ||
1474 | while (pSortBuffer[iL] < iMid) | ||
1475 | ++iL; | ||
1476 | while (pSortBuffer[iR] > iMid) | ||
1477 | --iR; | ||
1478 | |||
1479 | if (iL <= iR) | ||
1480 | { | ||
1481 | iTmp = pSortBuffer[iL]; | ||
1482 | pSortBuffer[iL] = pSortBuffer[iR]; | ||
1483 | pSortBuffer[iR] = iTmp; | ||
1484 | ++iL; --iR; | ||
1485 | } | ||
1486 | } | ||
1487 | while (iL <= iR); | ||
1488 | |||
1489 | if (iLeft < iR) | ||
1490 | QuickSort(pSortBuffer, iLeft, iR, uSeed); | ||
1491 | if (iL < iRight) | ||
1492 | QuickSort(pSortBuffer, iL, iRight, uSeed); | ||
1493 | } | ||
1494 | |||
1495 | ///////////////////////////////////////////////////////////////////////////////////////////// | ||
1496 | ///////////////////////////////////////////////////////////////////////////////////////////// | ||
1497 | |||
1498 | static void QuickSortEdges(SEdge * pSortBuffer, int iLeft, int iRight, const int channel, unsigned int uSeed); | ||
1499 | static void GetEdge(int * i0_out, int * i1_out, int * edgenum_out, const int indices[], const int i0_in, const int i1_in); | ||
1500 | |||
1501 | static void BuildNeighborsFast(STriInfo pTriInfos[], SEdge * pEdges, const int piTriListIn[], const int iNrTrianglesIn) | ||
1502 | { | ||
1503 | // build array of edges | ||
1504 | unsigned int uSeed = INTERNAL_RND_SORT_SEED; // could replace with a random seed? | ||
1505 | int iEntries=0, iCurStartIndex=-1, f=0, i=0; | ||
1506 | for (f=0; f<iNrTrianglesIn; f++) | ||
1507 | for (i=0; i<3; i++) | ||
1508 | { | ||
1509 | const int i0 = piTriListIn[f*3+i]; | ||
1510 | const int i1 = piTriListIn[f*3+(i<2?(i+1):0)]; | ||
1511 | pEdges[f*3+i].i0 = i0 < i1 ? i0 : i1; // put minimum index in i0 | ||
1512 | pEdges[f*3+i].i1 = !(i0 < i1) ? i0 : i1; // put maximum index in i1 | ||
1513 | pEdges[f*3+i].f = f; // record face number | ||
1514 | } | ||
1515 | |||
1516 | // sort over all edges by i0, this is the pricy one. | ||
1517 | QuickSortEdges(pEdges, 0, iNrTrianglesIn*3-1, 0, uSeed); // sort channel 0 which is i0 | ||
1518 | |||
1519 | // sub sort over i1, should be fast. | ||
1520 | // could replace this with a 64 bit int sort over (i0,i1) | ||
1521 | // with i0 as msb in the quicksort call above. | ||
1522 | iEntries = iNrTrianglesIn*3; | ||
1523 | iCurStartIndex = 0; | ||
1524 | for (i=1; i<iEntries; i++) | ||
1525 | { | ||
1526 | if (pEdges[iCurStartIndex].i0 != pEdges[i].i0) | ||
1527 | { | ||
1528 | const int iL = iCurStartIndex; | ||
1529 | const int iR = i-1; | ||
1530 | //const int iElems = i-iL; | ||
1531 | iCurStartIndex = i; | ||
1532 | QuickSortEdges(pEdges, iL, iR, 1, uSeed); // sort channel 1 which is i1 | ||
1533 | } | ||
1534 | } | ||
1535 | |||
1536 | // sub sort over f, which should be fast. | ||
1537 | // this step is to remain compliant with BuildNeighborsSlow() when | ||
1538 | // more than 2 triangles use the same edge (such as a butterfly topology). | ||
1539 | iCurStartIndex = 0; | ||
1540 | for (i=1; i<iEntries; i++) | ||
1541 | { | ||
1542 | if (pEdges[iCurStartIndex].i0 != pEdges[i].i0 || pEdges[iCurStartIndex].i1 != pEdges[i].i1) | ||
1543 | { | ||
1544 | const int iL = iCurStartIndex; | ||
1545 | const int iR = i-1; | ||
1546 | //const int iElems = i-iL; | ||
1547 | iCurStartIndex = i; | ||
1548 | QuickSortEdges(pEdges, iL, iR, 2, uSeed); // sort channel 2 which is f | ||
1549 | } | ||
1550 | } | ||
1551 | |||
1552 | // pair up, adjacent triangles | ||
1553 | for (i=0; i<iEntries; i++) | ||
1554 | { | ||
1555 | const int i0=pEdges[i].i0; | ||
1556 | const int i1=pEdges[i].i1; | ||
1557 | const int f = pEdges[i].f; | ||
1558 | tbool bUnassigned_A; | ||
1559 | |||
1560 | int i0_A, i1_A; | ||
1561 | int edgenum_A, edgenum_B=0; // 0,1 or 2 | ||
1562 | GetEdge(&i0_A, &i1_A, &edgenum_A, &piTriListIn[f*3], i0, i1); // resolve index ordering and edge_num | ||
1563 | bUnassigned_A = pTriInfos[f].FaceNeighbors[edgenum_A] == -1 ? TTRUE : TFALSE; | ||
1564 | |||
1565 | if (bUnassigned_A) | ||
1566 | { | ||
1567 | // get true index ordering | ||
1568 | int j=i+1, t; | ||
1569 | tbool bNotFound = TTRUE; | ||
1570 | while (j<iEntries && i0==pEdges[j].i0 && i1==pEdges[j].i1 && bNotFound) | ||
1571 | { | ||
1572 | tbool bUnassigned_B; | ||
1573 | int i0_B, i1_B; | ||
1574 | t = pEdges[j].f; | ||
1575 | // flip i0_B and i1_B | ||
1576 | GetEdge(&i1_B, &i0_B, &edgenum_B, &piTriListIn[t*3], pEdges[j].i0, pEdges[j].i1); // resolve index ordering and edge_num | ||
1577 | //assert(!(i0_A==i1_B && i1_A==i0_B)); | ||
1578 | bUnassigned_B = pTriInfos[t].FaceNeighbors[edgenum_B]==-1 ? TTRUE : TFALSE; | ||
1579 | if (i0_A==i0_B && i1_A==i1_B && bUnassigned_B) | ||
1580 | bNotFound = TFALSE; | ||
1581 | else | ||
1582 | ++j; | ||
1583 | } | ||
1584 | |||
1585 | if (!bNotFound) | ||
1586 | { | ||
1587 | int t = pEdges[j].f; | ||
1588 | pTriInfos[f].FaceNeighbors[edgenum_A] = t; | ||
1589 | //assert(pTriInfos[t].FaceNeighbors[edgenum_B]==-1); | ||
1590 | pTriInfos[t].FaceNeighbors[edgenum_B] = f; | ||
1591 | } | ||
1592 | } | ||
1593 | } | ||
1594 | } | ||
1595 | |||
1596 | static void BuildNeighborsSlow(STriInfo pTriInfos[], const int piTriListIn[], const int iNrTrianglesIn) | ||
1597 | { | ||
1598 | int f=0, i=0; | ||
1599 | for (f=0; f<iNrTrianglesIn; f++) | ||
1600 | { | ||
1601 | for (i=0; i<3; i++) | ||
1602 | { | ||
1603 | // if unassigned | ||
1604 | if (pTriInfos[f].FaceNeighbors[i] == -1) | ||
1605 | { | ||
1606 | const int i0_A = piTriListIn[f*3+i]; | ||
1607 | const int i1_A = piTriListIn[f*3+(i<2?(i+1):0)]; | ||
1608 | |||
1609 | // search for a neighbor | ||
1610 | tbool bFound = TFALSE; | ||
1611 | int t=0, j=0; | ||
1612 | while (!bFound && t<iNrTrianglesIn) | ||
1613 | { | ||
1614 | if (t!=f) | ||
1615 | { | ||
1616 | j=0; | ||
1617 | while (!bFound && j<3) | ||
1618 | { | ||
1619 | // in rev order | ||
1620 | const int i1_B = piTriListIn[t*3+j]; | ||
1621 | const int i0_B = piTriListIn[t*3+(j<2?(j+1):0)]; | ||
1622 | //assert(!(i0_A==i1_B && i1_A==i0_B)); | ||
1623 | if (i0_A==i0_B && i1_A==i1_B) | ||
1624 | bFound = TTRUE; | ||
1625 | else | ||
1626 | ++j; | ||
1627 | } | ||
1628 | } | ||
1629 | |||
1630 | if (!bFound) ++t; | ||
1631 | } | ||
1632 | |||
1633 | // assign neighbors | ||
1634 | if (bFound) | ||
1635 | { | ||
1636 | pTriInfos[f].FaceNeighbors[i] = t; | ||
1637 | //assert(pTriInfos[t].FaceNeighbors[j]==-1); | ||
1638 | pTriInfos[t].FaceNeighbors[j] = f; | ||
1639 | } | ||
1640 | } | ||
1641 | } | ||
1642 | } | ||
1643 | } | ||
1644 | |||
1645 | static void QuickSortEdges(SEdge * pSortBuffer, int iLeft, int iRight, const int channel, unsigned int uSeed) | ||
1646 | { | ||
1647 | unsigned int t; | ||
1648 | int iL, iR, n, index, iMid; | ||
1649 | |||
1650 | // early out | ||
1651 | SEdge sTmp; | ||
1652 | const int iElems = iRight-iLeft+1; | ||
1653 | if (iElems<2) return; | ||
1654 | else if (iElems==2) | ||
1655 | { | ||
1656 | if (pSortBuffer[iLeft].array[channel] > pSortBuffer[iRight].array[channel]) | ||
1657 | { | ||
1658 | sTmp = pSortBuffer[iLeft]; | ||
1659 | pSortBuffer[iLeft] = pSortBuffer[iRight]; | ||
1660 | pSortBuffer[iRight] = sTmp; | ||
1661 | } | ||
1662 | return; | ||
1663 | } | ||
1664 | |||
1665 | // Random | ||
1666 | t=uSeed&31; | ||
1667 | t=(uSeed<<t)|(uSeed>>(32-t)); | ||
1668 | uSeed=uSeed+t+3; | ||
1669 | // Random end | ||
1670 | |||
1671 | iL = iLeft; | ||
1672 | iR = iRight; | ||
1673 | n = (iR-iL)+1; | ||
1674 | assert(n>=0); | ||
1675 | index = (int) (uSeed%n); | ||
1676 | |||
1677 | iMid=pSortBuffer[index + iL].array[channel]; | ||
1678 | |||
1679 | do | ||
1680 | { | ||
1681 | while (pSortBuffer[iL].array[channel] < iMid) | ||
1682 | ++iL; | ||
1683 | while (pSortBuffer[iR].array[channel] > iMid) | ||
1684 | --iR; | ||
1685 | |||
1686 | if (iL <= iR) | ||
1687 | { | ||
1688 | sTmp = pSortBuffer[iL]; | ||
1689 | pSortBuffer[iL] = pSortBuffer[iR]; | ||
1690 | pSortBuffer[iR] = sTmp; | ||
1691 | ++iL; --iR; | ||
1692 | } | ||
1693 | } | ||
1694 | while (iL <= iR); | ||
1695 | |||
1696 | if (iLeft < iR) | ||
1697 | QuickSortEdges(pSortBuffer, iLeft, iR, channel, uSeed); | ||
1698 | if (iL < iRight) | ||
1699 | QuickSortEdges(pSortBuffer, iL, iRight, channel, uSeed); | ||
1700 | } | ||
1701 | |||
1702 | // resolve ordering and edge number | ||
1703 | static void GetEdge(int * i0_out, int * i1_out, int * edgenum_out, const int indices[], const int i0_in, const int i1_in) | ||
1704 | { | ||
1705 | *edgenum_out = -1; | ||
1706 | |||
1707 | // test if first index is on the edge | ||
1708 | if (indices[0]==i0_in || indices[0]==i1_in) | ||
1709 | { | ||
1710 | // test if second index is on the edge | ||
1711 | if (indices[1]==i0_in || indices[1]==i1_in) | ||
1712 | { | ||
1713 | edgenum_out[0]=0; // first edge | ||
1714 | i0_out[0]=indices[0]; | ||
1715 | i1_out[0]=indices[1]; | ||
1716 | } | ||
1717 | else | ||
1718 | { | ||
1719 | edgenum_out[0]=2; // third edge | ||
1720 | i0_out[0]=indices[2]; | ||
1721 | i1_out[0]=indices[0]; | ||
1722 | } | ||
1723 | } | ||
1724 | else | ||
1725 | { | ||
1726 | // only second and third index is on the edge | ||
1727 | edgenum_out[0]=1; // second edge | ||
1728 | i0_out[0]=indices[1]; | ||
1729 | i1_out[0]=indices[2]; | ||
1730 | } | ||
1731 | } | ||
1732 | |||
1733 | |||
1734 | ///////////////////////////////////////////////////////////////////////////////////////////// | ||
1735 | /////////////////////////////////// Degenerate triangles //////////////////////////////////// | ||
1736 | |||
1737 | static void DegenPrologue(STriInfo pTriInfos[], int piTriList_out[], const int iNrTrianglesIn, const int iTotTris) | ||
1738 | { | ||
1739 | int iNextGoodTriangleSearchIndex=-1; | ||
1740 | tbool bStillFindingGoodOnes; | ||
1741 | |||
1742 | // locate quads with only one good triangle | ||
1743 | int t=0; | ||
1744 | while (t<(iTotTris-1)) | ||
1745 | { | ||
1746 | const int iFO_a = pTriInfos[t].iOrgFaceNumber; | ||
1747 | const int iFO_b = pTriInfos[t+1].iOrgFaceNumber; | ||
1748 | if (iFO_a==iFO_b) // this is a quad | ||
1749 | { | ||
1750 | const tbool bIsDeg_a = (pTriInfos[t].iFlag&MARK_DEGENERATE)!=0 ? TTRUE : TFALSE; | ||
1751 | const tbool bIsDeg_b = (pTriInfos[t+1].iFlag&MARK_DEGENERATE)!=0 ? TTRUE : TFALSE; | ||
1752 | if ((bIsDeg_a^bIsDeg_b)!=0) | ||
1753 | { | ||
1754 | pTriInfos[t].iFlag |= QUAD_ONE_DEGEN_TRI; | ||
1755 | pTriInfos[t+1].iFlag |= QUAD_ONE_DEGEN_TRI; | ||
1756 | } | ||
1757 | t += 2; | ||
1758 | } | ||
1759 | else | ||
1760 | ++t; | ||
1761 | } | ||
1762 | |||
1763 | // reorder list so all degen triangles are moved to the back | ||
1764 | // without reordering the good triangles | ||
1765 | iNextGoodTriangleSearchIndex = 1; | ||
1766 | t=0; | ||
1767 | bStillFindingGoodOnes = TTRUE; | ||
1768 | while (t<iNrTrianglesIn && bStillFindingGoodOnes) | ||
1769 | { | ||
1770 | const tbool bIsGood = (pTriInfos[t].iFlag&MARK_DEGENERATE)==0 ? TTRUE : TFALSE; | ||
1771 | if (bIsGood) | ||
1772 | { | ||
1773 | if (iNextGoodTriangleSearchIndex < (t+2)) | ||
1774 | iNextGoodTriangleSearchIndex = t+2; | ||
1775 | } | ||
1776 | else | ||
1777 | { | ||
1778 | int t0, t1; | ||
1779 | // search for the first good triangle. | ||
1780 | tbool bJustADegenerate = TTRUE; | ||
1781 | while (bJustADegenerate && iNextGoodTriangleSearchIndex<iTotTris) | ||
1782 | { | ||
1783 | const tbool bIsGood = (pTriInfos[iNextGoodTriangleSearchIndex].iFlag&MARK_DEGENERATE)==0 ? TTRUE : TFALSE; | ||
1784 | if (bIsGood) bJustADegenerate=TFALSE; | ||
1785 | else ++iNextGoodTriangleSearchIndex; | ||
1786 | } | ||
1787 | |||
1788 | t0 = t; | ||
1789 | t1 = iNextGoodTriangleSearchIndex; | ||
1790 | ++iNextGoodTriangleSearchIndex; | ||
1791 | assert(iNextGoodTriangleSearchIndex > (t+1)); | ||
1792 | |||
1793 | // swap triangle t0 and t1 | ||
1794 | if (!bJustADegenerate) | ||
1795 | { | ||
1796 | int i=0; | ||
1797 | for (i=0; i<3; i++) | ||
1798 | { | ||
1799 | const int index = piTriList_out[t0*3+i]; | ||
1800 | piTriList_out[t0*3+i] = piTriList_out[t1*3+i]; | ||
1801 | piTriList_out[t1*3+i] = index; | ||
1802 | } | ||
1803 | { | ||
1804 | const STriInfo tri_info = pTriInfos[t0]; | ||
1805 | pTriInfos[t0] = pTriInfos[t1]; | ||
1806 | pTriInfos[t1] = tri_info; | ||
1807 | } | ||
1808 | } | ||
1809 | else | ||
1810 | bStillFindingGoodOnes = TFALSE; // this is not supposed to happen | ||
1811 | } | ||
1812 | |||
1813 | if (bStillFindingGoodOnes) ++t; | ||
1814 | } | ||
1815 | |||
1816 | assert(bStillFindingGoodOnes); // code will still work. | ||
1817 | assert(iNrTrianglesIn == t); | ||
1818 | } | ||
1819 | |||
1820 | static void DegenEpilogue(STSpace psTspace[], STriInfo pTriInfos[], int piTriListIn[], const SMikkTSpaceContext * pContext, const int iNrTrianglesIn, const int iTotTris) | ||
1821 | { | ||
1822 | int t=0, i=0; | ||
1823 | // deal with degenerate triangles | ||
1824 | // punishment for degenerate triangles is O(N^2) | ||
1825 | for (t=iNrTrianglesIn; t<iTotTris; t++) | ||
1826 | { | ||
1827 | // degenerate triangles on a quad with one good triangle are skipped | ||
1828 | // here but processed in the next loop | ||
1829 | const tbool bSkip = (pTriInfos[t].iFlag&QUAD_ONE_DEGEN_TRI)!=0 ? TTRUE : TFALSE; | ||
1830 | |||
1831 | if (!bSkip) | ||
1832 | { | ||
1833 | for (i=0; i<3; i++) | ||
1834 | { | ||
1835 | const int index1 = piTriListIn[t*3+i]; | ||
1836 | // search through the good triangles | ||
1837 | tbool bNotFound = TTRUE; | ||
1838 | int j=0; | ||
1839 | while (bNotFound && j<(3*iNrTrianglesIn)) | ||
1840 | { | ||
1841 | const int index2 = piTriListIn[j]; | ||
1842 | if (index1==index2) bNotFound=TFALSE; | ||
1843 | else ++j; | ||
1844 | } | ||
1845 | |||
1846 | if (!bNotFound) | ||
1847 | { | ||
1848 | const int iTri = j/3; | ||
1849 | const int iVert = j%3; | ||
1850 | const int iSrcVert=pTriInfos[iTri].vert_num[iVert]; | ||
1851 | const int iSrcOffs=pTriInfos[iTri].iTSpacesOffs; | ||
1852 | const int iDstVert=pTriInfos[t].vert_num[i]; | ||
1853 | const int iDstOffs=pTriInfos[t].iTSpacesOffs; | ||
1854 | |||
1855 | // copy tspace | ||
1856 | psTspace[iDstOffs+iDstVert] = psTspace[iSrcOffs+iSrcVert]; | ||
1857 | } | ||
1858 | } | ||
1859 | } | ||
1860 | } | ||
1861 | |||
1862 | // deal with degenerate quads with one good triangle | ||
1863 | for (t=0; t<iNrTrianglesIn; t++) | ||
1864 | { | ||
1865 | // this triangle belongs to a quad where the | ||
1866 | // other triangle is degenerate | ||
1867 | if ( (pTriInfos[t].iFlag&QUAD_ONE_DEGEN_TRI)!=0 ) | ||
1868 | { | ||
1869 | SVec3 vDstP; | ||
1870 | int iOrgF=-1, i=0; | ||
1871 | tbool bNotFound; | ||
1872 | unsigned char * pV = pTriInfos[t].vert_num; | ||
1873 | int iFlag = (1<<pV[0]) | (1<<pV[1]) | (1<<pV[2]); | ||
1874 | int iMissingIndex = 0; | ||
1875 | if ((iFlag&2)==0) iMissingIndex=1; | ||
1876 | else if ((iFlag&4)==0) iMissingIndex=2; | ||
1877 | else if ((iFlag&8)==0) iMissingIndex=3; | ||
1878 | |||
1879 | iOrgF = pTriInfos[t].iOrgFaceNumber; | ||
1880 | vDstP = GetPosition(pContext, MakeIndex(iOrgF, iMissingIndex)); | ||
1881 | bNotFound = TTRUE; | ||
1882 | i=0; | ||
1883 | while (bNotFound && i<3) | ||
1884 | { | ||
1885 | const int iVert = pV[i]; | ||
1886 | const SVec3 vSrcP = GetPosition(pContext, MakeIndex(iOrgF, iVert)); | ||
1887 | if (veq(vSrcP, vDstP)==TTRUE) | ||
1888 | { | ||
1889 | const int iOffs = pTriInfos[t].iTSpacesOffs; | ||
1890 | psTspace[iOffs+iMissingIndex] = psTspace[iOffs+iVert]; | ||
1891 | bNotFound=TFALSE; | ||
1892 | } | ||
1893 | else | ||
1894 | ++i; | ||
1895 | } | ||
1896 | assert(!bNotFound); | ||
1897 | } | ||
1898 | } | ||
1899 | } | ||
diff --git a/gfx/contrib/cgltf-tangents/MikkTSpace/mikktspace.h b/gfx/contrib/cgltf-tangents/MikkTSpace/mikktspace.h new file mode 100644 index 0000000..52c44a7 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/MikkTSpace/mikktspace.h | |||
@@ -0,0 +1,145 @@ | |||
1 | /** \file mikktspace/mikktspace.h | ||
2 | * \ingroup mikktspace | ||
3 | */ | ||
4 | /** | ||
5 | * Copyright (C) 2011 by Morten S. Mikkelsen | ||
6 | * | ||
7 | * This software is provided 'as-is', without any express or implied | ||
8 | * warranty. In no event will the authors be held liable for any damages | ||
9 | * arising from the use of this software. | ||
10 | * | ||
11 | * Permission is granted to anyone to use this software for any purpose, | ||
12 | * including commercial applications, and to alter it and redistribute it | ||
13 | * freely, subject to the following restrictions: | ||
14 | * | ||
15 | * 1. The origin of this software must not be misrepresented; you must not | ||
16 | * claim that you wrote the original software. If you use this software | ||
17 | * in a product, an acknowledgment in the product documentation would be | ||
18 | * appreciated but is not required. | ||
19 | * 2. Altered source versions must be plainly marked as such, and must not be | ||
20 | * misrepresented as being the original software. | ||
21 | * 3. This notice may not be removed or altered from any source distribution. | ||
22 | */ | ||
23 | |||
24 | #ifndef __MIKKTSPACE_H__ | ||
25 | #define __MIKKTSPACE_H__ | ||
26 | |||
27 | |||
28 | #ifdef __cplusplus | ||
29 | extern "C" { | ||
30 | #endif | ||
31 | |||
32 | /* Author: Morten S. Mikkelsen | ||
33 | * Version: 1.0 | ||
34 | * | ||
35 | * The files mikktspace.h and mikktspace.c are designed to be | ||
36 | * stand-alone files and it is important that they are kept this way. | ||
37 | * Not having dependencies on structures/classes/libraries specific | ||
38 | * to the program, in which they are used, allows them to be copied | ||
39 | * and used as is into any tool, program or plugin. | ||
40 | * The code is designed to consistently generate the same | ||
41 | * tangent spaces, for a given mesh, in any tool in which it is used. | ||
42 | * This is done by performing an internal welding step and subsequently an order-independent evaluation | ||
43 | * of tangent space for meshes consisting of triangles and quads. | ||
44 | * This means faces can be received in any order and the same is true for | ||
45 | * the order of vertices of each face. The generated result will not be affected | ||
46 | * by such reordering. Additionally, whether degenerate (vertices or texture coordinates) | ||
47 | * primitives are present or not will not affect the generated results either. | ||
48 | * Once tangent space calculation is done the vertices of degenerate primitives will simply | ||
49 | * inherit tangent space from neighboring non degenerate primitives. | ||
50 | * The analysis behind this implementation can be found in my master's thesis | ||
51 | * which is available for download --> http://image.diku.dk/projects/media/morten.mikkelsen.08.pdf | ||
52 | * Note that though the tangent spaces at the vertices are generated in an order-independent way, | ||
53 | * by this implementation, the interpolated tangent space is still affected by which diagonal is | ||
54 | * chosen to split each quad. A sensible solution is to have your tools pipeline always | ||
55 | * split quads by the shortest diagonal. This choice is order-independent and works with mirroring. | ||
56 | * If these have the same length then compare the diagonals defined by the texture coordinates. | ||
57 | * XNormal which is a tool for baking normal maps allows you to write your own tangent space plugin | ||
58 | * and also quad triangulator plugin. | ||
59 | */ | ||
60 | |||
61 | |||
62 | typedef int tbool; | ||
63 | typedef struct SMikkTSpaceContext SMikkTSpaceContext; | ||
64 | |||
65 | typedef struct { | ||
66 | // Returns the number of faces (triangles/quads) on the mesh to be processed. | ||
67 | int (*m_getNumFaces)(const SMikkTSpaceContext * pContext); | ||
68 | |||
69 | // Returns the number of vertices on face number iFace | ||
70 | // iFace is a number in the range {0, 1, ..., getNumFaces()-1} | ||
71 | int (*m_getNumVerticesOfFace)(const SMikkTSpaceContext * pContext, const int iFace); | ||
72 | |||
73 | // returns the position/normal/texcoord of the referenced face of vertex number iVert. | ||
74 | // iVert is in the range {0,1,2} for triangles and {0,1,2,3} for quads. | ||
75 | void (*m_getPosition)(const SMikkTSpaceContext * pContext, float fvPosOut[], const int iFace, const int iVert); | ||
76 | void (*m_getNormal)(const SMikkTSpaceContext * pContext, float fvNormOut[], const int iFace, const int iVert); | ||
77 | void (*m_getTexCoord)(const SMikkTSpaceContext * pContext, float fvTexcOut[], const int iFace, const int iVert); | ||
78 | |||
79 | // either (or both) of the two setTSpace callbacks can be set. | ||
80 | // The call-back m_setTSpaceBasic() is sufficient for basic normal mapping. | ||
81 | |||
82 | // This function is used to return the tangent and fSign to the application. | ||
83 | // fvTangent is a unit length vector. | ||
84 | // For normal maps it is sufficient to use the following simplified version of the bitangent which is generated at pixel/vertex level. | ||
85 | // bitangent = fSign * cross(vN, tangent); | ||
86 | // Note that the results are returned unindexed. It is possible to generate a new index list | ||
87 | // But averaging/overwriting tangent spaces by using an already existing index list WILL produce INCRORRECT results. | ||
88 | // DO NOT! use an already existing index list. | ||
89 | void (*m_setTSpaceBasic)(const SMikkTSpaceContext * pContext, const float fvTangent[], const float fSign, const int iFace, const int iVert); | ||
90 | |||
91 | // This function is used to return tangent space results to the application. | ||
92 | // fvTangent and fvBiTangent are unit length vectors and fMagS and fMagT are their | ||
93 | // true magnitudes which can be used for relief mapping effects. | ||
94 | // fvBiTangent is the "real" bitangent and thus may not be perpendicular to fvTangent. | ||
95 | // However, both are perpendicular to the vertex normal. | ||
96 | // For normal maps it is sufficient to use the following simplified version of the bitangent which is generated at pixel/vertex level. | ||
97 | // fSign = bIsOrientationPreserving ? 1.0f : (-1.0f); | ||
98 | // bitangent = fSign * cross(vN, tangent); | ||
99 | // Note that the results are returned unindexed. It is possible to generate a new index list | ||
100 | // But averaging/overwriting tangent spaces by using an already existing index list WILL produce INCRORRECT results. | ||
101 | // DO NOT! use an already existing index list. | ||
102 | void (*m_setTSpace)(const SMikkTSpaceContext * pContext, const float fvTangent[], const float fvBiTangent[], const float fMagS, const float fMagT, | ||
103 | const tbool bIsOrientationPreserving, const int iFace, const int iVert); | ||
104 | } SMikkTSpaceInterface; | ||
105 | |||
106 | struct SMikkTSpaceContext | ||
107 | { | ||
108 | SMikkTSpaceInterface * m_pInterface; // initialized with callback functions | ||
109 | void * m_pUserData; // pointer to client side mesh data etc. (passed as the first parameter with every interface call) | ||
110 | }; | ||
111 | |||
112 | // these are both thread safe! | ||
113 | tbool genTangSpaceDefault(const SMikkTSpaceContext * pContext); // Default (recommended) fAngularThreshold is 180 degrees (which means threshold disabled) | ||
114 | tbool genTangSpace(const SMikkTSpaceContext * pContext, const float fAngularThreshold); | ||
115 | |||
116 | |||
117 | // To avoid visual errors (distortions/unwanted hard edges in lighting), when using sampled normal maps, the | ||
118 | // normal map sampler must use the exact inverse of the pixel shader transformation. | ||
119 | // The most efficient transformation we can possibly do in the pixel shader is | ||
120 | // achieved by using, directly, the "unnormalized" interpolated tangent, bitangent and vertex normal: vT, vB and vN. | ||
121 | // pixel shader (fast transform out) | ||
122 | // vNout = normalize( vNt.x * vT + vNt.y * vB + vNt.z * vN ); | ||
123 | // where vNt is the tangent space normal. The normal map sampler must likewise use the | ||
124 | // interpolated and "unnormalized" tangent, bitangent and vertex normal to be compliant with the pixel shader. | ||
125 | // sampler does (exact inverse of pixel shader): | ||
126 | // float3 row0 = cross(vB, vN); | ||
127 | // float3 row1 = cross(vN, vT); | ||
128 | // float3 row2 = cross(vT, vB); | ||
129 | // float fSign = dot(vT, row0)<0 ? -1 : 1; | ||
130 | // vNt = normalize( fSign * float3(dot(vNout,row0), dot(vNout,row1), dot(vNout,row2)) ); | ||
131 | // where vNout is the sampled normal in some chosen 3D space. | ||
132 | // | ||
133 | // Should you choose to reconstruct the bitangent in the pixel shader instead | ||
134 | // of the vertex shader, as explained earlier, then be sure to do this in the normal map sampler also. | ||
135 | // Finally, beware of quad triangulations. If the normal map sampler doesn't use the same triangulation of | ||
136 | // quads as your renderer then problems will occur since the interpolated tangent spaces will differ | ||
137 | // eventhough the vertex level tangent spaces match. This can be solved either by triangulating before | ||
138 | // sampling/exporting or by using the order-independent choice of diagonal for splitting quads suggested earlier. | ||
139 | // However, this must be used both by the sampler and your tools/rendering pipeline. | ||
140 | |||
141 | #ifdef __cplusplus | ||
142 | } | ||
143 | #endif | ||
144 | |||
145 | #endif | ||
diff --git a/gfx/contrib/cgltf-tangents/README.md b/gfx/contrib/cgltf-tangents/README.md new file mode 100644 index 0000000..2a68b27 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/README.md | |||
@@ -0,0 +1,42 @@ | |||
1 | # cgltf-tangents | ||
2 | |||
3 | A library to compute missing tangent vectors in glTF models using MikkTSpace. | ||
4 | |||
5 | ## Example | ||
6 | |||
7 | ``` | ||
8 | // Load the glTF scene and buffers as usual. | ||
9 | cgltf_result result = cgltf_parse_file(&options, filepath, &data); | ||
10 | cgltf_load_buffers(&options, data, filepath); | ||
11 | |||
12 | // Compute missing tangents. | ||
13 | cgltfTangentBuffer* tangent_buffers = 0; | ||
14 | cgltf_size num_tangent_buffers = 0; | ||
15 | cgltf_compute_tangents(&options, data, &tangent_buffers, &num_tangent_buffers); | ||
16 | ``` | ||
17 | |||
18 | ## About | ||
19 | |||
20 | This is a single-header/source library that combines | ||
21 | [MikkTSpace](https://github.com/mmikk/MikkTSpace) and | ||
22 | [cgltf](https://github.com/jkuhlmann/cgltf) to compute missing tangent vectors | ||
23 | for models. | ||
24 | |||
25 | Mesh primitives in glTF may have a normal map but not necessarily tangent | ||
26 | vectors. An example is the | ||
27 | [DamagedHelmet](https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0/DamagedHelmet/glTF) | ||
28 | sample. From the | ||
29 | [spec](https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes): | ||
30 | |||
31 | *"When tangents are not specified, client implementations SHOULD calculate | ||
32 | tangents using default MikkTSpace algorithms with the specified vertex | ||
33 | positions, normals, and texture coordinates associated with the normal texture."* | ||
34 | |||
35 | cgltf-tangents takes an input glTF scene and scans it for mesh primitives that | ||
36 | have a normal map but no tangents. cgltf-tangents then invokes MikkTSpace to | ||
37 | compute tangents for those mesh primitives and outputs an array of tangent | ||
38 | buffers. The client can then upload these buffers to GPU memory for rendering. | ||
39 | |||
40 | See `test/` for a complete example. | ||
41 | |||
42 | MikkTSpace is packaged here for convenience. cgltf must be obtained separately. | ||
diff --git a/gfx/contrib/cgltf-tangents/cgltf_tangents.c b/gfx/contrib/cgltf-tangents/cgltf_tangents.c new file mode 100644 index 0000000..80b1e56 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/cgltf_tangents.c | |||
@@ -0,0 +1,618 @@ | |||
1 | /* | ||
2 | Copyright 2022 Marc Sunet | ||
3 | |||
4 | Redistribution and use in source and binary forms, with or without modification, | ||
5 | are permitted provided that the following conditions are met: | ||
6 | |||
7 | 1. Redistributions of source code must retain the above copyright notice, this | ||
8 | list of conditions and the following disclaimer. | ||
9 | |||
10 | 2. Redistributions in binary form must reproduce the above copyright notice, | ||
11 | this list of conditions and the following disclaimer in the documentation and/or | ||
12 | other materials provided with the distribution. | ||
13 | |||
14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
16 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
17 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | ||
18 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
19 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
20 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
21 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
23 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | */ | ||
25 | #include "cgltf_tangents.h" | ||
26 | #include "cgltf.h" | ||
27 | |||
28 | #include "MikkTSpace/mikktspace.h" | ||
29 | |||
30 | #include <assert.h> | ||
31 | #include <stdbool.h> | ||
32 | #include <stdint.h> | ||
33 | #include <stdlib.h> | ||
34 | #include <string.h> | ||
35 | |||
36 | #ifdef CGLTF_TANGENTS_DEBUG | ||
37 | #include <stdio.h> | ||
38 | #define DLOG printf | ||
39 | #else | ||
40 | #define DLOG(...) | ||
41 | #endif | ||
42 | |||
43 | #include <stdio.h> // TODO: Remove me. | ||
44 | |||
45 | #define CGLTF_OPTIONS_MALLOC(size) \ | ||
46 | options->memory.alloc(options->memory.user_data, size) | ||
47 | |||
48 | #define CGLTF_OPTIONS_FREE(ptr) \ | ||
49 | options->memory.free(options->memory.user_data, ptr) | ||
50 | |||
51 | static void* cgltf_default_alloc(void* user, cgltf_size size) { | ||
52 | (void)user; | ||
53 | return malloc(size); | ||
54 | } | ||
55 | |||
56 | static void cgltf_default_free(void* user, void* ptr) { | ||
57 | (void)user; | ||
58 | free(ptr); | ||
59 | } | ||
60 | |||
61 | static const cgltf_size NUM_TANGENT_COMPONENTS = 4; // X,Y,Z,fSign | ||
62 | |||
63 | static float normalize_i8(int8_t x) { return (float)x / 128.0; } | ||
64 | static float normalize_u8(uint8_t x) { return (float)x / 255.0; } | ||
65 | static float normalize_i16(int16_t x) { return (float)x / 32768.0; } | ||
66 | static float normalize_u16(uint16_t x) { return (float)x / 65535.0; } | ||
67 | static float normalize_u32(uint32_t x) { return (float)x / 4294967295.0; } | ||
68 | |||
69 | static cgltf_size num_vertex_attrib_components(cgltf_type type) { | ||
70 | switch (type) { | ||
71 | case cgltf_type_scalar: | ||
72 | return 1; | ||
73 | case cgltf_type_vec2: | ||
74 | return 2; | ||
75 | case cgltf_type_vec3: | ||
76 | return 3; | ||
77 | case cgltf_type_vec4: | ||
78 | return 4; | ||
79 | default: | ||
80 | assert(false); | ||
81 | return 0; | ||
82 | } | ||
83 | } | ||
84 | |||
85 | static cgltf_size cgltf_component_type_size_bytes(cgltf_component_type type) { | ||
86 | switch (type) { | ||
87 | case cgltf_component_type_r_8: | ||
88 | return 1; | ||
89 | case cgltf_component_type_r_8u: | ||
90 | return 1; | ||
91 | case cgltf_component_type_r_16: | ||
92 | return 2; | ||
93 | case cgltf_component_type_r_16u: | ||
94 | return 2; | ||
95 | case cgltf_component_type_r_32u: | ||
96 | return 4; | ||
97 | case cgltf_component_type_r_32f: | ||
98 | return 4; | ||
99 | default: | ||
100 | assert(false); | ||
101 | return 0; | ||
102 | } | ||
103 | } | ||
104 | |||
105 | static cgltf_size default_stride(cgltf_type type, | ||
106 | cgltf_component_type component_type) { | ||
107 | return num_vertex_attrib_components(type) * | ||
108 | cgltf_component_type_size_bytes(component_type); | ||
109 | } | ||
110 | |||
111 | // ----------------------------------------------------------------------------- | ||
112 | // MikkTSpace interface | ||
113 | |||
114 | // An array of values for a given vertex attribute or for vertex indices. | ||
115 | // For positions and normals, glTF mandates floats. | ||
116 | // Texcoords and indices can be different types and vary in size: 8-bit, 16-bit, | ||
117 | // or 32-bit. | ||
118 | // We store void* pointers so that we can do byte pointer arithmetic. | ||
119 | typedef struct Buffer { | ||
120 | const void* start; // X-coordinate of the first attribute. | ||
121 | const void* end; // One byte past the end of the buffer. | ||
122 | cgltf_size stride_bytes; // Stride in bytes between each value. | ||
123 | cgltf_component_type type; // Type of each value in the buffer. | ||
124 | } Buffer; | ||
125 | |||
126 | // User data for mesh processing. | ||
127 | // See: https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes | ||
128 | // Buffer pointers have the accessor + view offsets baked in so that we do the | ||
129 | // addition only once. | ||
130 | typedef struct SMikkUserData { | ||
131 | const cgltf_primitive* primitive; | ||
132 | // Index buffer may be empty (mesh primitive has no indices). | ||
133 | Buffer indices; | ||
134 | // Vertex attributes. | ||
135 | Buffer positions; | ||
136 | Buffer normals; | ||
137 | Buffer texcoords; | ||
138 | // Output tangents. | ||
139 | void* tangents; | ||
140 | } SMikkUserData; | ||
141 | |||
142 | static cgltf_size get_vertex_index(const SMikkUserData* data, cgltf_size iFace, | ||
143 | cgltf_size iVert) { | ||
144 | const cgltf_primitive* primitive = data->primitive; | ||
145 | |||
146 | // First compute a vertex index as if the mesh primitive had no indices. | ||
147 | cgltf_size vertex_idx = 0; | ||
148 | switch (primitive->type) { | ||
149 | case cgltf_primitive_type_triangles: | ||
150 | vertex_idx = iFace * 3 + iVert; | ||
151 | break; | ||
152 | case cgltf_primitive_type_triangle_strip: | ||
153 | // For triangle strips: | ||
154 | // face 0 -> verts 0, 1, 2 | ||
155 | // face 1 -> verts 1, 3, 2 (1, 2, 3 flipped) | ||
156 | // face 2 -> verts 2, 3, 4 | ||
157 | // face 3 -> verts 3, 5, 4 (3, 4, 5 flipped) | ||
158 | // ... | ||
159 | // face N=2k -> verts N, N+1, N+2 | ||
160 | // face N=2k+1 -> verts N, N+2, N+1 | ||
161 | if (iFace & 1) { | ||
162 | // Flip the winding of odd faces so that the is consistent with the even | ||
163 | // ones. | ||
164 | // iVert = 0 -> vert 0 | ||
165 | // iVert = 1 -> vert 2 | ||
166 | // iVert = 2 -> vert 1 | ||
167 | vertex_idx = iFace + (2 - iVert); | ||
168 | } else { | ||
169 | vertex_idx = iFace + iVert; | ||
170 | } | ||
171 | break; | ||
172 | case cgltf_primitive_type_triangle_fan: | ||
173 | // For triangle fans: | ||
174 | // face 0 -> verts 0, 1, 2 | ||
175 | // face 1 -> verts 0, 2, 3 | ||
176 | // face 2 -> verts 0, 3, 4 | ||
177 | // face 3 -> verts 0, 4, 5 | ||
178 | // ... | ||
179 | // face N -> verts 0, N=1, N=2 | ||
180 | if (iVert == 0) { | ||
181 | vertex_idx = 0; | ||
182 | } else { | ||
183 | vertex_idx = iFace + iVert; | ||
184 | } | ||
185 | break; | ||
186 | default: | ||
187 | assert(false); | ||
188 | break; | ||
189 | } | ||
190 | |||
191 | // If the mesh primitive has vertex indices, then vertex_idx is actually the | ||
192 | // index of the index. Index the index buffer with vertex_idx to find the | ||
193 | // real vertex index. | ||
194 | if (primitive->indices != NULL) { | ||
195 | const void* p_idx = | ||
196 | data->indices.start + vertex_idx * data->indices.stride_bytes; | ||
197 | switch (data->indices.type) { | ||
198 | case cgltf_component_type_r_8: | ||
199 | vertex_idx = *((int8_t*)p_idx); | ||
200 | break; | ||
201 | case cgltf_component_type_r_8u: | ||
202 | vertex_idx = *((uint8_t*)p_idx); | ||
203 | break; | ||
204 | case cgltf_component_type_r_16: | ||
205 | vertex_idx = *((int16_t*)p_idx); | ||
206 | break; | ||
207 | case cgltf_component_type_r_16u: | ||
208 | vertex_idx = *((uint16_t*)p_idx); | ||
209 | break; | ||
210 | case cgltf_component_type_r_32u: | ||
211 | vertex_idx = *((uint32_t*)p_idx); | ||
212 | break; | ||
213 | default: | ||
214 | assert(false); | ||
215 | break; | ||
216 | } | ||
217 | } | ||
218 | |||
219 | return vertex_idx; | ||
220 | } | ||
221 | |||
222 | static const void* get_vertex(const Buffer* buffer, cgltf_size index) { | ||
223 | // Stride is the offset in bytes between vertex attributes. | ||
224 | const void* vertex = buffer->start + buffer->stride_bytes * index; | ||
225 | assert(vertex < buffer->end); | ||
226 | return vertex; | ||
227 | } | ||
228 | |||
229 | static const void* get_position(const SMikkUserData* data, cgltf_size index) { | ||
230 | return get_vertex(&data->positions, index); | ||
231 | } | ||
232 | |||
233 | static const void* get_normal(const SMikkUserData* data, cgltf_size index) { | ||
234 | return get_vertex(&data->normals, index); | ||
235 | } | ||
236 | |||
237 | static const void* get_texcoord(const SMikkUserData* data, cgltf_size index) { | ||
238 | return get_vertex(&data->texcoords, index); | ||
239 | } | ||
240 | |||
241 | static float* get_tangent(void* buffer, cgltf_size index) { | ||
242 | // Tangents are tightly packed. | ||
243 | return (float*)(buffer) + NUM_TANGENT_COMPONENTS * index; | ||
244 | } | ||
245 | |||
246 | static int SMikk_get_num_faces(const SMikkTSpaceContext* pContext) { | ||
247 | SMikkUserData* data = (SMikkUserData*)pContext->m_pUserData; | ||
248 | const cgltf_primitive* primitive = data->primitive; | ||
249 | |||
250 | // Find the number of effective vertices (vertices or indices) in the mesh | ||
251 | // primitive. | ||
252 | // | ||
253 | // https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes | ||
254 | // | ||
255 | // "All attribute accessors for a given primitive MUST have the same count. | ||
256 | // When indices property is not defined, attribute accessors' count indicates | ||
257 | // the number of vertices to render; when indices property is defined, it | ||
258 | // indicates the upper (exclusive) bound on the index values in the indices | ||
259 | // accessor, i.e., all index values MUST be less than attribute accessors' | ||
260 | // count." | ||
261 | const cgltf_size num_verts = (primitive->indices != NULL) | ||
262 | ? primitive->indices->count | ||
263 | : primitive->attributes_count; | ||
264 | |||
265 | // Determine the number of faces given the number of vertices. | ||
266 | // | ||
267 | // We use the fact that glTF only supports triangles for faces. | ||
268 | // https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes | ||
269 | switch (primitive->type) { | ||
270 | case cgltf_primitive_type_triangles: | ||
271 | return (int)num_verts / 3; | ||
272 | case cgltf_primitive_type_triangle_strip: | ||
273 | case cgltf_primitive_type_triangle_fan: | ||
274 | return (int)num_verts - 2; | ||
275 | default: | ||
276 | return 0; | ||
277 | } | ||
278 | } | ||
279 | |||
280 | int SMikk_get_num_vertices_of_face(const SMikkTSpaceContext* pContext, | ||
281 | const int iFace) { | ||
282 | // Triangles are the only faces supported by glTF. | ||
283 | // https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#meshes | ||
284 | return 3; | ||
285 | } | ||
286 | |||
287 | void SMikk_get_position(const SMikkTSpaceContext* pContext, float fvPosOut[], | ||
288 | const int iFace, const int iVert) { | ||
289 | const SMikkUserData* data = (SMikkUserData*)pContext->m_pUserData; | ||
290 | const cgltf_primitive* primitive = data->primitive; | ||
291 | |||
292 | const cgltf_size idx = get_vertex_index(data, iFace, iVert); | ||
293 | const float* coord = get_position(data, idx); | ||
294 | fvPosOut[0] = *coord++; | ||
295 | fvPosOut[1] = *coord++; | ||
296 | fvPosOut[2] = *coord; | ||
297 | DLOG("Position (face: %d, vert: %d): %f, %f, %f; idx: %lu\n", iFace, iVert, | ||
298 | fvPosOut[0], fvPosOut[1], fvPosOut[2], idx); | ||
299 | } | ||
300 | |||
301 | void SMikk_get_normal(const SMikkTSpaceContext* pContext, float fvNormOut[], | ||
302 | const int iFace, const int iVert) { | ||
303 | const SMikkUserData* data = (SMikkUserData*)pContext->m_pUserData; | ||
304 | const cgltf_primitive* primitive = data->primitive; | ||
305 | |||
306 | const cgltf_size idx = get_vertex_index(data, iFace, iVert); | ||
307 | const float* coord = get_normal(data, idx); | ||
308 | fvNormOut[0] = *coord++; | ||
309 | fvNormOut[1] = *coord++; | ||
310 | fvNormOut[2] = *coord; | ||
311 | DLOG("Normal (face: %d, vert: %d): %f, %f, %f\n", iFace, iVert, fvNormOut[0], | ||
312 | fvNormOut[1], fvNormOut[2]); | ||
313 | } | ||
314 | |||
315 | void SMikk_get_texcoord(const SMikkTSpaceContext* pContext, float fvTexcOut[], | ||
316 | const int iFace, const int iVert) { | ||
317 | const SMikkUserData* data = (SMikkUserData*)pContext->m_pUserData; | ||
318 | const cgltf_primitive* primitive = data->primitive; | ||
319 | |||
320 | const cgltf_size idx = get_vertex_index(data, iFace, iVert); | ||
321 | const void* coord = get_texcoord(data, idx); | ||
322 | switch (data->texcoords.type) { | ||
323 | case cgltf_component_type_r_8: { | ||
324 | const int8_t* c = coord; | ||
325 | fvTexcOut[0] = normalize_i8(*c++); | ||
326 | fvTexcOut[1] = normalize_i8(*c); | ||
327 | break; | ||
328 | } | ||
329 | case cgltf_component_type_r_8u: { | ||
330 | const uint8_t* c = coord; | ||
331 | fvTexcOut[0] = normalize_u8(*c++); | ||
332 | fvTexcOut[1] = normalize_u8(*c); | ||
333 | break; | ||
334 | } | ||
335 | case cgltf_component_type_r_16: { | ||
336 | const int16_t* c = coord; | ||
337 | fvTexcOut[0] = normalize_i16(*c++); | ||
338 | fvTexcOut[1] = normalize_i16(*c); | ||
339 | break; | ||
340 | } | ||
341 | case cgltf_component_type_r_16u: { | ||
342 | const uint16_t* c = coord; | ||
343 | fvTexcOut[0] = normalize_u16(*c++); | ||
344 | fvTexcOut[1] = normalize_u16(*c); | ||
345 | break; | ||
346 | } | ||
347 | case cgltf_component_type_r_32u: { | ||
348 | const uint32_t* c = coord; | ||
349 | fvTexcOut[0] = normalize_u32(*c++); | ||
350 | fvTexcOut[1] = normalize_u32(*c); | ||
351 | break; | ||
352 | } | ||
353 | case cgltf_component_type_r_32f: { | ||
354 | const float* c = coord; | ||
355 | fvTexcOut[0] = *c++; | ||
356 | fvTexcOut[1] = *c; | ||
357 | break; | ||
358 | } | ||
359 | default: | ||
360 | assert(false); | ||
361 | break; | ||
362 | } | ||
363 | DLOG("Texcoord (face: %d, vert: %d): %f, %f\n", iFace, iVert, fvTexcOut[0], | ||
364 | fvTexcOut[1]); | ||
365 | } | ||
366 | |||
367 | void SMikk_set_TSpace_basic(const SMikkTSpaceContext* pContext, | ||
368 | const float fvTangent[], const float fSign, | ||
369 | const int iFace, const int iVert) { | ||
370 | SMikkUserData* data = (SMikkUserData*)pContext->m_pUserData; | ||
371 | const cgltf_primitive* primitive = data->primitive; | ||
372 | |||
373 | const cgltf_size idx = get_vertex_index(data, iFace, iVert); | ||
374 | float* coord = get_tangent(data->tangents, idx); | ||
375 | *coord++ = fvTangent[0]; | ||
376 | *coord++ = fvTangent[1]; | ||
377 | *coord++ = fvTangent[2]; | ||
378 | *coord = fSign; | ||
379 | DLOG("Tangent (face: %d, vert: %d): %f, %f, %f; sign: %f\n", iFace, iVert, | ||
380 | fvTangent[0], fvTangent[1], fvTangent[2], fSign); | ||
381 | } | ||
382 | |||
383 | // ----------------------------------------------------------------------------- | ||
384 | |||
385 | static bool has_normal_map(const cgltf_primitive* primitive) { | ||
386 | return (primitive->material != NULL) && | ||
387 | (primitive->material->normal_texture.texture != NULL); | ||
388 | } | ||
389 | |||
390 | static const cgltf_attribute* find_attribute(const cgltf_primitive* primitive, | ||
391 | cgltf_attribute_type type) { | ||
392 | for (cgltf_size i = 0; i < primitive->attributes_count; ++i) { | ||
393 | const cgltf_attribute* attrib = &primitive->attributes[i]; | ||
394 | if (attrib->type == type) { | ||
395 | return attrib; | ||
396 | } | ||
397 | } | ||
398 | return NULL; | ||
399 | } | ||
400 | |||
401 | static bool has_attribute(const cgltf_primitive* primitive, | ||
402 | cgltf_attribute_type type) { | ||
403 | return find_attribute(primitive, type) != NULL; | ||
404 | } | ||
405 | |||
406 | static bool has_positions3d(const cgltf_primitive* primitive) { | ||
407 | const cgltf_attribute* attrib = | ||
408 | find_attribute(primitive, cgltf_attribute_type_position); | ||
409 | if (attrib) { | ||
410 | return attrib->data->type == cgltf_type_vec3; | ||
411 | } | ||
412 | return false; | ||
413 | } | ||
414 | |||
415 | static bool has_normals(const cgltf_primitive* primitive) { | ||
416 | return has_attribute(primitive, cgltf_attribute_type_normal); | ||
417 | } | ||
418 | |||
419 | static bool has_texcoords(const cgltf_primitive* primitive) { | ||
420 | return has_attribute(primitive, cgltf_attribute_type_texcoord); | ||
421 | } | ||
422 | |||
423 | static bool has_tangents(const cgltf_primitive* primitive) { | ||
424 | return has_attribute(primitive, cgltf_attribute_type_tangent); | ||
425 | } | ||
426 | |||
427 | static bool has_indices(const cgltf_primitive* primitive) { | ||
428 | return primitive->indices != 0; | ||
429 | } | ||
430 | |||
431 | static cgltfTangentBuffer compute_tangents(const cgltf_options* options, | ||
432 | const cgltf_data* data, | ||
433 | cgltf_primitive* primitive) { | ||
434 | cgltfTangentBuffer buffer = {0}; | ||
435 | SMikkUserData user = {0}; | ||
436 | cgltf_size num_verts = 0; | ||
437 | |||
438 | user.primitive = primitive; | ||
439 | |||
440 | if (primitive->indices != NULL) { | ||
441 | const cgltf_accessor* accessor = primitive->indices; | ||
442 | const cgltf_buffer_view* view = accessor->buffer_view; | ||
443 | const cgltf_size offset_bytes = accessor->offset + view->offset; | ||
444 | const void* buffer_data = view->buffer->data + offset_bytes; | ||
445 | const void* buffer_end = view->buffer->data + view->offset + view->size; | ||
446 | |||
447 | user.indices.start = buffer_data; | ||
448 | user.indices.end = buffer_end; | ||
449 | // Indices are tightly packed, stride 0. | ||
450 | user.indices.stride_bytes = | ||
451 | default_stride(accessor->type, accessor->component_type); | ||
452 | user.indices.type = accessor->component_type; | ||
453 | } | ||
454 | |||
455 | for (cgltf_size i = 0; i < primitive->attributes_count; ++i) { | ||
456 | const cgltf_attribute* attrib = &primitive->attributes[i]; | ||
457 | |||
458 | if ((attrib->type == cgltf_attribute_type_position) || | ||
459 | (attrib->type == cgltf_attribute_type_normal) || | ||
460 | (attrib->type == cgltf_attribute_type_texcoord)) { | ||
461 | const cgltf_accessor* accessor = attrib->data; | ||
462 | const cgltf_buffer_view* view = accessor->buffer_view; | ||
463 | const cgltf_buffer* buffer = view->buffer; | ||
464 | const cgltf_size offset_bytes = accessor->offset + view->offset; | ||
465 | const cgltf_size stride_bytes = | ||
466 | view->stride > 0 | ||
467 | ? view->stride | ||
468 | : default_stride(accessor->type, accessor->component_type); | ||
469 | // const cgltf_size size_bytes = view->size; | ||
470 | const void* buffer_data = view->buffer->data + offset_bytes; | ||
471 | const void* buffer_end = view->buffer->data + view->offset + view->size; | ||
472 | |||
473 | Buffer* attrib_buffer = 0; | ||
474 | |||
475 | if (attrib->type == cgltf_attribute_type_position) { | ||
476 | // glTF currently mandates vec3 for positions. Caller should ensure | ||
477 | // this. | ||
478 | assert(accessor->type == cgltf_type_vec3); | ||
479 | num_verts = attrib->data->count; | ||
480 | attrib_buffer = &user.positions; | ||
481 | } else if (attrib->type == cgltf_attribute_type_normal) { | ||
482 | attrib_buffer = &user.normals; | ||
483 | } else if (attrib->type == cgltf_attribute_type_texcoord) { | ||
484 | attrib_buffer = &user.texcoords; | ||
485 | } | ||
486 | |||
487 | attrib_buffer->start = buffer_data; | ||
488 | attrib_buffer->end = buffer_end; | ||
489 | attrib_buffer->stride_bytes = stride_bytes; | ||
490 | attrib_buffer->type = accessor->component_type; | ||
491 | } | ||
492 | } | ||
493 | |||
494 | assert(user.positions.start); | ||
495 | assert(user.positions.end); | ||
496 | assert(user.normals.start); | ||
497 | assert(user.normals.end); | ||
498 | assert(user.texcoords.start); | ||
499 | assert(user.texcoords.end); | ||
500 | assert(num_verts > 0); | ||
501 | |||
502 | const cgltf_size tangents_size_bytes = | ||
503 | num_verts * NUM_TANGENT_COMPONENTS * sizeof(float); | ||
504 | |||
505 | user.tangents = CGLTF_OPTIONS_MALLOC(tangents_size_bytes); | ||
506 | if (!user.tangents) { | ||
507 | return buffer; | ||
508 | } | ||
509 | |||
510 | SMikkTSpaceInterface interface = (SMikkTSpaceInterface){ | ||
511 | .m_getNumFaces = SMikk_get_num_faces, | ||
512 | .m_getNumVerticesOfFace = SMikk_get_num_vertices_of_face, | ||
513 | .m_getPosition = SMikk_get_position, | ||
514 | .m_getNormal = SMikk_get_normal, | ||
515 | .m_getTexCoord = SMikk_get_texcoord, | ||
516 | .m_setTSpaceBasic = SMikk_set_TSpace_basic, | ||
517 | }; | ||
518 | const SMikkTSpaceContext context = (SMikkTSpaceContext){ | ||
519 | .m_pInterface = &interface, | ||
520 | .m_pUserData = &user, | ||
521 | }; | ||
522 | if (!genTangSpaceDefault(&context)) { | ||
523 | return buffer; | ||
524 | } | ||
525 | |||
526 | buffer.data = user.tangents; | ||
527 | buffer.size_bytes = tangents_size_bytes; | ||
528 | buffer.primitive = primitive; | ||
529 | |||
530 | return buffer; | ||
531 | } | ||
532 | |||
533 | static void process_primitive(const cgltf_options* options, | ||
534 | const cgltf_data* data, | ||
535 | cgltf_primitive* primitive, | ||
536 | cgltfTangentBuffer* tangent_buffers, | ||
537 | cgltf_size* num_tangent_buffers) { | ||
538 | DLOG("Processing primitive\n"); | ||
539 | cgltf_size cur_buffer = 0; | ||
540 | // TODO: MikkTSpace should not be used with models with vertex indices. One | ||
541 | // workaround is to unindex the mesh, compute tangents, and then re-index it. | ||
542 | if (((primitive->type == cgltf_primitive_type_triangle_fan) || | ||
543 | (primitive->type == cgltf_primitive_type_triangle_strip) || | ||
544 | (primitive->type == cgltf_primitive_type_triangles)) && | ||
545 | has_normal_map(primitive) && !has_tangents(primitive) && | ||
546 | has_positions3d(primitive) && has_normals(primitive) && | ||
547 | has_texcoords(primitive) && !has_indices(primitive)) { | ||
548 | *num_tangent_buffers += 1; | ||
549 | if (tangent_buffers) { | ||
550 | DLOG("Model with normal map missing tangents detected\n"); | ||
551 | tangent_buffers[cur_buffer] = compute_tangents(options, data, primitive); | ||
552 | if (tangent_buffers[cur_buffer].data) { | ||
553 | DLOG("Tangents computed\n"); | ||
554 | } | ||
555 | cur_buffer++; | ||
556 | } | ||
557 | } | ||
558 | } | ||
559 | |||
560 | cgltf_result cgltf_compute_tangents(const cgltf_options* input_options, | ||
561 | const cgltf_data* data, | ||
562 | cgltfTangentBuffer** tangent_buffers, | ||
563 | cgltf_size* num_tangent_buffers) { | ||
564 | if ((input_options == NULL) || (data == NULL)) { | ||
565 | return cgltf_result_invalid_options; | ||
566 | } | ||
567 | |||
568 | DLOG("cgltf_compute_tangents\n"); | ||
569 | |||
570 | cgltf_options options = *input_options; | ||
571 | if (options.memory.alloc == NULL) { | ||
572 | options.memory.alloc = &cgltf_default_alloc; | ||
573 | } | ||
574 | if (options.memory.free == NULL) { | ||
575 | options.memory.free = &cgltf_default_free; | ||
576 | } | ||
577 | |||
578 | // First pass: compute the number of tangent buffers to be created. | ||
579 | *num_tangent_buffers = 0; | ||
580 | for (cgltf_size mesh_idx = 0; mesh_idx < data->meshes_count; ++mesh_idx) { | ||
581 | const cgltf_mesh* mesh = &data->meshes[mesh_idx]; | ||
582 | |||
583 | for (cgltf_size prim_idx = 0; prim_idx < mesh->primitives_count; | ||
584 | ++prim_idx) { | ||
585 | // Pass in null for the tangent buffers to just compute the number of | ||
586 | // buffers. | ||
587 | process_primitive(&options, data, &mesh->primitives[prim_idx], 0, | ||
588 | num_tangent_buffers); | ||
589 | } | ||
590 | } | ||
591 | DLOG("Number of primitives to be patched: %lu\n", *num_tangent_buffers); | ||
592 | |||
593 | // Second pass: compute the tangents. | ||
594 | if (*num_tangent_buffers > 0) { | ||
595 | *tangent_buffers = | ||
596 | options.memory.alloc(options.memory.user_data, | ||
597 | *num_tangent_buffers * sizeof(cgltfTangentBuffer)); | ||
598 | if (!*tangent_buffers) { | ||
599 | return cgltf_result_out_of_memory; | ||
600 | } | ||
601 | |||
602 | cgltf_size tangent_buffers_computed = 0; | ||
603 | |||
604 | for (cgltf_size mesh_idx = 0; mesh_idx < data->meshes_count; ++mesh_idx) { | ||
605 | const cgltf_mesh* mesh = &data->meshes[mesh_idx]; | ||
606 | |||
607 | for (cgltf_size prim_idx = 0; prim_idx < mesh->primitives_count; | ||
608 | ++prim_idx) { | ||
609 | process_primitive(&options, data, &mesh->primitives[prim_idx], | ||
610 | *tangent_buffers, &tangent_buffers_computed); | ||
611 | } | ||
612 | } | ||
613 | |||
614 | assert(tangent_buffers_computed == *num_tangent_buffers); | ||
615 | } | ||
616 | |||
617 | return cgltf_result_success; | ||
618 | } | ||
diff --git a/gfx/contrib/cgltf-tangents/cgltf_tangents.h b/gfx/contrib/cgltf-tangents/cgltf_tangents.h new file mode 100644 index 0000000..79e3502 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/cgltf_tangents.h | |||
@@ -0,0 +1,67 @@ | |||
1 | /* | ||
2 | Copyright 2022 Marc Sunet | ||
3 | |||
4 | Redistribution and use in source and binary forms, with or without modification, | ||
5 | are permitted provided that the following conditions are met: | ||
6 | |||
7 | 1. Redistributions of source code must retain the above copyright notice, this | ||
8 | list of conditions and the following disclaimer. | ||
9 | |||
10 | 2. Redistributions in binary form must reproduce the above copyright notice, | ||
11 | this list of conditions and the following disclaimer in the documentation and/or | ||
12 | other materials provided with the distribution. | ||
13 | |||
14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
16 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
17 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | ||
18 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
19 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
20 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
21 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
23 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | */ | ||
25 | #ifndef CGLTF_TANGENTS_H_INCLUDED__ | ||
26 | #define CGLTF_TANGENTS_H_INCLUDED__ | ||
27 | |||
28 | #include <cgltf.h> | ||
29 | |||
30 | /// A buffer that holds tangent vectors. | ||
31 | /// | ||
32 | /// Tangent vectors are tightly packed in the array. | ||
33 | /// | ||
34 | /// Tangent vectors have 4 coordinates: (X,Y,Z) for the vector, W for the sign. | ||
35 | /// The usual rules of MikkTSpace apply, namely that the bitangent should be | ||
36 | /// computed as: | ||
37 | /// | ||
38 | /// bitangent = tangent.w * cross(normal, tangent.xyz); | ||
39 | /// | ||
40 | /// Refer to the MikkTSpace documentation for more details. | ||
41 | /// | ||
42 | /// The primitive pointer points to the mesh primitive for which the tangents in | ||
43 | /// this buffer were computed. When your application loads mesh primitives, it | ||
44 | /// can scan the cgltfTangetBuffer array outputed by cgltf_compute_tangents() to | ||
45 | /// see whether tangents were computed for the mesh primitive. | ||
46 | typedef struct cgltfTangentBuffer { | ||
47 | void* data; // X-coordinate of the first tangent vector. | ||
48 | cgltf_size size_bytes; // Total Size of data in bytes. | ||
49 | cgltf_primitive* primitive; // The primitive these tangents belong to. | ||
50 | } cgltfTangentBuffer; | ||
51 | |||
52 | /// Compute tangent vectors for normal-mapped mesh primitives missing them. | ||
53 | /// | ||
54 | /// cgltf_options can be zeroed out but must be non-null. | ||
55 | /// | ||
56 | /// cgltf_data is the scene previously loaded by cgltf. | ||
57 | /// | ||
58 | /// out_tangent_buffers is an output array of tangent buffers, one buffer per | ||
59 | /// mesh primitive for which tangents were computed. | ||
60 | /// | ||
61 | /// out_num_tangent_buffers is the number of tangent buffers in the output | ||
62 | /// array. | ||
63 | cgltf_result cgltf_compute_tangents(const cgltf_options*, const cgltf_data*, | ||
64 | cgltfTangentBuffer** out_tangent_buffers, | ||
65 | cgltf_size* out_num_tangent_buffers); | ||
66 | |||
67 | #endif // CGLTF_TANGENTS_H_INCLUDED__ | ||
diff --git a/gfx/contrib/cgltf-tangents/test/CMakeLists.txt b/gfx/contrib/cgltf-tangents/test/CMakeLists.txt new file mode 100644 index 0000000..422c950 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/test/CMakeLists.txt | |||
@@ -0,0 +1,11 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | project (cgltf-test) | ||
4 | |||
5 | add_executable(cgltf-test | ||
6 | main.c) | ||
7 | |||
8 | target_link_libraries(cgltf-test | ||
9 | cgltf | ||
10 | cgltf-tangents | ||
11 | -lm) | ||
diff --git a/gfx/contrib/cgltf-tangents/test/main.c b/gfx/contrib/cgltf-tangents/test/main.c new file mode 100644 index 0000000..0d70008 --- /dev/null +++ b/gfx/contrib/cgltf-tangents/test/main.c | |||
@@ -0,0 +1,86 @@ | |||
1 | /* | ||
2 | Copyright 2022 Marc Sunet | ||
3 | |||
4 | Redistribution and use in source and binary forms, with or without modification, | ||
5 | are permitted provided that the following conditions are met: | ||
6 | |||
7 | 1. Redistributions of source code must retain the above copyright notice, this | ||
8 | list of conditions and the following disclaimer. | ||
9 | |||
10 | 2. Redistributions in binary form must reproduce the above copyright notice, | ||
11 | this list of conditions and the following disclaimer in the documentation and/or | ||
12 | other materials provided with the distribution. | ||
13 | |||
14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
16 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
17 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | ||
18 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
19 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
20 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
21 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
23 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | */ | ||
25 | #include <cgltf_tangents.h> | ||
26 | #define CGLTF_IMPLEMENTATION | ||
27 | #include <cgltf.h> | ||
28 | |||
29 | #include <stdio.h> | ||
30 | |||
31 | void print_tangent_buffer(const cgltfTangentBuffer* buffer, int max_vectors) { | ||
32 | printf("Tangent buffer for primitive (%p) (%lu bytes):\n", buffer->primitive, | ||
33 | buffer->size_bytes); | ||
34 | |||
35 | const float* xyzw = (const float*)buffer->data; | ||
36 | const float* end = (const float*)(buffer->data + buffer->size_bytes); | ||
37 | |||
38 | for (int i = 0; i < max_vectors && xyzw < end; ++i, xyzw += 4) { | ||
39 | printf("(%3.2f, %3.2f, %3.2f, sign: %3.2f)\n", *xyzw, *(xyzw + 1), | ||
40 | *(xyzw + 2), *(xyzw + 3)); | ||
41 | } | ||
42 | printf("--------------------"); | ||
43 | } | ||
44 | |||
45 | void usage(const char* argv0) { | ||
46 | fprintf(stderr, "Usage: %s <glTF file path>\n", argv0); | ||
47 | } | ||
48 | |||
49 | int main(int argc, const char** argv) { | ||
50 | cgltf_options options = {0}; | ||
51 | cgltf_data* data = NULL; | ||
52 | |||
53 | if (argc != 2) { | ||
54 | usage(argv[0]); | ||
55 | return 0; | ||
56 | } | ||
57 | |||
58 | const char* filepath = argv[1]; | ||
59 | |||
60 | cgltf_result result = cgltf_parse_file(&options, filepath, &data); | ||
61 | if (result != cgltf_result_success) { | ||
62 | cgltf_free(data); | ||
63 | return 1; | ||
64 | } | ||
65 | |||
66 | // Must call cgltf_load_buffers() to load buffer data. | ||
67 | result = cgltf_load_buffers(&options, data, filepath); | ||
68 | if (result != cgltf_result_success) { | ||
69 | cgltf_free(data); | ||
70 | return 2; | ||
71 | } | ||
72 | |||
73 | cgltfTangentBuffer* tangent_buffers = 0; | ||
74 | cgltf_size num_tangent_buffers = 0; | ||
75 | cgltf_compute_tangents(&options, data, &tangent_buffers, | ||
76 | &num_tangent_buffers); | ||
77 | |||
78 | // cgltf scene not needed beyond this point. | ||
79 | cgltf_free(data); | ||
80 | |||
81 | for (cgltf_size i = 0; i < num_tangent_buffers; ++i) { | ||
82 | print_tangent_buffer(tangent_buffers, 10); | ||
83 | } | ||
84 | |||
85 | return 0; | ||
86 | } | ||
diff --git a/gfx/contrib/cgltf/CMakeLists.txt b/gfx/contrib/cgltf/CMakeLists.txt new file mode 100644 index 0000000..0ac840a --- /dev/null +++ b/gfx/contrib/cgltf/CMakeLists.txt | |||
@@ -0,0 +1,8 @@ | |||
1 | cmake_minimum_required(VERSION 3.16) | ||
2 | |||
3 | project(cgltf) | ||
4 | |||
5 | add_library(cgltf INTERFACE) | ||
6 | |||
7 | target_include_directories(cgltf INTERFACE | ||
8 | ${CMAKE_CURRENT_SOURCE_DIR}) | ||
diff --git a/gfx/contrib/cgltf/LICENSE b/gfx/contrib/cgltf/LICENSE new file mode 100644 index 0000000..0afe8c7 --- /dev/null +++ b/gfx/contrib/cgltf/LICENSE | |||
@@ -0,0 +1,7 @@ | |||
1 | Copyright (c) 2018 Johannes Kuhlmann | ||
2 | |||
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
4 | |||
5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
6 | |||
7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
diff --git a/gfx/contrib/cgltf/README.md b/gfx/contrib/cgltf/README.md new file mode 100644 index 0000000..3b49d52 --- /dev/null +++ b/gfx/contrib/cgltf/README.md | |||
@@ -0,0 +1,154 @@ | |||
1 | # :diamond_shape_with_a_dot_inside: cgltf | ||
2 | **Single-file/stb-style C glTF loader and writer** | ||
3 | |||
4 | [![Build Status](https://travis-ci.org/jkuhlmann/cgltf.svg?branch=master)](https://travis-ci.org/jkuhlmann/cgltf) | ||
5 | |||
6 | Used in: [bgfx](https://github.com/bkaradzic/bgfx), [Filament](https://github.com/google/filament), [meshoptimizer](https://github.com/zeux/meshoptimizer), [raylib](https://github.com/raysan5/raylib), and more! | ||
7 | |||
8 | ## Usage: Loading | ||
9 | Loading from file: | ||
10 | ```c | ||
11 | #define CGLTF_IMPLEMENTATION | ||
12 | #include "cgltf.h" | ||
13 | |||
14 | cgltf_options options = {0}; | ||
15 | cgltf_data* data = NULL; | ||
16 | cgltf_result result = cgltf_parse_file(&options, "scene.gltf", &data); | ||
17 | if (result == cgltf_result_success) | ||
18 | { | ||
19 | /* TODO make awesome stuff */ | ||
20 | cgltf_free(data); | ||
21 | } | ||
22 | ``` | ||
23 | |||
24 | Loading from memory: | ||
25 | ```c | ||
26 | #define CGLTF_IMPLEMENTATION | ||
27 | #include "cgltf.h" | ||
28 | |||
29 | void* buf; /* Pointer to glb or gltf file data */ | ||
30 | size_t size; /* Size of the file data */ | ||
31 | |||
32 | cgltf_options options = {0}; | ||
33 | cgltf_data* data = NULL; | ||
34 | cgltf_result result = cgltf_parse(&options, buf, size, &data); | ||
35 | if (result == cgltf_result_success) | ||
36 | { | ||
37 | /* TODO make awesome stuff */ | ||
38 | cgltf_free(data); | ||
39 | } | ||
40 | ``` | ||
41 | |||
42 | Note that cgltf does not load the contents of extra files such as buffers or images into memory by default. You'll need to read these files yourself using URIs from `data.buffers[]` or `data.images[]` respectively. | ||
43 | For buffer data, you can alternatively call `cgltf_load_buffers`, which will use `FILE*` APIs to open and read buffer files. | ||
44 | |||
45 | **For more in-depth documentation and a description of the public interface refer to the top of the `cgltf.h` file.** | ||
46 | |||
47 | ## Usage: Writing | ||
48 | When writing glTF data, you need a valid `cgltf_data` structure that represents a valid glTF document. You can construct such a structure yourself or load it using the loader functions described above. The writer functions do not deallocate any memory. So, you either have to do it manually or call `cgltf_free()` if you got the data by loading it from a glTF document. | ||
49 | |||
50 | Writing to file: | ||
51 | ```c | ||
52 | #define CGLTF_IMPLEMENTATION | ||
53 | #define CGLTF_WRITE_IMPLEMENTATION | ||
54 | #include "cgltf_write.h" | ||
55 | |||
56 | cgltf_options options = {0}; | ||
57 | cgltf_data* data = /* TODO must be valid data */; | ||
58 | cgltf_result result = cgltf_write_file(&options, "out.gltf", data); | ||
59 | if (result != cgltf_result_success) | ||
60 | { | ||
61 | /* TODO handle error */ | ||
62 | } | ||
63 | ``` | ||
64 | |||
65 | Writing to memory: | ||
66 | ```c | ||
67 | #define CGLTF_IMPLEMENTATION | ||
68 | #define CGLTF_WRITE_IMPLEMENTATION | ||
69 | #include "cgltf_write.h" | ||
70 | cgltf_options options = {0}; | ||
71 | cgltf_data* data = /* TODO must be valid data */; | ||
72 | |||
73 | cgltf_size size = cgltf_write(&options, NULL, 0, data); | ||
74 | |||
75 | char* buf = malloc(size); | ||
76 | |||
77 | cgltf_size written = cgltf_write(&options, buf, size, data); | ||
78 | if (written != size) | ||
79 | { | ||
80 | /* TODO handle error */ | ||
81 | } | ||
82 | ``` | ||
83 | |||
84 | Note that cgltf does not write the contents of extra files such as buffers or images. You'll need to write this data yourself. | ||
85 | |||
86 | Writing does not yet support "extras" data. | ||
87 | |||
88 | **For more in-depth documentation and a description of the public interface refer to the top of the `cgltf_write.h` file.** | ||
89 | |||
90 | |||
91 | ## Features | ||
92 | cgltf supports core glTF 2.0: | ||
93 | - glb (binary files) and gltf (JSON files) | ||
94 | - meshes (including accessors, buffer views, buffers) | ||
95 | - materials (including textures, samplers, images) | ||
96 | - scenes and nodes | ||
97 | - skins | ||
98 | - animations | ||
99 | - cameras | ||
100 | - morph targets | ||
101 | - extras data | ||
102 | |||
103 | cgltf also supports some glTF extensions: | ||
104 | - KHR_draco_mesh_compression (requires a library like [Google's Draco](https://github.com/google/draco) for decompression though) | ||
105 | - KHR_lights_punctual | ||
106 | - KHR_materials_clearcoat | ||
107 | - KHR_materials_ior | ||
108 | - KHR_materials_pbrSpecularGlossiness | ||
109 | - KHR_materials_specular | ||
110 | - KHR_materials_transmission | ||
111 | - KHR_materials_unlit | ||
112 | - KHR_texture_transform | ||
113 | |||
114 | cgltf does **not** yet support unlisted extensions. However, unlisted extensions can be accessed via "extensions" member on objects. | ||
115 | |||
116 | ## Building | ||
117 | The easiest approach is to integrate the `cgltf.h` header file into your project. If you are unfamiliar with single-file C libraries (also known as stb-style libraries), this is how it goes: | ||
118 | |||
119 | 1. Include `cgltf.h` where you need the functionality. | ||
120 | 1. Have exactly one source file that defines `CGLTF_IMPLEMENTATION` before including `cgltf.h`. | ||
121 | 1. Use the cgltf functions as described above. | ||
122 | |||
123 | Support for writing can be found in a separate file called `cgltf_write.h` (which includes `cgltf.h`). Building it works analogously using the `CGLTF_WRITE_IMPLEMENTATION` define. | ||
124 | |||
125 | ## Contributing | ||
126 | Everyone is welcome to contribute to the library. If you find any problems, you can submit them using [GitHub's issue system](https://github.com/jkuhlmann/cgltf/issues). If you want to contribute code, you should fork the project and then send a pull request. | ||
127 | |||
128 | |||
129 | ## Dependencies | ||
130 | None. | ||
131 | |||
132 | C headers being used by implementation: | ||
133 | ``` | ||
134 | #include <stddef.h> | ||
135 | #include <stdint.h> | ||
136 | #include <string.h> | ||
137 | #include <stdlib.h> | ||
138 | #include <stdio.h> | ||
139 | #include <limits.h> | ||
140 | ``` | ||
141 | |||
142 | Note, this library has a copy of the [JSMN JSON parser](https://github.com/zserge/jsmn) embedded in its source. | ||
143 | |||
144 | ## Testing | ||
145 | There is a Python script in the `test/` folder that retrieves the glTF 2.0 sample files from the glTF-Sample-Models repository (https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0) and runs the library against all gltf and glb files. | ||
146 | |||
147 | Here's one way to build and run the test: | ||
148 | |||
149 | cd test ; mkdir build ; cd build ; cmake .. -DCMAKE_BUILD_TYPE=Debug | ||
150 | make -j | ||
151 | cd .. | ||
152 | ./test_all.py | ||
153 | |||
154 | There is also a llvm-fuzz test in `fuzz/`. See http://llvm.org/docs/LibFuzzer.html for more information. | ||
diff --git a/gfx/contrib/cgltf/cgltf.h b/gfx/contrib/cgltf/cgltf.h new file mode 100644 index 0000000..077cf36 --- /dev/null +++ b/gfx/contrib/cgltf/cgltf.h | |||
@@ -0,0 +1,5746 @@ | |||
1 | /** | ||
2 | * cgltf - a single-file glTF 2.0 parser written in C99. | ||
3 | * | ||
4 | * Version: 1.7 | ||
5 | * | ||
6 | * Website: https://github.com/jkuhlmann/cgltf | ||
7 | * | ||
8 | * Distributed under the MIT License, see notice at the end of this file. | ||
9 | * | ||
10 | * Building: | ||
11 | * Include this file where you need the struct and function | ||
12 | * declarations. Have exactly one source file where you define | ||
13 | * `CGLTF_IMPLEMENTATION` before including this file to get the | ||
14 | * function definitions. | ||
15 | * | ||
16 | * Reference: | ||
17 | * `cgltf_result cgltf_parse(const cgltf_options*, const void*, | ||
18 | * cgltf_size, cgltf_data**)` parses both glTF and GLB data. If | ||
19 | * this function returns `cgltf_result_success`, you have to call | ||
20 | * `cgltf_free()` on the created `cgltf_data*` variable. | ||
21 | * Note that contents of external files for buffers and images are not | ||
22 | * automatically loaded. You'll need to read these files yourself using | ||
23 | * URIs in the `cgltf_data` structure. | ||
24 | * | ||
25 | * `cgltf_options` is the struct passed to `cgltf_parse()` to control | ||
26 | * parts of the parsing process. You can use it to force the file type | ||
27 | * and provide memory allocation as well as file operation callbacks. | ||
28 | * Should be zero-initialized to trigger default behavior. | ||
29 | * | ||
30 | * `cgltf_data` is the struct allocated and filled by `cgltf_parse()`. | ||
31 | * It generally mirrors the glTF format as described by the spec (see | ||
32 | * https://github.com/KhronosGroup/glTF/tree/master/specification/2.0). | ||
33 | * | ||
34 | * `void cgltf_free(cgltf_data*)` frees the allocated `cgltf_data` | ||
35 | * variable. | ||
36 | * | ||
37 | * `cgltf_result cgltf_load_buffers(const cgltf_options*, cgltf_data*, | ||
38 | * const char* gltf_path)` can be optionally called to open and read buffer | ||
39 | * files using the `FILE*` APIs. The `gltf_path` argument is the path to | ||
40 | * the original glTF file, which allows the parser to resolve the path to | ||
41 | * buffer files. | ||
42 | * | ||
43 | * `cgltf_result cgltf_load_buffer_base64(const cgltf_options* options, | ||
44 | * cgltf_size size, const char* base64, void** out_data)` decodes | ||
45 | * base64-encoded data content. Used internally by `cgltf_load_buffers()` | ||
46 | * and may be useful if you're not dealing with normal files. | ||
47 | * | ||
48 | * `cgltf_result cgltf_parse_file(const cgltf_options* options, const | ||
49 | * char* path, cgltf_data** out_data)` can be used to open the given | ||
50 | * file using `FILE*` APIs and parse the data using `cgltf_parse()`. | ||
51 | * | ||
52 | * `cgltf_result cgltf_validate(cgltf_data*)` can be used to do additional | ||
53 | * checks to make sure the parsed glTF data is valid. | ||
54 | * | ||
55 | * `cgltf_node_transform_local` converts the translation / rotation / scale properties of a node | ||
56 | * into a mat4. | ||
57 | * | ||
58 | * `cgltf_node_transform_world` calls `cgltf_node_transform_local` on every ancestor in order | ||
59 | * to compute the root-to-node transformation. | ||
60 | * | ||
61 | * `cgltf_accessor_unpack_floats` reads in the data from an accessor, applies sparse data (if any), | ||
62 | * and converts them to floating point. Assumes that `cgltf_load_buffers` has already been called. | ||
63 | * By passing null for the output pointer, users can find out how many floats are required in the | ||
64 | * output buffer. | ||
65 | * | ||
66 | * `cgltf_accessor_num_components` is a tiny utility that tells you the dimensionality of | ||
67 | * a certain accessor type. This can be used before `cgltf_accessor_unpack_floats` to help allocate | ||
68 | * the necessary amount of memory. | ||
69 | * | ||
70 | * `cgltf_accessor_read_float` reads a certain element from a non-sparse accessor and converts it to | ||
71 | * floating point, assuming that `cgltf_load_buffers` has already been called. The passed-in element | ||
72 | * size is the number of floats in the output buffer, which should be in the range [1, 16]. Returns | ||
73 | * false if the passed-in element_size is too small, or if the accessor is sparse. | ||
74 | * | ||
75 | * `cgltf_accessor_read_uint` is similar to its floating-point counterpart, but limited to reading | ||
76 | * vector types and does not support matrix types. The passed-in element size is the number of uints | ||
77 | * in the output buffer, which should be in the range [1, 4]. Returns false if the passed-in | ||
78 | * element_size is too small, or if the accessor is sparse. | ||
79 | * | ||
80 | * `cgltf_accessor_read_index` is similar to its floating-point counterpart, but it returns size_t | ||
81 | * and only works with single-component data types. | ||
82 | * | ||
83 | * `cgltf_result cgltf_copy_extras_json(const cgltf_data*, const cgltf_extras*, | ||
84 | * char* dest, cgltf_size* dest_size)` allows users to retrieve the "extras" data that | ||
85 | * can be attached to many glTF objects (which can be arbitrary JSON data). The | ||
86 | * `cgltf_extras` struct stores the offsets of the start and end of the extras JSON data | ||
87 | * as it appears in the complete glTF JSON data. This function copies the extras data | ||
88 | * into the provided buffer. If `dest` is NULL, the length of the data is written into | ||
89 | * `dest_size`. You can then parse this data using your own JSON parser | ||
90 | * or, if you've included the cgltf implementation using the integrated JSMN JSON parser. | ||
91 | */ | ||
92 | #ifndef CGLTF_H_INCLUDED__ | ||
93 | #define CGLTF_H_INCLUDED__ | ||
94 | |||
95 | #include <stddef.h> | ||
96 | |||
97 | #ifdef __cplusplus | ||
98 | extern "C" { | ||
99 | #endif | ||
100 | |||
101 | typedef size_t cgltf_size; | ||
102 | typedef float cgltf_float; | ||
103 | typedef int cgltf_int; | ||
104 | typedef unsigned int cgltf_uint; | ||
105 | typedef int cgltf_bool; | ||
106 | |||
107 | typedef enum cgltf_file_type | ||
108 | { | ||
109 | cgltf_file_type_invalid, | ||
110 | cgltf_file_type_gltf, | ||
111 | cgltf_file_type_glb, | ||
112 | } cgltf_file_type; | ||
113 | |||
114 | typedef enum cgltf_result | ||
115 | { | ||
116 | cgltf_result_success, | ||
117 | cgltf_result_data_too_short, | ||
118 | cgltf_result_unknown_format, | ||
119 | cgltf_result_invalid_json, | ||
120 | cgltf_result_invalid_gltf, | ||
121 | cgltf_result_invalid_options, | ||
122 | cgltf_result_file_not_found, | ||
123 | cgltf_result_io_error, | ||
124 | cgltf_result_out_of_memory, | ||
125 | cgltf_result_legacy_gltf, | ||
126 | } cgltf_result; | ||
127 | |||
128 | typedef struct cgltf_memory_options | ||
129 | { | ||
130 | void* (*alloc)(void* user, cgltf_size size); | ||
131 | void (*free) (void* user, void* ptr); | ||
132 | void* user_data; | ||
133 | } cgltf_memory_options; | ||
134 | |||
135 | typedef struct cgltf_file_options | ||
136 | { | ||
137 | cgltf_result(*read)(const struct cgltf_memory_options* memory_options, const struct cgltf_file_options* file_options, const char* path, cgltf_size* size, void** data); | ||
138 | void (*release)(const struct cgltf_memory_options* memory_options, const struct cgltf_file_options* file_options, void* data); | ||
139 | void* user_data; | ||
140 | } cgltf_file_options; | ||
141 | |||
142 | typedef struct cgltf_options | ||
143 | { | ||
144 | cgltf_file_type type; /* invalid == auto detect */ | ||
145 | cgltf_size json_token_count; /* 0 == auto */ | ||
146 | cgltf_memory_options memory; | ||
147 | cgltf_file_options file; | ||
148 | } cgltf_options; | ||
149 | |||
150 | typedef enum cgltf_buffer_view_type | ||
151 | { | ||
152 | cgltf_buffer_view_type_invalid, | ||
153 | cgltf_buffer_view_type_indices, | ||
154 | cgltf_buffer_view_type_vertices, | ||
155 | } cgltf_buffer_view_type; | ||
156 | |||
157 | typedef enum cgltf_attribute_type | ||
158 | { | ||
159 | cgltf_attribute_type_invalid, | ||
160 | cgltf_attribute_type_position, | ||
161 | cgltf_attribute_type_normal, | ||
162 | cgltf_attribute_type_tangent, | ||
163 | cgltf_attribute_type_texcoord, | ||
164 | cgltf_attribute_type_color, | ||
165 | cgltf_attribute_type_joints, | ||
166 | cgltf_attribute_type_weights, | ||
167 | } cgltf_attribute_type; | ||
168 | |||
169 | typedef enum cgltf_component_type | ||
170 | { | ||
171 | cgltf_component_type_invalid, | ||
172 | cgltf_component_type_r_8, /* BYTE */ | ||
173 | cgltf_component_type_r_8u, /* UNSIGNED_BYTE */ | ||
174 | cgltf_component_type_r_16, /* SHORT */ | ||
175 | cgltf_component_type_r_16u, /* UNSIGNED_SHORT */ | ||
176 | cgltf_component_type_r_32u, /* UNSIGNED_INT */ | ||
177 | cgltf_component_type_r_32f, /* FLOAT */ | ||
178 | } cgltf_component_type; | ||
179 | |||
180 | typedef enum cgltf_type | ||
181 | { | ||
182 | cgltf_type_invalid, | ||
183 | cgltf_type_scalar, | ||
184 | cgltf_type_vec2, | ||
185 | cgltf_type_vec3, | ||
186 | cgltf_type_vec4, | ||
187 | cgltf_type_mat2, | ||
188 | cgltf_type_mat3, | ||
189 | cgltf_type_mat4, | ||
190 | } cgltf_type; | ||
191 | |||
192 | typedef enum cgltf_primitive_type | ||
193 | { | ||
194 | cgltf_primitive_type_points, | ||
195 | cgltf_primitive_type_lines, | ||
196 | cgltf_primitive_type_line_loop, | ||
197 | cgltf_primitive_type_line_strip, | ||
198 | cgltf_primitive_type_triangles, | ||
199 | cgltf_primitive_type_triangle_strip, | ||
200 | cgltf_primitive_type_triangle_fan, | ||
201 | } cgltf_primitive_type; | ||
202 | |||
203 | typedef enum cgltf_alpha_mode | ||
204 | { | ||
205 | cgltf_alpha_mode_opaque, | ||
206 | cgltf_alpha_mode_mask, | ||
207 | cgltf_alpha_mode_blend, | ||
208 | } cgltf_alpha_mode; | ||
209 | |||
210 | typedef enum cgltf_animation_path_type { | ||
211 | cgltf_animation_path_type_invalid, | ||
212 | cgltf_animation_path_type_translation, | ||
213 | cgltf_animation_path_type_rotation, | ||
214 | cgltf_animation_path_type_scale, | ||
215 | cgltf_animation_path_type_weights, | ||
216 | } cgltf_animation_path_type; | ||
217 | |||
218 | typedef enum cgltf_interpolation_type { | ||
219 | cgltf_interpolation_type_linear, | ||
220 | cgltf_interpolation_type_step, | ||
221 | cgltf_interpolation_type_cubic_spline, | ||
222 | } cgltf_interpolation_type; | ||
223 | |||
224 | typedef enum cgltf_camera_type { | ||
225 | cgltf_camera_type_invalid, | ||
226 | cgltf_camera_type_perspective, | ||
227 | cgltf_camera_type_orthographic, | ||
228 | } cgltf_camera_type; | ||
229 | |||
230 | typedef enum cgltf_light_type { | ||
231 | cgltf_light_type_invalid, | ||
232 | cgltf_light_type_directional, | ||
233 | cgltf_light_type_point, | ||
234 | cgltf_light_type_spot, | ||
235 | } cgltf_light_type; | ||
236 | |||
237 | typedef struct cgltf_extras { | ||
238 | cgltf_size start_offset; | ||
239 | cgltf_size end_offset; | ||
240 | } cgltf_extras; | ||
241 | |||
242 | typedef struct cgltf_extension { | ||
243 | char* name; | ||
244 | char* data; | ||
245 | } cgltf_extension; | ||
246 | |||
247 | typedef struct cgltf_buffer | ||
248 | { | ||
249 | cgltf_size size; | ||
250 | char* uri; | ||
251 | void* data; /* loaded by cgltf_load_buffers */ | ||
252 | cgltf_extras extras; | ||
253 | cgltf_size extensions_count; | ||
254 | cgltf_extension* extensions; | ||
255 | } cgltf_buffer; | ||
256 | |||
257 | typedef struct cgltf_buffer_view | ||
258 | { | ||
259 | cgltf_buffer* buffer; | ||
260 | cgltf_size offset; | ||
261 | cgltf_size size; | ||
262 | cgltf_size stride; /* 0 == automatically determined by accessor */ | ||
263 | cgltf_buffer_view_type type; | ||
264 | cgltf_extras extras; | ||
265 | cgltf_size extensions_count; | ||
266 | cgltf_extension* extensions; | ||
267 | } cgltf_buffer_view; | ||
268 | |||
269 | typedef struct cgltf_accessor_sparse | ||
270 | { | ||
271 | cgltf_size count; | ||
272 | cgltf_buffer_view* indices_buffer_view; | ||
273 | cgltf_size indices_byte_offset; | ||
274 | cgltf_component_type indices_component_type; | ||
275 | cgltf_buffer_view* values_buffer_view; | ||
276 | cgltf_size values_byte_offset; | ||
277 | cgltf_extras extras; | ||
278 | cgltf_extras indices_extras; | ||
279 | cgltf_extras values_extras; | ||
280 | cgltf_size extensions_count; | ||
281 | cgltf_extension* extensions; | ||
282 | cgltf_size indices_extensions_count; | ||
283 | cgltf_extension* indices_extensions; | ||
284 | cgltf_size values_extensions_count; | ||
285 | cgltf_extension* values_extensions; | ||
286 | } cgltf_accessor_sparse; | ||
287 | |||
288 | typedef struct cgltf_accessor | ||
289 | { | ||
290 | cgltf_component_type component_type; | ||
291 | cgltf_bool normalized; | ||
292 | cgltf_type type; | ||
293 | cgltf_size offset; | ||
294 | cgltf_size count; | ||
295 | cgltf_size stride; | ||
296 | cgltf_buffer_view* buffer_view; | ||
297 | cgltf_bool has_min; | ||
298 | cgltf_float min[16]; | ||
299 | cgltf_bool has_max; | ||
300 | cgltf_float max[16]; | ||
301 | cgltf_bool is_sparse; | ||
302 | cgltf_accessor_sparse sparse; | ||
303 | cgltf_extras extras; | ||
304 | cgltf_size extensions_count; | ||
305 | cgltf_extension* extensions; | ||
306 | } cgltf_accessor; | ||
307 | |||
308 | typedef struct cgltf_attribute | ||
309 | { | ||
310 | char* name; | ||
311 | cgltf_attribute_type type; | ||
312 | cgltf_int index; | ||
313 | cgltf_accessor* data; | ||
314 | } cgltf_attribute; | ||
315 | |||
316 | typedef struct cgltf_image | ||
317 | { | ||
318 | char* name; | ||
319 | char* uri; | ||
320 | cgltf_buffer_view* buffer_view; | ||
321 | char* mime_type; | ||
322 | cgltf_extras extras; | ||
323 | cgltf_size extensions_count; | ||
324 | cgltf_extension* extensions; | ||
325 | } cgltf_image; | ||
326 | |||
327 | typedef struct cgltf_sampler | ||
328 | { | ||
329 | cgltf_int mag_filter; | ||
330 | cgltf_int min_filter; | ||
331 | cgltf_int wrap_s; | ||
332 | cgltf_int wrap_t; | ||
333 | cgltf_extras extras; | ||
334 | cgltf_size extensions_count; | ||
335 | cgltf_extension* extensions; | ||
336 | } cgltf_sampler; | ||
337 | |||
338 | typedef struct cgltf_texture | ||
339 | { | ||
340 | char* name; | ||
341 | cgltf_image* image; | ||
342 | cgltf_sampler* sampler; | ||
343 | cgltf_extras extras; | ||
344 | cgltf_size extensions_count; | ||
345 | cgltf_extension* extensions; | ||
346 | } cgltf_texture; | ||
347 | |||
348 | typedef struct cgltf_texture_transform | ||
349 | { | ||
350 | cgltf_float offset[2]; | ||
351 | cgltf_float rotation; | ||
352 | cgltf_float scale[2]; | ||
353 | cgltf_int texcoord; | ||
354 | } cgltf_texture_transform; | ||
355 | |||
356 | typedef struct cgltf_texture_view | ||
357 | { | ||
358 | cgltf_texture* texture; | ||
359 | cgltf_int texcoord; | ||
360 | cgltf_float scale; /* equivalent to strength for occlusion_texture */ | ||
361 | cgltf_bool has_transform; | ||
362 | cgltf_texture_transform transform; | ||
363 | cgltf_extras extras; | ||
364 | cgltf_size extensions_count; | ||
365 | cgltf_extension* extensions; | ||
366 | } cgltf_texture_view; | ||
367 | |||
368 | typedef struct cgltf_pbr_metallic_roughness | ||
369 | { | ||
370 | cgltf_texture_view base_color_texture; | ||
371 | cgltf_texture_view metallic_roughness_texture; | ||
372 | |||
373 | cgltf_float base_color_factor[4]; | ||
374 | cgltf_float metallic_factor; | ||
375 | cgltf_float roughness_factor; | ||
376 | |||
377 | cgltf_extras extras; | ||
378 | } cgltf_pbr_metallic_roughness; | ||
379 | |||
380 | typedef struct cgltf_pbr_specular_glossiness | ||
381 | { | ||
382 | cgltf_texture_view diffuse_texture; | ||
383 | cgltf_texture_view specular_glossiness_texture; | ||
384 | |||
385 | cgltf_float diffuse_factor[4]; | ||
386 | cgltf_float specular_factor[3]; | ||
387 | cgltf_float glossiness_factor; | ||
388 | } cgltf_pbr_specular_glossiness; | ||
389 | |||
390 | typedef struct cgltf_clearcoat | ||
391 | { | ||
392 | cgltf_texture_view clearcoat_texture; | ||
393 | cgltf_texture_view clearcoat_roughness_texture; | ||
394 | cgltf_texture_view clearcoat_normal_texture; | ||
395 | |||
396 | cgltf_float clearcoat_factor; | ||
397 | cgltf_float clearcoat_roughness_factor; | ||
398 | } cgltf_clearcoat; | ||
399 | |||
400 | typedef struct cgltf_transmission | ||
401 | { | ||
402 | cgltf_texture_view transmission_texture; | ||
403 | cgltf_float transmission_factor; | ||
404 | } cgltf_transmission; | ||
405 | |||
406 | typedef struct cgltf_ior | ||
407 | { | ||
408 | cgltf_float ior; | ||
409 | } cgltf_ior; | ||
410 | |||
411 | typedef struct cgltf_specular | ||
412 | { | ||
413 | cgltf_texture_view specular_texture; | ||
414 | cgltf_float specular_color_factor[3]; | ||
415 | cgltf_float specular_factor; | ||
416 | } cgltf_specular; | ||
417 | |||
418 | typedef struct cgltf_material | ||
419 | { | ||
420 | char* name; | ||
421 | cgltf_bool has_pbr_metallic_roughness; | ||
422 | cgltf_bool has_pbr_specular_glossiness; | ||
423 | cgltf_bool has_clearcoat; | ||
424 | cgltf_bool has_transmission; | ||
425 | cgltf_bool has_ior; | ||
426 | cgltf_bool has_specular; | ||
427 | cgltf_pbr_metallic_roughness pbr_metallic_roughness; | ||
428 | cgltf_pbr_specular_glossiness pbr_specular_glossiness; | ||
429 | cgltf_clearcoat clearcoat; | ||
430 | cgltf_ior ior; | ||
431 | cgltf_specular specular; | ||
432 | cgltf_transmission transmission; | ||
433 | cgltf_texture_view normal_texture; | ||
434 | cgltf_texture_view occlusion_texture; | ||
435 | cgltf_texture_view emissive_texture; | ||
436 | cgltf_float emissive_factor[3]; | ||
437 | cgltf_alpha_mode alpha_mode; | ||
438 | cgltf_float alpha_cutoff; | ||
439 | cgltf_bool double_sided; | ||
440 | cgltf_bool unlit; | ||
441 | cgltf_extras extras; | ||
442 | cgltf_size extensions_count; | ||
443 | cgltf_extension* extensions; | ||
444 | } cgltf_material; | ||
445 | |||
446 | typedef struct cgltf_morph_target { | ||
447 | cgltf_attribute* attributes; | ||
448 | cgltf_size attributes_count; | ||
449 | } cgltf_morph_target; | ||
450 | |||
451 | typedef struct cgltf_draco_mesh_compression { | ||
452 | cgltf_buffer_view* buffer_view; | ||
453 | cgltf_attribute* attributes; | ||
454 | cgltf_size attributes_count; | ||
455 | } cgltf_draco_mesh_compression; | ||
456 | |||
457 | typedef struct cgltf_primitive { | ||
458 | cgltf_primitive_type type; | ||
459 | cgltf_accessor* indices; | ||
460 | cgltf_material* material; | ||
461 | cgltf_attribute* attributes; | ||
462 | cgltf_size attributes_count; | ||
463 | cgltf_morph_target* targets; | ||
464 | cgltf_size targets_count; | ||
465 | cgltf_extras extras; | ||
466 | cgltf_bool has_draco_mesh_compression; | ||
467 | cgltf_draco_mesh_compression draco_mesh_compression; | ||
468 | cgltf_size extensions_count; | ||
469 | cgltf_extension* extensions; | ||
470 | } cgltf_primitive; | ||
471 | |||
472 | typedef struct cgltf_mesh { | ||
473 | char* name; | ||
474 | cgltf_primitive* primitives; | ||
475 | cgltf_size primitives_count; | ||
476 | cgltf_float* weights; | ||
477 | cgltf_size weights_count; | ||
478 | char** target_names; | ||
479 | cgltf_size target_names_count; | ||
480 | cgltf_extras extras; | ||
481 | cgltf_size extensions_count; | ||
482 | cgltf_extension* extensions; | ||
483 | } cgltf_mesh; | ||
484 | |||
485 | typedef struct cgltf_node cgltf_node; | ||
486 | |||
487 | typedef struct cgltf_skin { | ||
488 | char* name; | ||
489 | cgltf_node** joints; | ||
490 | cgltf_size joints_count; | ||
491 | cgltf_node* skeleton; | ||
492 | cgltf_accessor* inverse_bind_matrices; | ||
493 | cgltf_extras extras; | ||
494 | cgltf_size extensions_count; | ||
495 | cgltf_extension* extensions; | ||
496 | } cgltf_skin; | ||
497 | |||
498 | typedef struct cgltf_camera_perspective { | ||
499 | cgltf_float aspect_ratio; | ||
500 | cgltf_float yfov; | ||
501 | cgltf_float zfar; | ||
502 | cgltf_float znear; | ||
503 | cgltf_extras extras; | ||
504 | } cgltf_camera_perspective; | ||
505 | |||
506 | typedef struct cgltf_camera_orthographic { | ||
507 | cgltf_float xmag; | ||
508 | cgltf_float ymag; | ||
509 | cgltf_float zfar; | ||
510 | cgltf_float znear; | ||
511 | cgltf_extras extras; | ||
512 | } cgltf_camera_orthographic; | ||
513 | |||
514 | typedef struct cgltf_camera { | ||
515 | char* name; | ||
516 | cgltf_camera_type type; | ||
517 | union { | ||
518 | cgltf_camera_perspective perspective; | ||
519 | cgltf_camera_orthographic orthographic; | ||
520 | } data; | ||
521 | cgltf_extras extras; | ||
522 | cgltf_size extensions_count; | ||
523 | cgltf_extension* extensions; | ||
524 | } cgltf_camera; | ||
525 | |||
526 | typedef struct cgltf_light { | ||
527 | char* name; | ||
528 | cgltf_float color[3]; | ||
529 | cgltf_float intensity; | ||
530 | cgltf_light_type type; | ||
531 | cgltf_float range; | ||
532 | cgltf_float spot_inner_cone_angle; | ||
533 | cgltf_float spot_outer_cone_angle; | ||
534 | } cgltf_light; | ||
535 | |||
536 | struct cgltf_node { | ||
537 | char* name; | ||
538 | cgltf_node* parent; | ||
539 | cgltf_node** children; | ||
540 | cgltf_size children_count; | ||
541 | cgltf_skin* skin; | ||
542 | cgltf_mesh* mesh; | ||
543 | cgltf_camera* camera; | ||
544 | cgltf_light* light; | ||
545 | cgltf_float* weights; | ||
546 | cgltf_size weights_count; | ||
547 | cgltf_bool has_translation; | ||
548 | cgltf_bool has_rotation; | ||
549 | cgltf_bool has_scale; | ||
550 | cgltf_bool has_matrix; | ||
551 | cgltf_float translation[3]; | ||
552 | cgltf_float rotation[4]; | ||
553 | cgltf_float scale[3]; | ||
554 | cgltf_float matrix[16]; | ||
555 | cgltf_extras extras; | ||
556 | cgltf_size extensions_count; | ||
557 | cgltf_extension* extensions; | ||
558 | }; | ||
559 | |||
560 | typedef struct cgltf_scene { | ||
561 | char* name; | ||
562 | cgltf_node** nodes; | ||
563 | cgltf_size nodes_count; | ||
564 | cgltf_extras extras; | ||
565 | cgltf_size extensions_count; | ||
566 | cgltf_extension* extensions; | ||
567 | } cgltf_scene; | ||
568 | |||
569 | typedef struct cgltf_animation_sampler { | ||
570 | cgltf_accessor* input; | ||
571 | cgltf_accessor* output; | ||
572 | cgltf_interpolation_type interpolation; | ||
573 | cgltf_extras extras; | ||
574 | cgltf_size extensions_count; | ||
575 | cgltf_extension* extensions; | ||
576 | } cgltf_animation_sampler; | ||
577 | |||
578 | typedef struct cgltf_animation_channel { | ||
579 | cgltf_animation_sampler* sampler; | ||
580 | cgltf_node* target_node; | ||
581 | cgltf_animation_path_type target_path; | ||
582 | cgltf_extras extras; | ||
583 | cgltf_size extensions_count; | ||
584 | cgltf_extension* extensions; | ||
585 | } cgltf_animation_channel; | ||
586 | |||
587 | typedef struct cgltf_animation { | ||
588 | char* name; | ||
589 | cgltf_animation_sampler* samplers; | ||
590 | cgltf_size samplers_count; | ||
591 | cgltf_animation_channel* channels; | ||
592 | cgltf_size channels_count; | ||
593 | cgltf_extras extras; | ||
594 | cgltf_size extensions_count; | ||
595 | cgltf_extension* extensions; | ||
596 | } cgltf_animation; | ||
597 | |||
598 | typedef struct cgltf_asset { | ||
599 | char* copyright; | ||
600 | char* generator; | ||
601 | char* version; | ||
602 | char* min_version; | ||
603 | cgltf_extras extras; | ||
604 | cgltf_size extensions_count; | ||
605 | cgltf_extension* extensions; | ||
606 | } cgltf_asset; | ||
607 | |||
608 | typedef struct cgltf_data | ||
609 | { | ||
610 | cgltf_file_type file_type; | ||
611 | void* file_data; | ||
612 | |||
613 | cgltf_asset asset; | ||
614 | |||
615 | cgltf_mesh* meshes; | ||
616 | cgltf_size meshes_count; | ||
617 | |||
618 | cgltf_material* materials; | ||
619 | cgltf_size materials_count; | ||
620 | |||
621 | cgltf_accessor* accessors; | ||
622 | cgltf_size accessors_count; | ||
623 | |||
624 | cgltf_buffer_view* buffer_views; | ||
625 | cgltf_size buffer_views_count; | ||
626 | |||
627 | cgltf_buffer* buffers; | ||
628 | cgltf_size buffers_count; | ||
629 | |||
630 | cgltf_image* images; | ||
631 | cgltf_size images_count; | ||
632 | |||
633 | cgltf_texture* textures; | ||
634 | cgltf_size textures_count; | ||
635 | |||
636 | cgltf_sampler* samplers; | ||
637 | cgltf_size samplers_count; | ||
638 | |||
639 | cgltf_skin* skins; | ||
640 | cgltf_size skins_count; | ||
641 | |||
642 | cgltf_camera* cameras; | ||
643 | cgltf_size cameras_count; | ||
644 | |||
645 | cgltf_light* lights; | ||
646 | cgltf_size lights_count; | ||
647 | |||
648 | cgltf_node* nodes; | ||
649 | cgltf_size nodes_count; | ||
650 | |||
651 | cgltf_scene* scenes; | ||
652 | cgltf_size scenes_count; | ||
653 | |||
654 | cgltf_scene* scene; | ||
655 | |||
656 | cgltf_animation* animations; | ||
657 | cgltf_size animations_count; | ||
658 | |||
659 | cgltf_extras extras; | ||
660 | |||
661 | cgltf_size data_extensions_count; | ||
662 | cgltf_extension* data_extensions; | ||
663 | |||
664 | char** extensions_used; | ||
665 | cgltf_size extensions_used_count; | ||
666 | |||
667 | char** extensions_required; | ||
668 | cgltf_size extensions_required_count; | ||
669 | |||
670 | const char* json; | ||
671 | cgltf_size json_size; | ||
672 | |||
673 | const void* bin; | ||
674 | cgltf_size bin_size; | ||
675 | |||
676 | cgltf_memory_options memory; | ||
677 | cgltf_file_options file; | ||
678 | } cgltf_data; | ||
679 | |||
680 | cgltf_result cgltf_parse( | ||
681 | const cgltf_options* options, | ||
682 | const void* data, | ||
683 | cgltf_size size, | ||
684 | cgltf_data** out_data); | ||
685 | |||
686 | cgltf_result cgltf_parse_file( | ||
687 | const cgltf_options* options, | ||
688 | const char* path, | ||
689 | cgltf_data** out_data); | ||
690 | |||
691 | cgltf_result cgltf_load_buffers( | ||
692 | const cgltf_options* options, | ||
693 | cgltf_data* data, | ||
694 | const char* gltf_path); | ||
695 | |||
696 | cgltf_result cgltf_load_buffer_base64(const cgltf_options* options, cgltf_size size, const char* base64, void** out_data); | ||
697 | |||
698 | void cgltf_decode_uri(char* uri); | ||
699 | |||
700 | cgltf_result cgltf_validate(cgltf_data* data); | ||
701 | |||
702 | void cgltf_free(cgltf_data* data); | ||
703 | |||
704 | void cgltf_node_transform_local(const cgltf_node* node, cgltf_float* out_matrix); | ||
705 | void cgltf_node_transform_world(const cgltf_node* node, cgltf_float* out_matrix); | ||
706 | |||
707 | cgltf_bool cgltf_accessor_read_float(const cgltf_accessor* accessor, cgltf_size index, cgltf_float* out, cgltf_size element_size); | ||
708 | cgltf_bool cgltf_accessor_read_uint(const cgltf_accessor* accessor, cgltf_size index, cgltf_uint* out, cgltf_size element_size); | ||
709 | cgltf_size cgltf_accessor_read_index(const cgltf_accessor* accessor, cgltf_size index); | ||
710 | |||
711 | cgltf_size cgltf_num_components(cgltf_type type); | ||
712 | |||
713 | cgltf_size cgltf_accessor_unpack_floats(const cgltf_accessor* accessor, cgltf_float* out, cgltf_size float_count); | ||
714 | |||
715 | cgltf_result cgltf_copy_extras_json(const cgltf_data* data, const cgltf_extras* extras, char* dest, cgltf_size* dest_size); | ||
716 | |||
717 | #ifdef __cplusplus | ||
718 | } | ||
719 | #endif | ||
720 | |||
721 | #endif /* #ifndef CGLTF_H_INCLUDED__ */ | ||
722 | |||
723 | /* | ||
724 | * | ||
725 | * Stop now, if you are only interested in the API. | ||
726 | * Below, you find the implementation. | ||
727 | * | ||
728 | */ | ||
729 | |||
730 | #if defined(__INTELLISENSE__) || defined(__JETBRAINS_IDE__) | ||
731 | /* This makes MSVC/CLion intellisense work. */ | ||
732 | #define CGLTF_IMPLEMENTATION | ||
733 | #endif | ||
734 | |||
735 | #ifdef CGLTF_IMPLEMENTATION | ||
736 | |||
737 | #include <stdint.h> /* For uint8_t, uint32_t */ | ||
738 | #include <string.h> /* For strncpy */ | ||
739 | #include <stdio.h> /* For fopen */ | ||
740 | #include <limits.h> /* For UINT_MAX etc */ | ||
741 | |||
742 | #if !defined(CGLTF_MALLOC) || !defined(CGLTF_FREE) || !defined(CGLTF_ATOI) || !defined(CGLTF_ATOF) | ||
743 | #include <stdlib.h> /* For malloc, free, atoi, atof */ | ||
744 | #endif | ||
745 | |||
746 | /* JSMN_PARENT_LINKS is necessary to make parsing large structures linear in input size */ | ||
747 | #define JSMN_PARENT_LINKS | ||
748 | |||
749 | /* JSMN_STRICT is necessary to reject invalid JSON documents */ | ||
750 | #define JSMN_STRICT | ||
751 | |||
752 | /* | ||
753 | * -- jsmn.h start -- | ||
754 | * Source: https://github.com/zserge/jsmn | ||
755 | * License: MIT | ||
756 | */ | ||
757 | typedef enum { | ||
758 | JSMN_UNDEFINED = 0, | ||
759 | JSMN_OBJECT = 1, | ||
760 | JSMN_ARRAY = 2, | ||
761 | JSMN_STRING = 3, | ||
762 | JSMN_PRIMITIVE = 4 | ||
763 | } jsmntype_t; | ||
764 | enum jsmnerr { | ||
765 | /* Not enough tokens were provided */ | ||
766 | JSMN_ERROR_NOMEM = -1, | ||
767 | /* Invalid character inside JSON string */ | ||
768 | JSMN_ERROR_INVAL = -2, | ||
769 | /* The string is not a full JSON packet, more bytes expected */ | ||
770 | JSMN_ERROR_PART = -3 | ||
771 | }; | ||
772 | typedef struct { | ||
773 | jsmntype_t type; | ||
774 | int start; | ||
775 | int end; | ||
776 | int size; | ||
777 | #ifdef JSMN_PARENT_LINKS | ||
778 | int parent; | ||
779 | #endif | ||
780 | } jsmntok_t; | ||
781 | typedef struct { | ||
782 | unsigned int pos; /* offset in the JSON string */ | ||
783 | unsigned int toknext; /* next token to allocate */ | ||
784 | int toksuper; /* superior token node, e.g parent object or array */ | ||
785 | } jsmn_parser; | ||
786 | static void jsmn_init(jsmn_parser *parser); | ||
787 | static int jsmn_parse(jsmn_parser *parser, const char *js, size_t len, jsmntok_t *tokens, size_t num_tokens); | ||
788 | /* | ||
789 | * -- jsmn.h end -- | ||
790 | */ | ||
791 | |||
792 | |||
793 | static const cgltf_size GlbHeaderSize = 12; | ||
794 | static const cgltf_size GlbChunkHeaderSize = 8; | ||
795 | static const uint32_t GlbVersion = 2; | ||
796 | static const uint32_t GlbMagic = 0x46546C67; | ||
797 | static const uint32_t GlbMagicJsonChunk = 0x4E4F534A; | ||
798 | static const uint32_t GlbMagicBinChunk = 0x004E4942; | ||
799 | |||
800 | #ifndef CGLTF_MALLOC | ||
801 | #define CGLTF_MALLOC(size) malloc(size) | ||
802 | #endif | ||
803 | #ifndef CGLTF_FREE | ||
804 | #define CGLTF_FREE(ptr) free(ptr) | ||
805 | #endif | ||
806 | #ifndef CGLTF_ATOI | ||
807 | #define CGLTF_ATOI(str) atoi(str) | ||
808 | #endif | ||
809 | #ifndef CGLTF_ATOF | ||
810 | #define CGLTF_ATOF(str) atof(str) | ||
811 | #endif | ||
812 | |||
813 | static void* cgltf_default_alloc(void* user, cgltf_size size) | ||
814 | { | ||
815 | (void)user; | ||
816 | return CGLTF_MALLOC(size); | ||
817 | } | ||
818 | |||
819 | static void cgltf_default_free(void* user, void* ptr) | ||
820 | { | ||
821 | (void)user; | ||
822 | CGLTF_FREE(ptr); | ||
823 | } | ||
824 | |||
825 | static void* cgltf_calloc(cgltf_options* options, size_t element_size, cgltf_size count) | ||
826 | { | ||
827 | if (SIZE_MAX / element_size < count) | ||
828 | { | ||
829 | return NULL; | ||
830 | } | ||
831 | void* result = options->memory.alloc(options->memory.user_data, element_size * count); | ||
832 | if (!result) | ||
833 | { | ||
834 | return NULL; | ||
835 | } | ||
836 | memset(result, 0, element_size * count); | ||
837 | return result; | ||
838 | } | ||
839 | |||
840 | static cgltf_result cgltf_default_file_read(const struct cgltf_memory_options* memory_options, const struct cgltf_file_options* file_options, const char* path, cgltf_size* size, void** data) | ||
841 | { | ||
842 | (void)file_options; | ||
843 | void* (*memory_alloc)(void*, cgltf_size) = memory_options->alloc ? memory_options->alloc : &cgltf_default_alloc; | ||
844 | void (*memory_free)(void*, void*) = memory_options->free ? memory_options->free : &cgltf_default_free; | ||
845 | |||
846 | FILE* file = fopen(path, "rb"); | ||
847 | if (!file) | ||
848 | { | ||
849 | return cgltf_result_file_not_found; | ||
850 | } | ||
851 | |||
852 | cgltf_size file_size = size ? *size : 0; | ||
853 | |||
854 | if (file_size == 0) | ||
855 | { | ||
856 | fseek(file, 0, SEEK_END); | ||
857 | |||
858 | long length = ftell(file); | ||
859 | if (length < 0) | ||
860 | { | ||
861 | fclose(file); | ||
862 | return cgltf_result_io_error; | ||
863 | } | ||
864 | |||
865 | fseek(file, 0, SEEK_SET); | ||
866 | file_size = (cgltf_size)length; | ||
867 | } | ||
868 | |||
869 | char* file_data = (char*)memory_alloc(memory_options->user_data, file_size); | ||
870 | if (!file_data) | ||
871 | { | ||
872 | fclose(file); | ||
873 | return cgltf_result_out_of_memory; | ||
874 | } | ||
875 | |||
876 | cgltf_size read_size = fread(file_data, 1, file_size, file); | ||
877 | |||
878 | fclose(file); | ||
879 | |||
880 | if (read_size != file_size) | ||
881 | { | ||
882 | memory_free(memory_options->user_data, file_data); | ||
883 | return cgltf_result_io_error; | ||
884 | } | ||
885 | |||
886 | if (size) | ||
887 | { | ||
888 | *size = file_size; | ||
889 | } | ||
890 | if (data) | ||
891 | { | ||
892 | *data = file_data; | ||
893 | } | ||
894 | |||
895 | return cgltf_result_success; | ||
896 | } | ||
897 | |||
898 | static void cgltf_default_file_release(const struct cgltf_memory_options* memory_options, const struct cgltf_file_options* file_options, void* data) | ||
899 | { | ||
900 | (void)file_options; | ||
901 | void (*memfree)(void*, void*) = memory_options->free ? memory_options->free : &cgltf_default_free; | ||
902 | memfree(memory_options->user_data, data); | ||
903 | } | ||
904 | |||
905 | static cgltf_result cgltf_parse_json(cgltf_options* options, const uint8_t* json_chunk, cgltf_size size, cgltf_data** out_data); | ||
906 | |||
907 | cgltf_result cgltf_parse(const cgltf_options* options, const void* data, cgltf_size size, cgltf_data** out_data) | ||
908 | { | ||
909 | if (size < GlbHeaderSize) | ||
910 | { | ||
911 | return cgltf_result_data_too_short; | ||
912 | } | ||
913 | |||
914 | if (options == NULL) | ||
915 | { | ||
916 | return cgltf_result_invalid_options; | ||
917 | } | ||
918 | |||
919 | cgltf_options fixed_options = *options; | ||
920 | if (fixed_options.memory.alloc == NULL) | ||
921 | { | ||
922 | fixed_options.memory.alloc = &cgltf_default_alloc; | ||
923 | } | ||
924 | if (fixed_options.memory.free == NULL) | ||
925 | { | ||
926 | fixed_options.memory.free = &cgltf_default_free; | ||
927 | } | ||
928 | |||
929 | uint32_t tmp; | ||
930 | // Magic | ||
931 | memcpy(&tmp, data, 4); | ||
932 | if (tmp != GlbMagic) | ||
933 | { | ||
934 | if (fixed_options.type == cgltf_file_type_invalid) | ||
935 | { | ||
936 | fixed_options.type = cgltf_file_type_gltf; | ||
937 | } | ||
938 | else if (fixed_options.type == cgltf_file_type_glb) | ||
939 | { | ||
940 | return cgltf_result_unknown_format; | ||
941 | } | ||
942 | } | ||
943 | |||
944 | if (fixed_options.type == cgltf_file_type_gltf) | ||
945 | { | ||
946 | cgltf_result json_result = cgltf_parse_json(&fixed_options, (const uint8_t*)data, size, out_data); | ||
947 | if (json_result != cgltf_result_success) | ||
948 | { | ||
949 | return json_result; | ||
950 | } | ||
951 | |||
952 | (*out_data)->file_type = cgltf_file_type_gltf; | ||
953 | |||
954 | return cgltf_result_success; | ||
955 | } | ||
956 | |||
957 | const uint8_t* ptr = (const uint8_t*)data; | ||
958 | // Version | ||
959 | memcpy(&tmp, ptr + 4, 4); | ||
960 | uint32_t version = tmp; | ||
961 | if (version != GlbVersion) | ||
962 | { | ||
963 | return version < GlbVersion ? cgltf_result_legacy_gltf : cgltf_result_unknown_format; | ||
964 | } | ||
965 | |||
966 | // Total length | ||
967 | memcpy(&tmp, ptr + 8, 4); | ||
968 | if (tmp > size) | ||
969 | { | ||
970 | return cgltf_result_data_too_short; | ||
971 | } | ||
972 | |||
973 | const uint8_t* json_chunk = ptr + GlbHeaderSize; | ||
974 | |||
975 | if (GlbHeaderSize + GlbChunkHeaderSize > size) | ||
976 | { | ||
977 | return cgltf_result_data_too_short; | ||
978 | } | ||
979 | |||
980 | // JSON chunk: length | ||
981 | uint32_t json_length; | ||
982 | memcpy(&json_length, json_chunk, 4); | ||
983 | if (GlbHeaderSize + GlbChunkHeaderSize + json_length > size) | ||
984 | { | ||
985 | return cgltf_result_data_too_short; | ||
986 | } | ||
987 | |||
988 | // JSON chunk: magic | ||
989 | memcpy(&tmp, json_chunk + 4, 4); | ||
990 | if (tmp != GlbMagicJsonChunk) | ||
991 | { | ||
992 | return cgltf_result_unknown_format; | ||
993 | } | ||
994 | |||
995 | json_chunk += GlbChunkHeaderSize; | ||
996 | |||
997 | const void* bin = 0; | ||
998 | cgltf_size bin_size = 0; | ||
999 | |||
1000 | if (GlbHeaderSize + GlbChunkHeaderSize + json_length + GlbChunkHeaderSize <= size) | ||
1001 | { | ||
1002 | // We can read another chunk | ||
1003 | const uint8_t* bin_chunk = json_chunk + json_length; | ||
1004 | |||
1005 | // Bin chunk: length | ||
1006 | uint32_t bin_length; | ||
1007 | memcpy(&bin_length, bin_chunk, 4); | ||
1008 | if (GlbHeaderSize + GlbChunkHeaderSize + json_length + GlbChunkHeaderSize + bin_length > size) | ||
1009 | { | ||
1010 | return cgltf_result_data_too_short; | ||
1011 | } | ||
1012 | |||
1013 | // Bin chunk: magic | ||
1014 | memcpy(&tmp, bin_chunk + 4, 4); | ||
1015 | if (tmp != GlbMagicBinChunk) | ||
1016 | { | ||
1017 | return cgltf_result_unknown_format; | ||
1018 | } | ||
1019 | |||
1020 | bin_chunk += GlbChunkHeaderSize; | ||
1021 | |||
1022 | bin = bin_chunk; | ||
1023 | bin_size = bin_length; | ||
1024 | } | ||
1025 | |||
1026 | cgltf_result json_result = cgltf_parse_json(&fixed_options, json_chunk, json_length, out_data); | ||
1027 | if (json_result != cgltf_result_success) | ||
1028 | { | ||
1029 | return json_result; | ||
1030 | } | ||
1031 | |||
1032 | (*out_data)->file_type = cgltf_file_type_glb; | ||
1033 | (*out_data)->bin = bin; | ||
1034 | (*out_data)->bin_size = bin_size; | ||
1035 | |||
1036 | return cgltf_result_success; | ||
1037 | } | ||
1038 | |||
1039 | cgltf_result cgltf_parse_file(const cgltf_options* options, const char* path, cgltf_data** out_data) | ||
1040 | { | ||
1041 | if (options == NULL) | ||
1042 | { | ||
1043 | return cgltf_result_invalid_options; | ||
1044 | } | ||
1045 | |||
1046 | void (*memory_free)(void*, void*) = options->memory.free ? options->memory.free : &cgltf_default_free; | ||
1047 | cgltf_result (*file_read)(const struct cgltf_memory_options*, const struct cgltf_file_options*, const char*, cgltf_size*, void**) = options->file.read ? options->file.read : &cgltf_default_file_read; | ||
1048 | |||
1049 | void* file_data = NULL; | ||
1050 | cgltf_size file_size = 0; | ||
1051 | cgltf_result result = file_read(&options->memory, &options->file, path, &file_size, &file_data); | ||
1052 | if (result != cgltf_result_success) | ||
1053 | { | ||
1054 | return result; | ||
1055 | } | ||
1056 | |||
1057 | result = cgltf_parse(options, file_data, file_size, out_data); | ||
1058 | |||
1059 | if (result != cgltf_result_success) | ||
1060 | { | ||
1061 | memory_free(options->memory.user_data, file_data); | ||
1062 | return result; | ||
1063 | } | ||
1064 | |||
1065 | (*out_data)->file_data = file_data; | ||
1066 | |||
1067 | return cgltf_result_success; | ||
1068 | } | ||
1069 | |||
1070 | static void cgltf_combine_paths(char* path, const char* base, const char* uri) | ||
1071 | { | ||
1072 | const char* s0 = strrchr(base, '/'); | ||
1073 | const char* s1 = strrchr(base, '\\'); | ||
1074 | const char* slash = s0 ? (s1 && s1 > s0 ? s1 : s0) : s1; | ||
1075 | |||
1076 | if (slash) | ||
1077 | { | ||
1078 | size_t prefix = slash - base + 1; | ||
1079 | |||
1080 | strncpy(path, base, prefix); | ||
1081 | strcpy(path + prefix, uri); | ||
1082 | } | ||
1083 | else | ||
1084 | { | ||
1085 | strcpy(path, uri); | ||
1086 | } | ||
1087 | } | ||
1088 | |||
1089 | static cgltf_result cgltf_load_buffer_file(const cgltf_options* options, cgltf_size size, const char* uri, const char* gltf_path, void** out_data) | ||
1090 | { | ||
1091 | void* (*memory_alloc)(void*, cgltf_size) = options->memory.alloc ? options->memory.alloc : &cgltf_default_alloc; | ||
1092 | void (*memory_free)(void*, void*) = options->memory.free ? options->memory.free : &cgltf_default_free; | ||
1093 | cgltf_result (*file_read)(const struct cgltf_memory_options*, const struct cgltf_file_options*, const char*, cgltf_size*, void**) = options->file.read ? options->file.read : &cgltf_default_file_read; | ||
1094 | |||
1095 | char* path = (char*)memory_alloc(options->memory.user_data, strlen(uri) + strlen(gltf_path) + 1); | ||
1096 | if (!path) | ||
1097 | { | ||
1098 | return cgltf_result_out_of_memory; | ||
1099 | } | ||
1100 | |||
1101 | cgltf_combine_paths(path, gltf_path, uri); | ||
1102 | |||
1103 | // after combining, the tail of the resulting path is a uri; decode_uri converts it into path | ||
1104 | cgltf_decode_uri(path + strlen(path) - strlen(uri)); | ||
1105 | |||
1106 | void* file_data = NULL; | ||
1107 | cgltf_result result = file_read(&options->memory, &options->file, path, &size, &file_data); | ||
1108 | |||
1109 | memory_free(options->memory.user_data, path); | ||
1110 | |||
1111 | *out_data = (result == cgltf_result_success) ? file_data : NULL; | ||
1112 | |||
1113 | return result; | ||
1114 | } | ||
1115 | |||
1116 | cgltf_result cgltf_load_buffer_base64(const cgltf_options* options, cgltf_size size, const char* base64, void** out_data) | ||
1117 | { | ||
1118 | void* (*memory_alloc)(void*, cgltf_size) = options->memory.alloc ? options->memory.alloc : &cgltf_default_alloc; | ||
1119 | void (*memory_free)(void*, void*) = options->memory.free ? options->memory.free : &cgltf_default_free; | ||
1120 | |||
1121 | unsigned char* data = (unsigned char*)memory_alloc(options->memory.user_data, size); | ||
1122 | if (!data) | ||
1123 | { | ||
1124 | return cgltf_result_out_of_memory; | ||
1125 | } | ||
1126 | |||
1127 | unsigned int buffer = 0; | ||
1128 | unsigned int buffer_bits = 0; | ||
1129 | |||
1130 | for (cgltf_size i = 0; i < size; ++i) | ||
1131 | { | ||
1132 | while (buffer_bits < 8) | ||
1133 | { | ||
1134 | char ch = *base64++; | ||
1135 | |||
1136 | int index = | ||
1137 | (unsigned)(ch - 'A') < 26 ? (ch - 'A') : | ||
1138 | (unsigned)(ch - 'a') < 26 ? (ch - 'a') + 26 : | ||
1139 | (unsigned)(ch - '0') < 10 ? (ch - '0') + 52 : | ||
1140 | ch == '+' ? 62 : | ||
1141 | ch == '/' ? 63 : | ||
1142 | -1; | ||
1143 | |||
1144 | if (index < 0) | ||
1145 | { | ||
1146 | memory_free(options->memory.user_data, data); | ||
1147 | return cgltf_result_io_error; | ||
1148 | } | ||
1149 | |||
1150 | buffer = (buffer << 6) | index; | ||
1151 | buffer_bits += 6; | ||
1152 | } | ||
1153 | |||
1154 | data[i] = (unsigned char)(buffer >> (buffer_bits - 8)); | ||
1155 | buffer_bits -= 8; | ||
1156 | } | ||
1157 | |||
1158 | *out_data = data; | ||
1159 | |||
1160 | return cgltf_result_success; | ||
1161 | } | ||
1162 | |||
1163 | static int cgltf_unhex(char ch) | ||
1164 | { | ||
1165 | return | ||
1166 | (unsigned)(ch - '0') < 10 ? (ch - '0') : | ||
1167 | (unsigned)(ch - 'A') < 6 ? (ch - 'A') + 10 : | ||
1168 | (unsigned)(ch - 'a') < 6 ? (ch - 'a') + 10 : | ||
1169 | -1; | ||
1170 | } | ||
1171 | |||
1172 | void cgltf_decode_uri(char* uri) | ||
1173 | { | ||
1174 | char* write = uri; | ||
1175 | char* i = uri; | ||
1176 | |||
1177 | while (*i) | ||
1178 | { | ||
1179 | if (*i == '%') | ||
1180 | { | ||
1181 | int ch1 = cgltf_unhex(i[1]); | ||
1182 | |||
1183 | if (ch1 >= 0) | ||
1184 | { | ||
1185 | int ch2 = cgltf_unhex(i[2]); | ||
1186 | |||
1187 | if (ch2 >= 0) | ||
1188 | { | ||
1189 | *write++ = (char)(ch1 * 16 + ch2); | ||
1190 | i += 3; | ||
1191 | continue; | ||
1192 | } | ||
1193 | } | ||
1194 | } | ||
1195 | |||
1196 | *write++ = *i++; | ||
1197 | } | ||
1198 | |||
1199 | *write = 0; | ||
1200 | } | ||
1201 | |||
1202 | cgltf_result cgltf_load_buffers(const cgltf_options* options, cgltf_data* data, const char* gltf_path) | ||
1203 | { | ||
1204 | if (options == NULL) | ||
1205 | { | ||
1206 | return cgltf_result_invalid_options; | ||
1207 | } | ||
1208 | |||
1209 | if (data->buffers_count && data->buffers[0].data == NULL && data->buffers[0].uri == NULL && data->bin) | ||
1210 | { | ||
1211 | if (data->bin_size < data->buffers[0].size) | ||
1212 | { | ||
1213 | return cgltf_result_data_too_short; | ||
1214 | } | ||
1215 | |||
1216 | data->buffers[0].data = (void*)data->bin; | ||
1217 | } | ||
1218 | |||
1219 | for (cgltf_size i = 0; i < data->buffers_count; ++i) | ||
1220 | { | ||
1221 | if (data->buffers[i].data) | ||
1222 | { | ||
1223 | continue; | ||
1224 | } | ||
1225 | |||
1226 | const char* uri = data->buffers[i].uri; | ||
1227 | |||
1228 | if (uri == NULL) | ||
1229 | { | ||
1230 | continue; | ||
1231 | } | ||
1232 | |||
1233 | if (strncmp(uri, "data:", 5) == 0) | ||
1234 | { | ||
1235 | const char* comma = strchr(uri, ','); | ||
1236 | |||
1237 | if (comma && comma - uri >= 7 && strncmp(comma - 7, ";base64", 7) == 0) | ||
1238 | { | ||
1239 | cgltf_result res = cgltf_load_buffer_base64(options, data->buffers[i].size, comma + 1, &data->buffers[i].data); | ||
1240 | |||
1241 | if (res != cgltf_result_success) | ||
1242 | { | ||
1243 | return res; | ||
1244 | } | ||
1245 | } | ||
1246 | else | ||
1247 | { | ||
1248 | return cgltf_result_unknown_format; | ||
1249 | } | ||
1250 | } | ||
1251 | else if (strstr(uri, "://") == NULL && gltf_path) | ||
1252 | { | ||
1253 | cgltf_result res = cgltf_load_buffer_file(options, data->buffers[i].size, uri, gltf_path, &data->buffers[i].data); | ||
1254 | |||
1255 | if (res != cgltf_result_success) | ||
1256 | { | ||
1257 | return res; | ||
1258 | } | ||
1259 | } | ||
1260 | else | ||
1261 | { | ||
1262 | return cgltf_result_unknown_format; | ||
1263 | } | ||
1264 | } | ||
1265 | |||
1266 | return cgltf_result_success; | ||
1267 | } | ||
1268 | |||
1269 | static cgltf_size cgltf_calc_size(cgltf_type type, cgltf_component_type component_type); | ||
1270 | |||
1271 | static cgltf_size cgltf_calc_index_bound(cgltf_buffer_view* buffer_view, cgltf_size offset, cgltf_component_type component_type, cgltf_size count) | ||
1272 | { | ||
1273 | char* data = (char*)buffer_view->buffer->data + offset + buffer_view->offset; | ||
1274 | cgltf_size bound = 0; | ||
1275 | |||
1276 | switch (component_type) | ||
1277 | { | ||
1278 | case cgltf_component_type_r_8u: | ||
1279 | for (size_t i = 0; i < count; ++i) | ||
1280 | { | ||
1281 | cgltf_size v = ((unsigned char*)data)[i]; | ||
1282 | bound = bound > v ? bound : v; | ||
1283 | } | ||
1284 | break; | ||
1285 | |||
1286 | case cgltf_component_type_r_16u: | ||
1287 | for (size_t i = 0; i < count; ++i) | ||
1288 | { | ||
1289 | cgltf_size v = ((unsigned short*)data)[i]; | ||
1290 | bound = bound > v ? bound : v; | ||
1291 | } | ||
1292 | break; | ||
1293 | |||
1294 | case cgltf_component_type_r_32u: | ||
1295 | for (size_t i = 0; i < count; ++i) | ||
1296 | { | ||
1297 | cgltf_size v = ((unsigned int*)data)[i]; | ||
1298 | bound = bound > v ? bound : v; | ||
1299 | } | ||
1300 | break; | ||
1301 | |||
1302 | default: | ||
1303 | ; | ||
1304 | } | ||
1305 | |||
1306 | return bound; | ||
1307 | } | ||
1308 | |||
1309 | cgltf_result cgltf_validate(cgltf_data* data) | ||
1310 | { | ||
1311 | for (cgltf_size i = 0; i < data->accessors_count; ++i) | ||
1312 | { | ||
1313 | cgltf_accessor* accessor = &data->accessors[i]; | ||
1314 | |||
1315 | cgltf_size element_size = cgltf_calc_size(accessor->type, accessor->component_type); | ||
1316 | |||
1317 | if (accessor->buffer_view) | ||
1318 | { | ||
1319 | cgltf_size req_size = accessor->offset + accessor->stride * (accessor->count - 1) + element_size; | ||
1320 | |||
1321 | if (accessor->buffer_view->size < req_size) | ||
1322 | { | ||
1323 | return cgltf_result_data_too_short; | ||
1324 | } | ||
1325 | } | ||
1326 | |||
1327 | if (accessor->is_sparse) | ||
1328 | { | ||
1329 | cgltf_accessor_sparse* sparse = &accessor->sparse; | ||
1330 | |||
1331 | cgltf_size indices_component_size = cgltf_calc_size(cgltf_type_scalar, sparse->indices_component_type); | ||
1332 | cgltf_size indices_req_size = sparse->indices_byte_offset + indices_component_size * sparse->count; | ||
1333 | cgltf_size values_req_size = sparse->values_byte_offset + element_size * sparse->count; | ||
1334 | |||
1335 | if (sparse->indices_buffer_view->size < indices_req_size || | ||
1336 | sparse->values_buffer_view->size < values_req_size) | ||
1337 | { | ||
1338 | return cgltf_result_data_too_short; | ||
1339 | } | ||
1340 | |||
1341 | if (sparse->indices_component_type != cgltf_component_type_r_8u && | ||
1342 | sparse->indices_component_type != cgltf_component_type_r_16u && | ||
1343 | sparse->indices_component_type != cgltf_component_type_r_32u) | ||
1344 | { | ||
1345 | return cgltf_result_invalid_gltf; | ||
1346 | } | ||
1347 | |||
1348 | if (sparse->indices_buffer_view->buffer->data) | ||
1349 | { | ||
1350 | cgltf_size index_bound = cgltf_calc_index_bound(sparse->indices_buffer_view, sparse->indices_byte_offset, sparse->indices_component_type, sparse->count); | ||
1351 | |||
1352 | if (index_bound >= accessor->count) | ||
1353 | { | ||
1354 | return cgltf_result_data_too_short; | ||
1355 | } | ||
1356 | } | ||
1357 | } | ||
1358 | } | ||
1359 | |||
1360 | for (cgltf_size i = 0; i < data->buffer_views_count; ++i) | ||
1361 | { | ||
1362 | cgltf_size req_size = data->buffer_views[i].offset + data->buffer_views[i].size; | ||
1363 | |||
1364 | if (data->buffer_views[i].buffer && data->buffer_views[i].buffer->size < req_size) | ||
1365 | { | ||
1366 | return cgltf_result_data_too_short; | ||
1367 | } | ||
1368 | } | ||
1369 | |||
1370 | for (cgltf_size i = 0; i < data->meshes_count; ++i) | ||
1371 | { | ||
1372 | if (data->meshes[i].weights) | ||
1373 | { | ||
1374 | if (data->meshes[i].primitives_count && data->meshes[i].primitives[0].targets_count != data->meshes[i].weights_count) | ||
1375 | { | ||
1376 | return cgltf_result_invalid_gltf; | ||
1377 | } | ||
1378 | } | ||
1379 | |||
1380 | if (data->meshes[i].target_names) | ||
1381 | { | ||
1382 | if (data->meshes[i].primitives_count && data->meshes[i].primitives[0].targets_count != data->meshes[i].target_names_count) | ||
1383 | { | ||
1384 | return cgltf_result_invalid_gltf; | ||
1385 | } | ||
1386 | } | ||
1387 | |||
1388 | for (cgltf_size j = 0; j < data->meshes[i].primitives_count; ++j) | ||
1389 | { | ||
1390 | if (data->meshes[i].primitives[j].targets_count != data->meshes[i].primitives[0].targets_count) | ||
1391 | { | ||
1392 | return cgltf_result_invalid_gltf; | ||
1393 | } | ||
1394 | |||
1395 | if (data->meshes[i].primitives[j].attributes_count) | ||
1396 | { | ||
1397 | cgltf_accessor* first = data->meshes[i].primitives[j].attributes[0].data; | ||
1398 | |||
1399 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].attributes_count; ++k) | ||
1400 | { | ||
1401 | if (data->meshes[i].primitives[j].attributes[k].data->count != first->count) | ||
1402 | { | ||
1403 | return cgltf_result_invalid_gltf; | ||
1404 | } | ||
1405 | } | ||
1406 | |||
1407 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].targets_count; ++k) | ||
1408 | { | ||
1409 | for (cgltf_size m = 0; m < data->meshes[i].primitives[j].targets[k].attributes_count; ++m) | ||
1410 | { | ||
1411 | if (data->meshes[i].primitives[j].targets[k].attributes[m].data->count != first->count) | ||
1412 | { | ||
1413 | return cgltf_result_invalid_gltf; | ||
1414 | } | ||
1415 | } | ||
1416 | } | ||
1417 | |||
1418 | cgltf_accessor* indices = data->meshes[i].primitives[j].indices; | ||
1419 | |||
1420 | if (indices && | ||
1421 | indices->component_type != cgltf_component_type_r_8u && | ||
1422 | indices->component_type != cgltf_component_type_r_16u && | ||
1423 | indices->component_type != cgltf_component_type_r_32u) | ||
1424 | { | ||
1425 | return cgltf_result_invalid_gltf; | ||
1426 | } | ||
1427 | |||
1428 | if (indices && indices->buffer_view && indices->buffer_view->buffer->data) | ||
1429 | { | ||
1430 | cgltf_size index_bound = cgltf_calc_index_bound(indices->buffer_view, indices->offset, indices->component_type, indices->count); | ||
1431 | |||
1432 | if (index_bound >= first->count) | ||
1433 | { | ||
1434 | return cgltf_result_data_too_short; | ||
1435 | } | ||
1436 | } | ||
1437 | } | ||
1438 | } | ||
1439 | } | ||
1440 | |||
1441 | for (cgltf_size i = 0; i < data->nodes_count; ++i) | ||
1442 | { | ||
1443 | if (data->nodes[i].weights && data->nodes[i].mesh) | ||
1444 | { | ||
1445 | if (data->nodes[i].mesh->primitives_count && data->nodes[i].mesh->primitives[0].targets_count != data->nodes[i].weights_count) | ||
1446 | { | ||
1447 | return cgltf_result_invalid_gltf; | ||
1448 | } | ||
1449 | } | ||
1450 | } | ||
1451 | |||
1452 | for (cgltf_size i = 0; i < data->nodes_count; ++i) | ||
1453 | { | ||
1454 | cgltf_node* p1 = data->nodes[i].parent; | ||
1455 | cgltf_node* p2 = p1 ? p1->parent : NULL; | ||
1456 | |||
1457 | while (p1 && p2) | ||
1458 | { | ||
1459 | if (p1 == p2) | ||
1460 | { | ||
1461 | return cgltf_result_invalid_gltf; | ||
1462 | } | ||
1463 | |||
1464 | p1 = p1->parent; | ||
1465 | p2 = p2->parent ? p2->parent->parent : NULL; | ||
1466 | } | ||
1467 | } | ||
1468 | |||
1469 | for (cgltf_size i = 0; i < data->scenes_count; ++i) | ||
1470 | { | ||
1471 | for (cgltf_size j = 0; j < data->scenes[i].nodes_count; ++j) | ||
1472 | { | ||
1473 | if (data->scenes[i].nodes[j]->parent) | ||
1474 | { | ||
1475 | return cgltf_result_invalid_gltf; | ||
1476 | } | ||
1477 | } | ||
1478 | } | ||
1479 | |||
1480 | for (cgltf_size i = 0; i < data->animations_count; ++i) | ||
1481 | { | ||
1482 | for (cgltf_size j = 0; j < data->animations[i].channels_count; ++j) | ||
1483 | { | ||
1484 | cgltf_animation_channel* channel = &data->animations[i].channels[j]; | ||
1485 | |||
1486 | if (!channel->target_node) | ||
1487 | { | ||
1488 | continue; | ||
1489 | } | ||
1490 | |||
1491 | cgltf_size components = 1; | ||
1492 | |||
1493 | if (channel->target_path == cgltf_animation_path_type_weights) | ||
1494 | { | ||
1495 | if (!channel->target_node->mesh || !channel->target_node->mesh->primitives_count) | ||
1496 | { | ||
1497 | return cgltf_result_invalid_gltf; | ||
1498 | } | ||
1499 | |||
1500 | components = channel->target_node->mesh->primitives[0].targets_count; | ||
1501 | } | ||
1502 | |||
1503 | cgltf_size values = channel->sampler->interpolation == cgltf_interpolation_type_cubic_spline ? 3 : 1; | ||
1504 | |||
1505 | if (channel->sampler->input->count * components * values != channel->sampler->output->count) | ||
1506 | { | ||
1507 | return cgltf_result_data_too_short; | ||
1508 | } | ||
1509 | } | ||
1510 | } | ||
1511 | |||
1512 | return cgltf_result_success; | ||
1513 | } | ||
1514 | |||
1515 | cgltf_result cgltf_copy_extras_json(const cgltf_data* data, const cgltf_extras* extras, char* dest, cgltf_size* dest_size) | ||
1516 | { | ||
1517 | cgltf_size json_size = extras->end_offset - extras->start_offset; | ||
1518 | |||
1519 | if (!dest) | ||
1520 | { | ||
1521 | if (dest_size) | ||
1522 | { | ||
1523 | *dest_size = json_size + 1; | ||
1524 | return cgltf_result_success; | ||
1525 | } | ||
1526 | return cgltf_result_invalid_options; | ||
1527 | } | ||
1528 | |||
1529 | if (*dest_size + 1 < json_size) | ||
1530 | { | ||
1531 | strncpy(dest, data->json + extras->start_offset, *dest_size - 1); | ||
1532 | dest[*dest_size - 1] = 0; | ||
1533 | } | ||
1534 | else | ||
1535 | { | ||
1536 | strncpy(dest, data->json + extras->start_offset, json_size); | ||
1537 | dest[json_size] = 0; | ||
1538 | } | ||
1539 | |||
1540 | return cgltf_result_success; | ||
1541 | } | ||
1542 | |||
1543 | void cgltf_free_extensions(cgltf_data* data, cgltf_extension* extensions, cgltf_size extensions_count) | ||
1544 | { | ||
1545 | for (cgltf_size i = 0; i < extensions_count; ++i) | ||
1546 | { | ||
1547 | data->memory.free(data->memory.user_data, extensions[i].name); | ||
1548 | data->memory.free(data->memory.user_data, extensions[i].data); | ||
1549 | } | ||
1550 | data->memory.free(data->memory.user_data, extensions); | ||
1551 | } | ||
1552 | |||
1553 | void cgltf_free(cgltf_data* data) | ||
1554 | { | ||
1555 | if (!data) | ||
1556 | { | ||
1557 | return; | ||
1558 | } | ||
1559 | |||
1560 | void (*file_release)(const struct cgltf_memory_options*, const struct cgltf_file_options*, void* data) = data->file.release ? data->file.release : cgltf_default_file_release; | ||
1561 | |||
1562 | data->memory.free(data->memory.user_data, data->asset.copyright); | ||
1563 | data->memory.free(data->memory.user_data, data->asset.generator); | ||
1564 | data->memory.free(data->memory.user_data, data->asset.version); | ||
1565 | data->memory.free(data->memory.user_data, data->asset.min_version); | ||
1566 | |||
1567 | cgltf_free_extensions(data, data->asset.extensions, data->asset.extensions_count); | ||
1568 | |||
1569 | for (cgltf_size i = 0; i < data->accessors_count; ++i) | ||
1570 | { | ||
1571 | if(data->accessors[i].is_sparse) | ||
1572 | { | ||
1573 | cgltf_free_extensions(data, data->accessors[i].sparse.extensions, data->accessors[i].sparse.extensions_count); | ||
1574 | cgltf_free_extensions(data, data->accessors[i].sparse.indices_extensions, data->accessors[i].sparse.indices_extensions_count); | ||
1575 | cgltf_free_extensions(data, data->accessors[i].sparse.values_extensions, data->accessors[i].sparse.values_extensions_count); | ||
1576 | } | ||
1577 | cgltf_free_extensions(data, data->accessors[i].extensions, data->accessors[i].extensions_count); | ||
1578 | } | ||
1579 | data->memory.free(data->memory.user_data, data->accessors); | ||
1580 | |||
1581 | for (cgltf_size i = 0; i < data->buffer_views_count; ++i) | ||
1582 | { | ||
1583 | cgltf_free_extensions(data, data->buffer_views[i].extensions, data->buffer_views[i].extensions_count); | ||
1584 | } | ||
1585 | data->memory.free(data->memory.user_data, data->buffer_views); | ||
1586 | |||
1587 | for (cgltf_size i = 0; i < data->buffers_count; ++i) | ||
1588 | { | ||
1589 | if (data->buffers[i].data != data->bin) | ||
1590 | { | ||
1591 | file_release(&data->memory, &data->file, data->buffers[i].data); | ||
1592 | } | ||
1593 | data->memory.free(data->memory.user_data, data->buffers[i].uri); | ||
1594 | |||
1595 | cgltf_free_extensions(data, data->buffers[i].extensions, data->buffers[i].extensions_count); | ||
1596 | } | ||
1597 | |||
1598 | data->memory.free(data->memory.user_data, data->buffers); | ||
1599 | |||
1600 | for (cgltf_size i = 0; i < data->meshes_count; ++i) | ||
1601 | { | ||
1602 | data->memory.free(data->memory.user_data, data->meshes[i].name); | ||
1603 | |||
1604 | for (cgltf_size j = 0; j < data->meshes[i].primitives_count; ++j) | ||
1605 | { | ||
1606 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].attributes_count; ++k) | ||
1607 | { | ||
1608 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].attributes[k].name); | ||
1609 | } | ||
1610 | |||
1611 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].attributes); | ||
1612 | |||
1613 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].targets_count; ++k) | ||
1614 | { | ||
1615 | for (cgltf_size m = 0; m < data->meshes[i].primitives[j].targets[k].attributes_count; ++m) | ||
1616 | { | ||
1617 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].targets[k].attributes[m].name); | ||
1618 | } | ||
1619 | |||
1620 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].targets[k].attributes); | ||
1621 | } | ||
1622 | |||
1623 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].targets); | ||
1624 | |||
1625 | if (data->meshes[i].primitives[j].has_draco_mesh_compression) | ||
1626 | { | ||
1627 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].draco_mesh_compression.attributes_count; ++k) | ||
1628 | { | ||
1629 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].draco_mesh_compression.attributes[k].name); | ||
1630 | } | ||
1631 | |||
1632 | data->memory.free(data->memory.user_data, data->meshes[i].primitives[j].draco_mesh_compression.attributes); | ||
1633 | } | ||
1634 | |||
1635 | cgltf_free_extensions(data, data->meshes[i].primitives[j].extensions, data->meshes[i].primitives[j].extensions_count); | ||
1636 | } | ||
1637 | |||
1638 | data->memory.free(data->memory.user_data, data->meshes[i].primitives); | ||
1639 | data->memory.free(data->memory.user_data, data->meshes[i].weights); | ||
1640 | |||
1641 | for (cgltf_size j = 0; j < data->meshes[i].target_names_count; ++j) | ||
1642 | { | ||
1643 | data->memory.free(data->memory.user_data, data->meshes[i].target_names[j]); | ||
1644 | } | ||
1645 | |||
1646 | cgltf_free_extensions(data, data->meshes[i].extensions, data->meshes[i].extensions_count); | ||
1647 | |||
1648 | data->memory.free(data->memory.user_data, data->meshes[i].target_names); | ||
1649 | } | ||
1650 | |||
1651 | data->memory.free(data->memory.user_data, data->meshes); | ||
1652 | |||
1653 | for (cgltf_size i = 0; i < data->materials_count; ++i) | ||
1654 | { | ||
1655 | data->memory.free(data->memory.user_data, data->materials[i].name); | ||
1656 | |||
1657 | if(data->materials[i].has_pbr_metallic_roughness) | ||
1658 | { | ||
1659 | cgltf_free_extensions(data, data->materials[i].pbr_metallic_roughness.metallic_roughness_texture.extensions, data->materials[i].pbr_metallic_roughness.metallic_roughness_texture.extensions_count); | ||
1660 | cgltf_free_extensions(data, data->materials[i].pbr_metallic_roughness.base_color_texture.extensions, data->materials[i].pbr_metallic_roughness.base_color_texture.extensions_count); | ||
1661 | } | ||
1662 | if(data->materials[i].has_pbr_specular_glossiness) | ||
1663 | { | ||
1664 | cgltf_free_extensions(data, data->materials[i].pbr_specular_glossiness.diffuse_texture.extensions, data->materials[i].pbr_specular_glossiness.diffuse_texture.extensions_count); | ||
1665 | cgltf_free_extensions(data, data->materials[i].pbr_specular_glossiness.specular_glossiness_texture.extensions, data->materials[i].pbr_specular_glossiness.specular_glossiness_texture.extensions_count); | ||
1666 | } | ||
1667 | if(data->materials[i].has_clearcoat) | ||
1668 | { | ||
1669 | cgltf_free_extensions(data, data->materials[i].clearcoat.clearcoat_texture.extensions, data->materials[i].clearcoat.clearcoat_texture.extensions_count); | ||
1670 | cgltf_free_extensions(data, data->materials[i].clearcoat.clearcoat_roughness_texture.extensions, data->materials[i].clearcoat.clearcoat_roughness_texture.extensions_count); | ||
1671 | cgltf_free_extensions(data, data->materials[i].clearcoat.clearcoat_normal_texture.extensions, data->materials[i].clearcoat.clearcoat_normal_texture.extensions_count); | ||
1672 | } | ||
1673 | if(data->materials[i].has_specular) | ||
1674 | { | ||
1675 | cgltf_free_extensions(data, data->materials[i].specular.specular_texture.extensions, data->materials[i].specular.specular_texture.extensions_count); | ||
1676 | } | ||
1677 | if(data->materials[i].has_transmission) | ||
1678 | { | ||
1679 | cgltf_free_extensions(data, data->materials[i].transmission.transmission_texture.extensions, data->materials[i].transmission.transmission_texture.extensions_count); | ||
1680 | } | ||
1681 | |||
1682 | cgltf_free_extensions(data, data->materials[i].normal_texture.extensions, data->materials[i].normal_texture.extensions_count); | ||
1683 | cgltf_free_extensions(data, data->materials[i].occlusion_texture.extensions, data->materials[i].occlusion_texture.extensions_count); | ||
1684 | cgltf_free_extensions(data, data->materials[i].emissive_texture.extensions, data->materials[i].emissive_texture.extensions_count); | ||
1685 | |||
1686 | cgltf_free_extensions(data, data->materials[i].extensions, data->materials[i].extensions_count); | ||
1687 | } | ||
1688 | |||
1689 | data->memory.free(data->memory.user_data, data->materials); | ||
1690 | |||
1691 | for (cgltf_size i = 0; i < data->images_count; ++i) | ||
1692 | { | ||
1693 | data->memory.free(data->memory.user_data, data->images[i].name); | ||
1694 | data->memory.free(data->memory.user_data, data->images[i].uri); | ||
1695 | data->memory.free(data->memory.user_data, data->images[i].mime_type); | ||
1696 | |||
1697 | cgltf_free_extensions(data, data->images[i].extensions, data->images[i].extensions_count); | ||
1698 | } | ||
1699 | |||
1700 | data->memory.free(data->memory.user_data, data->images); | ||
1701 | |||
1702 | for (cgltf_size i = 0; i < data->textures_count; ++i) | ||
1703 | { | ||
1704 | data->memory.free(data->memory.user_data, data->textures[i].name); | ||
1705 | cgltf_free_extensions(data, data->textures[i].extensions, data->textures[i].extensions_count); | ||
1706 | } | ||
1707 | |||
1708 | data->memory.free(data->memory.user_data, data->textures); | ||
1709 | |||
1710 | for (cgltf_size i = 0; i < data->samplers_count; ++i) | ||
1711 | { | ||
1712 | cgltf_free_extensions(data, data->samplers[i].extensions, data->samplers[i].extensions_count); | ||
1713 | } | ||
1714 | |||
1715 | data->memory.free(data->memory.user_data, data->samplers); | ||
1716 | |||
1717 | for (cgltf_size i = 0; i < data->skins_count; ++i) | ||
1718 | { | ||
1719 | data->memory.free(data->memory.user_data, data->skins[i].name); | ||
1720 | data->memory.free(data->memory.user_data, data->skins[i].joints); | ||
1721 | |||
1722 | cgltf_free_extensions(data, data->skins[i].extensions, data->skins[i].extensions_count); | ||
1723 | } | ||
1724 | |||
1725 | data->memory.free(data->memory.user_data, data->skins); | ||
1726 | |||
1727 | for (cgltf_size i = 0; i < data->cameras_count; ++i) | ||
1728 | { | ||
1729 | data->memory.free(data->memory.user_data, data->cameras[i].name); | ||
1730 | cgltf_free_extensions(data, data->cameras[i].extensions, data->cameras[i].extensions_count); | ||
1731 | } | ||
1732 | |||
1733 | data->memory.free(data->memory.user_data, data->cameras); | ||
1734 | |||
1735 | for (cgltf_size i = 0; i < data->lights_count; ++i) | ||
1736 | { | ||
1737 | data->memory.free(data->memory.user_data, data->lights[i].name); | ||
1738 | } | ||
1739 | |||
1740 | data->memory.free(data->memory.user_data, data->lights); | ||
1741 | |||
1742 | for (cgltf_size i = 0; i < data->nodes_count; ++i) | ||
1743 | { | ||
1744 | data->memory.free(data->memory.user_data, data->nodes[i].name); | ||
1745 | data->memory.free(data->memory.user_data, data->nodes[i].children); | ||
1746 | data->memory.free(data->memory.user_data, data->nodes[i].weights); | ||
1747 | cgltf_free_extensions(data, data->nodes[i].extensions, data->nodes[i].extensions_count); | ||
1748 | } | ||
1749 | |||
1750 | data->memory.free(data->memory.user_data, data->nodes); | ||
1751 | |||
1752 | for (cgltf_size i = 0; i < data->scenes_count; ++i) | ||
1753 | { | ||
1754 | data->memory.free(data->memory.user_data, data->scenes[i].name); | ||
1755 | data->memory.free(data->memory.user_data, data->scenes[i].nodes); | ||
1756 | |||
1757 | cgltf_free_extensions(data, data->scenes[i].extensions, data->scenes[i].extensions_count); | ||
1758 | } | ||
1759 | |||
1760 | data->memory.free(data->memory.user_data, data->scenes); | ||
1761 | |||
1762 | for (cgltf_size i = 0; i < data->animations_count; ++i) | ||
1763 | { | ||
1764 | data->memory.free(data->memory.user_data, data->animations[i].name); | ||
1765 | for (cgltf_size j = 0; j < data->animations[i].samplers_count; ++j) | ||
1766 | { | ||
1767 | cgltf_free_extensions(data, data->animations[i].samplers[j].extensions, data->animations[i].samplers[j].extensions_count); | ||
1768 | } | ||
1769 | data->memory.free(data->memory.user_data, data->animations[i].samplers); | ||
1770 | |||
1771 | for (cgltf_size j = 0; j < data->animations[i].channels_count; ++j) | ||
1772 | { | ||
1773 | cgltf_free_extensions(data, data->animations[i].channels[j].extensions, data->animations[i].channels[j].extensions_count); | ||
1774 | } | ||
1775 | data->memory.free(data->memory.user_data, data->animations[i].channels); | ||
1776 | |||
1777 | cgltf_free_extensions(data, data->animations[i].extensions, data->animations[i].extensions_count); | ||
1778 | } | ||
1779 | |||
1780 | data->memory.free(data->memory.user_data, data->animations); | ||
1781 | |||
1782 | cgltf_free_extensions(data, data->data_extensions, data->data_extensions_count); | ||
1783 | |||
1784 | for (cgltf_size i = 0; i < data->extensions_used_count; ++i) | ||
1785 | { | ||
1786 | data->memory.free(data->memory.user_data, data->extensions_used[i]); | ||
1787 | } | ||
1788 | |||
1789 | data->memory.free(data->memory.user_data, data->extensions_used); | ||
1790 | |||
1791 | for (cgltf_size i = 0; i < data->extensions_required_count; ++i) | ||
1792 | { | ||
1793 | data->memory.free(data->memory.user_data, data->extensions_required[i]); | ||
1794 | } | ||
1795 | |||
1796 | data->memory.free(data->memory.user_data, data->extensions_required); | ||
1797 | |||
1798 | file_release(&data->memory, &data->file, data->file_data); | ||
1799 | |||
1800 | data->memory.free(data->memory.user_data, data); | ||
1801 | } | ||
1802 | |||
1803 | void cgltf_node_transform_local(const cgltf_node* node, cgltf_float* out_matrix) | ||
1804 | { | ||
1805 | cgltf_float* lm = out_matrix; | ||
1806 | |||
1807 | if (node->has_matrix) | ||
1808 | { | ||
1809 | memcpy(lm, node->matrix, sizeof(float) * 16); | ||
1810 | } | ||
1811 | else | ||
1812 | { | ||
1813 | float tx = node->translation[0]; | ||
1814 | float ty = node->translation[1]; | ||
1815 | float tz = node->translation[2]; | ||
1816 | |||
1817 | float qx = node->rotation[0]; | ||
1818 | float qy = node->rotation[1]; | ||
1819 | float qz = node->rotation[2]; | ||
1820 | float qw = node->rotation[3]; | ||
1821 | |||
1822 | float sx = node->scale[0]; | ||
1823 | float sy = node->scale[1]; | ||
1824 | float sz = node->scale[2]; | ||
1825 | |||
1826 | lm[0] = (1 - 2 * qy*qy - 2 * qz*qz) * sx; | ||
1827 | lm[1] = (2 * qx*qy + 2 * qz*qw) * sx; | ||
1828 | lm[2] = (2 * qx*qz - 2 * qy*qw) * sx; | ||
1829 | lm[3] = 0.f; | ||
1830 | |||
1831 | lm[4] = (2 * qx*qy - 2 * qz*qw) * sy; | ||
1832 | lm[5] = (1 - 2 * qx*qx - 2 * qz*qz) * sy; | ||
1833 | lm[6] = (2 * qy*qz + 2 * qx*qw) * sy; | ||
1834 | lm[7] = 0.f; | ||
1835 | |||
1836 | lm[8] = (2 * qx*qz + 2 * qy*qw) * sz; | ||
1837 | lm[9] = (2 * qy*qz - 2 * qx*qw) * sz; | ||
1838 | lm[10] = (1 - 2 * qx*qx - 2 * qy*qy) * sz; | ||
1839 | lm[11] = 0.f; | ||
1840 | |||
1841 | lm[12] = tx; | ||
1842 | lm[13] = ty; | ||
1843 | lm[14] = tz; | ||
1844 | lm[15] = 1.f; | ||
1845 | } | ||
1846 | } | ||
1847 | |||
1848 | void cgltf_node_transform_world(const cgltf_node* node, cgltf_float* out_matrix) | ||
1849 | { | ||
1850 | cgltf_float* lm = out_matrix; | ||
1851 | cgltf_node_transform_local(node, lm); | ||
1852 | |||
1853 | const cgltf_node* parent = node->parent; | ||
1854 | |||
1855 | while (parent) | ||
1856 | { | ||
1857 | float pm[16]; | ||
1858 | cgltf_node_transform_local(parent, pm); | ||
1859 | |||
1860 | for (int i = 0; i < 4; ++i) | ||
1861 | { | ||
1862 | float l0 = lm[i * 4 + 0]; | ||
1863 | float l1 = lm[i * 4 + 1]; | ||
1864 | float l2 = lm[i * 4 + 2]; | ||
1865 | |||
1866 | float r0 = l0 * pm[0] + l1 * pm[4] + l2 * pm[8]; | ||
1867 | float r1 = l0 * pm[1] + l1 * pm[5] + l2 * pm[9]; | ||
1868 | float r2 = l0 * pm[2] + l1 * pm[6] + l2 * pm[10]; | ||
1869 | |||
1870 | lm[i * 4 + 0] = r0; | ||
1871 | lm[i * 4 + 1] = r1; | ||
1872 | lm[i * 4 + 2] = r2; | ||
1873 | } | ||
1874 | |||
1875 | lm[12] += pm[12]; | ||
1876 | lm[13] += pm[13]; | ||
1877 | lm[14] += pm[14]; | ||
1878 | |||
1879 | parent = parent->parent; | ||
1880 | } | ||
1881 | } | ||
1882 | |||
1883 | static cgltf_size cgltf_component_read_index(const void* in, cgltf_component_type component_type) | ||
1884 | { | ||
1885 | switch (component_type) | ||
1886 | { | ||
1887 | case cgltf_component_type_r_16: | ||
1888 | return *((const int16_t*) in); | ||
1889 | case cgltf_component_type_r_16u: | ||
1890 | return *((const uint16_t*) in); | ||
1891 | case cgltf_component_type_r_32u: | ||
1892 | return *((const uint32_t*) in); | ||
1893 | case cgltf_component_type_r_32f: | ||
1894 | return (cgltf_size)*((const float*) in); | ||
1895 | case cgltf_component_type_r_8: | ||
1896 | return *((const int8_t*) in); | ||
1897 | case cgltf_component_type_r_8u: | ||
1898 | return *((const uint8_t*) in); | ||
1899 | default: | ||
1900 | return 0; | ||
1901 | } | ||
1902 | } | ||
1903 | |||
1904 | static cgltf_float cgltf_component_read_float(const void* in, cgltf_component_type component_type, cgltf_bool normalized) | ||
1905 | { | ||
1906 | if (component_type == cgltf_component_type_r_32f) | ||
1907 | { | ||
1908 | return *((const float*) in); | ||
1909 | } | ||
1910 | |||
1911 | if (normalized) | ||
1912 | { | ||
1913 | switch (component_type) | ||
1914 | { | ||
1915 | // note: glTF spec doesn't currently define normalized conversions for 32-bit integers | ||
1916 | case cgltf_component_type_r_16: | ||
1917 | return *((const int16_t*) in) / (cgltf_float)32767; | ||
1918 | case cgltf_component_type_r_16u: | ||
1919 | return *((const uint16_t*) in) / (cgltf_float)65535; | ||
1920 | case cgltf_component_type_r_8: | ||
1921 | return *((const int8_t*) in) / (cgltf_float)127; | ||
1922 | case cgltf_component_type_r_8u: | ||
1923 | return *((const uint8_t*) in) / (cgltf_float)255; | ||
1924 | default: | ||
1925 | return 0; | ||
1926 | } | ||
1927 | } | ||
1928 | |||
1929 | return (cgltf_float)cgltf_component_read_index(in, component_type); | ||
1930 | } | ||
1931 | |||
1932 | static cgltf_size cgltf_component_size(cgltf_component_type component_type); | ||
1933 | |||
1934 | static cgltf_bool cgltf_element_read_float(const uint8_t* element, cgltf_type type, cgltf_component_type component_type, cgltf_bool normalized, cgltf_float* out, cgltf_size element_size) | ||
1935 | { | ||
1936 | cgltf_size num_components = cgltf_num_components(type); | ||
1937 | |||
1938 | if (element_size < num_components) { | ||
1939 | return 0; | ||
1940 | } | ||
1941 | |||
1942 | // There are three special cases for component extraction, see #data-alignment in the 2.0 spec. | ||
1943 | |||
1944 | cgltf_size component_size = cgltf_component_size(component_type); | ||
1945 | |||
1946 | if (type == cgltf_type_mat2 && component_size == 1) | ||
1947 | { | ||
1948 | out[0] = cgltf_component_read_float(element, component_type, normalized); | ||
1949 | out[1] = cgltf_component_read_float(element + 1, component_type, normalized); | ||
1950 | out[2] = cgltf_component_read_float(element + 4, component_type, normalized); | ||
1951 | out[3] = cgltf_component_read_float(element + 5, component_type, normalized); | ||
1952 | return 1; | ||
1953 | } | ||
1954 | |||
1955 | if (type == cgltf_type_mat3 && component_size == 1) | ||
1956 | { | ||
1957 | out[0] = cgltf_component_read_float(element, component_type, normalized); | ||
1958 | out[1] = cgltf_component_read_float(element + 1, component_type, normalized); | ||
1959 | out[2] = cgltf_component_read_float(element + 2, component_type, normalized); | ||
1960 | out[3] = cgltf_component_read_float(element + 4, component_type, normalized); | ||
1961 | out[4] = cgltf_component_read_float(element + 5, component_type, normalized); | ||
1962 | out[5] = cgltf_component_read_float(element + 6, component_type, normalized); | ||
1963 | out[6] = cgltf_component_read_float(element + 8, component_type, normalized); | ||
1964 | out[7] = cgltf_component_read_float(element + 9, component_type, normalized); | ||
1965 | out[8] = cgltf_component_read_float(element + 10, component_type, normalized); | ||
1966 | return 1; | ||
1967 | } | ||
1968 | |||
1969 | if (type == cgltf_type_mat3 && component_size == 2) | ||
1970 | { | ||
1971 | out[0] = cgltf_component_read_float(element, component_type, normalized); | ||
1972 | out[1] = cgltf_component_read_float(element + 2, component_type, normalized); | ||
1973 | out[2] = cgltf_component_read_float(element + 4, component_type, normalized); | ||
1974 | out[3] = cgltf_component_read_float(element + 8, component_type, normalized); | ||
1975 | out[4] = cgltf_component_read_float(element + 10, component_type, normalized); | ||
1976 | out[5] = cgltf_component_read_float(element + 12, component_type, normalized); | ||
1977 | out[6] = cgltf_component_read_float(element + 16, component_type, normalized); | ||
1978 | out[7] = cgltf_component_read_float(element + 18, component_type, normalized); | ||
1979 | out[8] = cgltf_component_read_float(element + 20, component_type, normalized); | ||
1980 | return 1; | ||
1981 | } | ||
1982 | |||
1983 | for (cgltf_size i = 0; i < num_components; ++i) | ||
1984 | { | ||
1985 | out[i] = cgltf_component_read_float(element + component_size * i, component_type, normalized); | ||
1986 | } | ||
1987 | return 1; | ||
1988 | } | ||
1989 | |||
1990 | cgltf_bool cgltf_accessor_read_float(const cgltf_accessor* accessor, cgltf_size index, cgltf_float* out, cgltf_size element_size) | ||
1991 | { | ||
1992 | if (accessor->is_sparse) | ||
1993 | { | ||
1994 | return 0; | ||
1995 | } | ||
1996 | if (accessor->buffer_view == NULL) | ||
1997 | { | ||
1998 | memset(out, 0, element_size * sizeof(cgltf_float)); | ||
1999 | return 1; | ||
2000 | } | ||
2001 | if (accessor->buffer_view->buffer->data == NULL) | ||
2002 | { | ||
2003 | return 0; | ||
2004 | } | ||
2005 | cgltf_size offset = accessor->offset + accessor->buffer_view->offset; | ||
2006 | const uint8_t* element = (const uint8_t*) accessor->buffer_view->buffer->data; | ||
2007 | element += offset + accessor->stride * index; | ||
2008 | return cgltf_element_read_float(element, accessor->type, accessor->component_type, accessor->normalized, out, element_size); | ||
2009 | } | ||
2010 | |||
2011 | cgltf_size cgltf_accessor_unpack_floats(const cgltf_accessor* accessor, cgltf_float* out, cgltf_size float_count) | ||
2012 | { | ||
2013 | cgltf_size floats_per_element = cgltf_num_components(accessor->type); | ||
2014 | cgltf_size available_floats = accessor->count * floats_per_element; | ||
2015 | if (out == NULL) | ||
2016 | { | ||
2017 | return available_floats; | ||
2018 | } | ||
2019 | |||
2020 | float_count = available_floats < float_count ? available_floats : float_count; | ||
2021 | cgltf_size element_count = float_count / floats_per_element; | ||
2022 | |||
2023 | // First pass: convert each element in the base accessor. | ||
2024 | cgltf_float* dest = out; | ||
2025 | cgltf_accessor dense = *accessor; | ||
2026 | dense.is_sparse = 0; | ||
2027 | for (cgltf_size index = 0; index < element_count; index++, dest += floats_per_element) | ||
2028 | { | ||
2029 | if (!cgltf_accessor_read_float(&dense, index, dest, floats_per_element)) | ||
2030 | { | ||
2031 | return 0; | ||
2032 | } | ||
2033 | } | ||
2034 | |||
2035 | // Second pass: write out each element in the sparse accessor. | ||
2036 | if (accessor->is_sparse) | ||
2037 | { | ||
2038 | const cgltf_accessor_sparse* sparse = &dense.sparse; | ||
2039 | |||
2040 | if (sparse->indices_buffer_view->buffer->data == NULL || sparse->values_buffer_view->buffer->data == NULL) | ||
2041 | { | ||
2042 | return 0; | ||
2043 | } | ||
2044 | |||
2045 | const uint8_t* index_data = (const uint8_t*) sparse->indices_buffer_view->buffer->data; | ||
2046 | index_data += sparse->indices_byte_offset + sparse->indices_buffer_view->offset; | ||
2047 | cgltf_size index_stride = cgltf_component_size(sparse->indices_component_type); | ||
2048 | const uint8_t* reader_head = (const uint8_t*) sparse->values_buffer_view->buffer->data; | ||
2049 | reader_head += sparse->values_byte_offset + sparse->values_buffer_view->offset; | ||
2050 | for (cgltf_size reader_index = 0; reader_index < sparse->count; reader_index++, index_data += index_stride) | ||
2051 | { | ||
2052 | size_t writer_index = cgltf_component_read_index(index_data, sparse->indices_component_type); | ||
2053 | float* writer_head = out + writer_index * floats_per_element; | ||
2054 | |||
2055 | if (!cgltf_element_read_float(reader_head, dense.type, dense.component_type, dense.normalized, writer_head, floats_per_element)) | ||
2056 | { | ||
2057 | return 0; | ||
2058 | } | ||
2059 | |||
2060 | reader_head += dense.stride; | ||
2061 | } | ||
2062 | } | ||
2063 | |||
2064 | return element_count * floats_per_element; | ||
2065 | } | ||
2066 | |||
2067 | static cgltf_uint cgltf_component_read_uint(const void* in, cgltf_component_type component_type) | ||
2068 | { | ||
2069 | switch (component_type) | ||
2070 | { | ||
2071 | case cgltf_component_type_r_8: | ||
2072 | return *((const int8_t*) in); | ||
2073 | |||
2074 | case cgltf_component_type_r_8u: | ||
2075 | return *((const uint8_t*) in); | ||
2076 | |||
2077 | case cgltf_component_type_r_16: | ||
2078 | return *((const int16_t*) in); | ||
2079 | |||
2080 | case cgltf_component_type_r_16u: | ||
2081 | return *((const uint16_t*) in); | ||
2082 | |||
2083 | case cgltf_component_type_r_32u: | ||
2084 | return *((const uint32_t*) in); | ||
2085 | |||
2086 | default: | ||
2087 | return 0; | ||
2088 | } | ||
2089 | } | ||
2090 | |||
2091 | static cgltf_bool cgltf_element_read_uint(const uint8_t* element, cgltf_type type, cgltf_component_type component_type, cgltf_uint* out, cgltf_size element_size) | ||
2092 | { | ||
2093 | cgltf_size num_components = cgltf_num_components(type); | ||
2094 | |||
2095 | if (element_size < num_components) | ||
2096 | { | ||
2097 | return 0; | ||
2098 | } | ||
2099 | |||
2100 | // Reading integer matrices is not a valid use case | ||
2101 | if (type == cgltf_type_mat2 || type == cgltf_type_mat3 || type == cgltf_type_mat4) | ||
2102 | { | ||
2103 | return 0; | ||
2104 | } | ||
2105 | |||
2106 | cgltf_size component_size = cgltf_component_size(component_type); | ||
2107 | |||
2108 | for (cgltf_size i = 0; i < num_components; ++i) | ||
2109 | { | ||
2110 | out[i] = cgltf_component_read_uint(element + component_size * i, component_type); | ||
2111 | } | ||
2112 | return 1; | ||
2113 | } | ||
2114 | |||
2115 | cgltf_bool cgltf_accessor_read_uint(const cgltf_accessor* accessor, cgltf_size index, cgltf_uint* out, cgltf_size element_size) | ||
2116 | { | ||
2117 | if (accessor->is_sparse) | ||
2118 | { | ||
2119 | return 0; | ||
2120 | } | ||
2121 | if (accessor->buffer_view == NULL) | ||
2122 | { | ||
2123 | memset(out, 0, element_size * sizeof( cgltf_uint )); | ||
2124 | return 1; | ||
2125 | } | ||
2126 | if (accessor->buffer_view->buffer->data == NULL) | ||
2127 | { | ||
2128 | return 0; | ||
2129 | } | ||
2130 | cgltf_size offset = accessor->offset + accessor->buffer_view->offset; | ||
2131 | const uint8_t* element = (const uint8_t*) accessor->buffer_view->buffer->data; | ||
2132 | element += offset + accessor->stride * index; | ||
2133 | return cgltf_element_read_uint(element, accessor->type, accessor->component_type, out, element_size); | ||
2134 | } | ||
2135 | |||
2136 | cgltf_size cgltf_accessor_read_index(const cgltf_accessor* accessor, cgltf_size index) | ||
2137 | { | ||
2138 | if (accessor->is_sparse) | ||
2139 | { | ||
2140 | return 0; // This is an error case, but we can't communicate the error with existing interface. | ||
2141 | } | ||
2142 | if (accessor->buffer_view == NULL) | ||
2143 | { | ||
2144 | return 0; | ||
2145 | } | ||
2146 | if (accessor->buffer_view->buffer->data == NULL) | ||
2147 | { | ||
2148 | return 0; // This is an error case, but we can't communicate the error with existing interface. | ||
2149 | } | ||
2150 | |||
2151 | cgltf_size offset = accessor->offset + accessor->buffer_view->offset; | ||
2152 | const uint8_t* element = (const uint8_t*) accessor->buffer_view->buffer->data; | ||
2153 | element += offset + accessor->stride * index; | ||
2154 | return cgltf_component_read_index(element, accessor->component_type); | ||
2155 | } | ||
2156 | |||
2157 | #define CGLTF_ERROR_JSON -1 | ||
2158 | #define CGLTF_ERROR_NOMEM -2 | ||
2159 | #define CGLTF_ERROR_LEGACY -3 | ||
2160 | |||
2161 | #define CGLTF_CHECK_TOKTYPE(tok_, type_) if ((tok_).type != (type_)) { return CGLTF_ERROR_JSON; } | ||
2162 | #define CGLTF_CHECK_KEY(tok_) if ((tok_).type != JSMN_STRING || (tok_).size == 0) { return CGLTF_ERROR_JSON; } /* checking size for 0 verifies that a value follows the key */ | ||
2163 | |||
2164 | #define CGLTF_PTRINDEX(type, idx) (type*)((cgltf_size)idx + 1) | ||
2165 | #define CGLTF_PTRFIXUP(var, data, size) if (var) { if ((cgltf_size)var > size) { return CGLTF_ERROR_JSON; } var = &data[(cgltf_size)var-1]; } | ||
2166 | #define CGLTF_PTRFIXUP_REQ(var, data, size) if (!var || (cgltf_size)var > size) { return CGLTF_ERROR_JSON; } var = &data[(cgltf_size)var-1]; | ||
2167 | |||
2168 | static int cgltf_json_strcmp(jsmntok_t const* tok, const uint8_t* json_chunk, const char* str) | ||
2169 | { | ||
2170 | CGLTF_CHECK_TOKTYPE(*tok, JSMN_STRING); | ||
2171 | size_t const str_len = strlen(str); | ||
2172 | size_t const name_length = tok->end - tok->start; | ||
2173 | return (str_len == name_length) ? strncmp((const char*)json_chunk + tok->start, str, str_len) : 128; | ||
2174 | } | ||
2175 | |||
2176 | static int cgltf_json_to_int(jsmntok_t const* tok, const uint8_t* json_chunk) | ||
2177 | { | ||
2178 | CGLTF_CHECK_TOKTYPE(*tok, JSMN_PRIMITIVE); | ||
2179 | char tmp[128]; | ||
2180 | int size = (cgltf_size)(tok->end - tok->start) < sizeof(tmp) ? tok->end - tok->start : (int)(sizeof(tmp) - 1); | ||
2181 | strncpy(tmp, (const char*)json_chunk + tok->start, size); | ||
2182 | tmp[size] = 0; | ||
2183 | return CGLTF_ATOI(tmp); | ||
2184 | } | ||
2185 | |||
2186 | static cgltf_float cgltf_json_to_float(jsmntok_t const* tok, const uint8_t* json_chunk) | ||
2187 | { | ||
2188 | CGLTF_CHECK_TOKTYPE(*tok, JSMN_PRIMITIVE); | ||
2189 | char tmp[128]; | ||
2190 | int size = (cgltf_size)(tok->end - tok->start) < sizeof(tmp) ? tok->end - tok->start : (int)(sizeof(tmp) - 1); | ||
2191 | strncpy(tmp, (const char*)json_chunk + tok->start, size); | ||
2192 | tmp[size] = 0; | ||
2193 | return (cgltf_float)CGLTF_ATOF(tmp); | ||
2194 | } | ||
2195 | |||
2196 | static cgltf_bool cgltf_json_to_bool(jsmntok_t const* tok, const uint8_t* json_chunk) | ||
2197 | { | ||
2198 | int size = tok->end - tok->start; | ||
2199 | return size == 4 && memcmp(json_chunk + tok->start, "true", 4) == 0; | ||
2200 | } | ||
2201 | |||
2202 | static int cgltf_skip_json(jsmntok_t const* tokens, int i) | ||
2203 | { | ||
2204 | int end = i + 1; | ||
2205 | |||
2206 | while (i < end) | ||
2207 | { | ||
2208 | switch (tokens[i].type) | ||
2209 | { | ||
2210 | case JSMN_OBJECT: | ||
2211 | end += tokens[i].size * 2; | ||
2212 | break; | ||
2213 | |||
2214 | case JSMN_ARRAY: | ||
2215 | end += tokens[i].size; | ||
2216 | break; | ||
2217 | |||
2218 | case JSMN_PRIMITIVE: | ||
2219 | case JSMN_STRING: | ||
2220 | break; | ||
2221 | |||
2222 | default: | ||
2223 | return -1; | ||
2224 | } | ||
2225 | |||
2226 | i++; | ||
2227 | } | ||
2228 | |||
2229 | return i; | ||
2230 | } | ||
2231 | |||
2232 | static void cgltf_fill_float_array(float* out_array, int size, float value) | ||
2233 | { | ||
2234 | for (int j = 0; j < size; ++j) | ||
2235 | { | ||
2236 | out_array[j] = value; | ||
2237 | } | ||
2238 | } | ||
2239 | |||
2240 | static int cgltf_parse_json_float_array(jsmntok_t const* tokens, int i, const uint8_t* json_chunk, float* out_array, int size) | ||
2241 | { | ||
2242 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_ARRAY); | ||
2243 | if (tokens[i].size != size) | ||
2244 | { | ||
2245 | return CGLTF_ERROR_JSON; | ||
2246 | } | ||
2247 | ++i; | ||
2248 | for (int j = 0; j < size; ++j) | ||
2249 | { | ||
2250 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
2251 | out_array[j] = cgltf_json_to_float(tokens + i, json_chunk); | ||
2252 | ++i; | ||
2253 | } | ||
2254 | return i; | ||
2255 | } | ||
2256 | |||
2257 | static int cgltf_parse_json_string(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, char** out_string) | ||
2258 | { | ||
2259 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_STRING); | ||
2260 | if (*out_string) | ||
2261 | { | ||
2262 | return CGLTF_ERROR_JSON; | ||
2263 | } | ||
2264 | int size = tokens[i].end - tokens[i].start; | ||
2265 | char* result = (char*)options->memory.alloc(options->memory.user_data, size + 1); | ||
2266 | if (!result) | ||
2267 | { | ||
2268 | return CGLTF_ERROR_NOMEM; | ||
2269 | } | ||
2270 | strncpy(result, (const char*)json_chunk + tokens[i].start, size); | ||
2271 | result[size] = 0; | ||
2272 | *out_string = result; | ||
2273 | return i + 1; | ||
2274 | } | ||
2275 | |||
2276 | static int cgltf_parse_json_array(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, size_t element_size, void** out_array, cgltf_size* out_size) | ||
2277 | { | ||
2278 | (void)json_chunk; | ||
2279 | if (tokens[i].type != JSMN_ARRAY) | ||
2280 | { | ||
2281 | return tokens[i].type == JSMN_OBJECT ? CGLTF_ERROR_LEGACY : CGLTF_ERROR_JSON; | ||
2282 | } | ||
2283 | if (*out_array) | ||
2284 | { | ||
2285 | return CGLTF_ERROR_JSON; | ||
2286 | } | ||
2287 | int size = tokens[i].size; | ||
2288 | void* result = cgltf_calloc(options, element_size, size); | ||
2289 | if (!result) | ||
2290 | { | ||
2291 | return CGLTF_ERROR_NOMEM; | ||
2292 | } | ||
2293 | *out_array = result; | ||
2294 | *out_size = size; | ||
2295 | return i + 1; | ||
2296 | } | ||
2297 | |||
2298 | static int cgltf_parse_json_string_array(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, char*** out_array, cgltf_size* out_size) | ||
2299 | { | ||
2300 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_ARRAY); | ||
2301 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(char*), (void**)out_array, out_size); | ||
2302 | if (i < 0) | ||
2303 | { | ||
2304 | return i; | ||
2305 | } | ||
2306 | |||
2307 | for (cgltf_size j = 0; j < *out_size; ++j) | ||
2308 | { | ||
2309 | i = cgltf_parse_json_string(options, tokens, i, json_chunk, j + (*out_array)); | ||
2310 | if (i < 0) | ||
2311 | { | ||
2312 | return i; | ||
2313 | } | ||
2314 | } | ||
2315 | return i; | ||
2316 | } | ||
2317 | |||
2318 | static void cgltf_parse_attribute_type(const char* name, cgltf_attribute_type* out_type, int* out_index) | ||
2319 | { | ||
2320 | const char* us = strchr(name, '_'); | ||
2321 | size_t len = us ? (size_t)(us - name) : strlen(name); | ||
2322 | |||
2323 | if (len == 8 && strncmp(name, "POSITION", 8) == 0) | ||
2324 | { | ||
2325 | *out_type = cgltf_attribute_type_position; | ||
2326 | } | ||
2327 | else if (len == 6 && strncmp(name, "NORMAL", 6) == 0) | ||
2328 | { | ||
2329 | *out_type = cgltf_attribute_type_normal; | ||
2330 | } | ||
2331 | else if (len == 7 && strncmp(name, "TANGENT", 7) == 0) | ||
2332 | { | ||
2333 | *out_type = cgltf_attribute_type_tangent; | ||
2334 | } | ||
2335 | else if (len == 8 && strncmp(name, "TEXCOORD", 8) == 0) | ||
2336 | { | ||
2337 | *out_type = cgltf_attribute_type_texcoord; | ||
2338 | } | ||
2339 | else if (len == 5 && strncmp(name, "COLOR", 5) == 0) | ||
2340 | { | ||
2341 | *out_type = cgltf_attribute_type_color; | ||
2342 | } | ||
2343 | else if (len == 6 && strncmp(name, "JOINTS", 6) == 0) | ||
2344 | { | ||
2345 | *out_type = cgltf_attribute_type_joints; | ||
2346 | } | ||
2347 | else if (len == 7 && strncmp(name, "WEIGHTS", 7) == 0) | ||
2348 | { | ||
2349 | *out_type = cgltf_attribute_type_weights; | ||
2350 | } | ||
2351 | else | ||
2352 | { | ||
2353 | *out_type = cgltf_attribute_type_invalid; | ||
2354 | } | ||
2355 | |||
2356 | if (us && *out_type != cgltf_attribute_type_invalid) | ||
2357 | { | ||
2358 | *out_index = CGLTF_ATOI(us + 1); | ||
2359 | } | ||
2360 | } | ||
2361 | |||
2362 | static int cgltf_parse_json_attribute_list(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_attribute** out_attributes, cgltf_size* out_attributes_count) | ||
2363 | { | ||
2364 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2365 | |||
2366 | if (*out_attributes) | ||
2367 | { | ||
2368 | return CGLTF_ERROR_JSON; | ||
2369 | } | ||
2370 | |||
2371 | *out_attributes_count = tokens[i].size; | ||
2372 | *out_attributes = (cgltf_attribute*)cgltf_calloc(options, sizeof(cgltf_attribute), *out_attributes_count); | ||
2373 | ++i; | ||
2374 | |||
2375 | if (!*out_attributes) | ||
2376 | { | ||
2377 | return CGLTF_ERROR_NOMEM; | ||
2378 | } | ||
2379 | |||
2380 | for (cgltf_size j = 0; j < *out_attributes_count; ++j) | ||
2381 | { | ||
2382 | CGLTF_CHECK_KEY(tokens[i]); | ||
2383 | |||
2384 | i = cgltf_parse_json_string(options, tokens, i, json_chunk, &(*out_attributes)[j].name); | ||
2385 | if (i < 0) | ||
2386 | { | ||
2387 | return CGLTF_ERROR_JSON; | ||
2388 | } | ||
2389 | |||
2390 | cgltf_parse_attribute_type((*out_attributes)[j].name, &(*out_attributes)[j].type, &(*out_attributes)[j].index); | ||
2391 | |||
2392 | (*out_attributes)[j].data = CGLTF_PTRINDEX(cgltf_accessor, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2393 | ++i; | ||
2394 | } | ||
2395 | |||
2396 | return i; | ||
2397 | } | ||
2398 | |||
2399 | static int cgltf_parse_json_extras(jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_extras* out_extras) | ||
2400 | { | ||
2401 | (void)json_chunk; | ||
2402 | out_extras->start_offset = tokens[i].start; | ||
2403 | out_extras->end_offset = tokens[i].end; | ||
2404 | i = cgltf_skip_json(tokens, i); | ||
2405 | return i; | ||
2406 | } | ||
2407 | |||
2408 | static int cgltf_parse_json_unprocessed_extension(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_extension* out_extension) | ||
2409 | { | ||
2410 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_STRING); | ||
2411 | CGLTF_CHECK_TOKTYPE(tokens[i+1], JSMN_OBJECT); | ||
2412 | if (out_extension->name) | ||
2413 | { | ||
2414 | return CGLTF_ERROR_JSON; | ||
2415 | } | ||
2416 | |||
2417 | cgltf_size name_length = tokens[i].end - tokens[i].start; | ||
2418 | out_extension->name = (char*)options->memory.alloc(options->memory.user_data, name_length + 1); | ||
2419 | if (!out_extension->name) | ||
2420 | { | ||
2421 | return CGLTF_ERROR_NOMEM; | ||
2422 | } | ||
2423 | strncpy(out_extension->name, (const char*)json_chunk + tokens[i].start, name_length); | ||
2424 | out_extension->name[name_length] = 0; | ||
2425 | i++; | ||
2426 | |||
2427 | size_t start = tokens[i].start; | ||
2428 | size_t size = tokens[i].end - start; | ||
2429 | out_extension->data = (char*)options->memory.alloc(options->memory.user_data, size + 1); | ||
2430 | if (!out_extension->data) | ||
2431 | { | ||
2432 | return CGLTF_ERROR_NOMEM; | ||
2433 | } | ||
2434 | strncpy(out_extension->data, (const char*)json_chunk + start, size); | ||
2435 | out_extension->data[size] = '\0'; | ||
2436 | |||
2437 | i = cgltf_skip_json(tokens, i); | ||
2438 | |||
2439 | return i; | ||
2440 | } | ||
2441 | |||
2442 | static int cgltf_parse_json_unprocessed_extensions(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_size* out_extensions_count, cgltf_extension** out_extensions) | ||
2443 | { | ||
2444 | ++i; | ||
2445 | |||
2446 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2447 | if(*out_extensions) | ||
2448 | { | ||
2449 | return CGLTF_ERROR_JSON; | ||
2450 | } | ||
2451 | |||
2452 | int extensions_size = tokens[i].size; | ||
2453 | *out_extensions_count = 0; | ||
2454 | *out_extensions = (cgltf_extension*)cgltf_calloc(options, sizeof(cgltf_extension), extensions_size); | ||
2455 | |||
2456 | if (!*out_extensions) | ||
2457 | { | ||
2458 | return CGLTF_ERROR_NOMEM; | ||
2459 | } | ||
2460 | |||
2461 | ++i; | ||
2462 | |||
2463 | for (int j = 0; j < extensions_size; ++j) | ||
2464 | { | ||
2465 | CGLTF_CHECK_KEY(tokens[i]); | ||
2466 | |||
2467 | cgltf_size extension_index = (*out_extensions_count)++; | ||
2468 | cgltf_extension* extension = &((*out_extensions)[extension_index]); | ||
2469 | i = cgltf_parse_json_unprocessed_extension(options, tokens, i, json_chunk, extension); | ||
2470 | |||
2471 | if (i < 0) | ||
2472 | { | ||
2473 | return i; | ||
2474 | } | ||
2475 | } | ||
2476 | return i; | ||
2477 | } | ||
2478 | |||
2479 | static int cgltf_parse_json_draco_mesh_compression(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_draco_mesh_compression* out_draco_mesh_compression) | ||
2480 | { | ||
2481 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2482 | |||
2483 | int size = tokens[i].size; | ||
2484 | ++i; | ||
2485 | |||
2486 | for (int j = 0; j < size; ++j) | ||
2487 | { | ||
2488 | CGLTF_CHECK_KEY(tokens[i]); | ||
2489 | |||
2490 | if (cgltf_json_strcmp(tokens + i, json_chunk, "attributes") == 0) | ||
2491 | { | ||
2492 | i = cgltf_parse_json_attribute_list(options, tokens, i + 1, json_chunk, &out_draco_mesh_compression->attributes, &out_draco_mesh_compression->attributes_count); | ||
2493 | } | ||
2494 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "bufferView") == 0) | ||
2495 | { | ||
2496 | ++i; | ||
2497 | out_draco_mesh_compression->buffer_view = CGLTF_PTRINDEX(cgltf_buffer_view, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2498 | ++i; | ||
2499 | } | ||
2500 | } | ||
2501 | |||
2502 | return i; | ||
2503 | } | ||
2504 | |||
2505 | static int cgltf_parse_json_primitive(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_primitive* out_prim) | ||
2506 | { | ||
2507 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2508 | |||
2509 | out_prim->type = cgltf_primitive_type_triangles; | ||
2510 | |||
2511 | int size = tokens[i].size; | ||
2512 | ++i; | ||
2513 | |||
2514 | for (int j = 0; j < size; ++j) | ||
2515 | { | ||
2516 | CGLTF_CHECK_KEY(tokens[i]); | ||
2517 | |||
2518 | if (cgltf_json_strcmp(tokens+i, json_chunk, "mode") == 0) | ||
2519 | { | ||
2520 | ++i; | ||
2521 | out_prim->type | ||
2522 | = (cgltf_primitive_type) | ||
2523 | cgltf_json_to_int(tokens+i, json_chunk); | ||
2524 | ++i; | ||
2525 | } | ||
2526 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "indices") == 0) | ||
2527 | { | ||
2528 | ++i; | ||
2529 | out_prim->indices = CGLTF_PTRINDEX(cgltf_accessor, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2530 | ++i; | ||
2531 | } | ||
2532 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "material") == 0) | ||
2533 | { | ||
2534 | ++i; | ||
2535 | out_prim->material = CGLTF_PTRINDEX(cgltf_material, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2536 | ++i; | ||
2537 | } | ||
2538 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "attributes") == 0) | ||
2539 | { | ||
2540 | i = cgltf_parse_json_attribute_list(options, tokens, i + 1, json_chunk, &out_prim->attributes, &out_prim->attributes_count); | ||
2541 | } | ||
2542 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "targets") == 0) | ||
2543 | { | ||
2544 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_morph_target), (void**)&out_prim->targets, &out_prim->targets_count); | ||
2545 | if (i < 0) | ||
2546 | { | ||
2547 | return i; | ||
2548 | } | ||
2549 | |||
2550 | for (cgltf_size k = 0; k < out_prim->targets_count; ++k) | ||
2551 | { | ||
2552 | i = cgltf_parse_json_attribute_list(options, tokens, i, json_chunk, &out_prim->targets[k].attributes, &out_prim->targets[k].attributes_count); | ||
2553 | if (i < 0) | ||
2554 | { | ||
2555 | return i; | ||
2556 | } | ||
2557 | } | ||
2558 | } | ||
2559 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
2560 | { | ||
2561 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_prim->extras); | ||
2562 | } | ||
2563 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
2564 | { | ||
2565 | ++i; | ||
2566 | |||
2567 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2568 | if(out_prim->extensions) | ||
2569 | { | ||
2570 | return CGLTF_ERROR_JSON; | ||
2571 | } | ||
2572 | |||
2573 | int extensions_size = tokens[i].size; | ||
2574 | out_prim->extensions_count = 0; | ||
2575 | out_prim->extensions = (cgltf_extension*)cgltf_calloc(options, sizeof(cgltf_extension), extensions_size); | ||
2576 | |||
2577 | if (!out_prim->extensions) | ||
2578 | { | ||
2579 | return CGLTF_ERROR_NOMEM; | ||
2580 | } | ||
2581 | |||
2582 | ++i; | ||
2583 | for (int k = 0; k < extensions_size; ++k) | ||
2584 | { | ||
2585 | CGLTF_CHECK_KEY(tokens[i]); | ||
2586 | |||
2587 | if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_draco_mesh_compression") == 0) | ||
2588 | { | ||
2589 | out_prim->has_draco_mesh_compression = 1; | ||
2590 | i = cgltf_parse_json_draco_mesh_compression(options, tokens, i + 1, json_chunk, &out_prim->draco_mesh_compression); | ||
2591 | } | ||
2592 | else | ||
2593 | { | ||
2594 | i = cgltf_parse_json_unprocessed_extension(options, tokens, i, json_chunk, &(out_prim->extensions[out_prim->extensions_count++])); | ||
2595 | } | ||
2596 | |||
2597 | if (i < 0) | ||
2598 | { | ||
2599 | return i; | ||
2600 | } | ||
2601 | } | ||
2602 | } | ||
2603 | else | ||
2604 | { | ||
2605 | i = cgltf_skip_json(tokens, i+1); | ||
2606 | } | ||
2607 | |||
2608 | if (i < 0) | ||
2609 | { | ||
2610 | return i; | ||
2611 | } | ||
2612 | } | ||
2613 | |||
2614 | return i; | ||
2615 | } | ||
2616 | |||
2617 | static int cgltf_parse_json_mesh(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_mesh* out_mesh) | ||
2618 | { | ||
2619 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2620 | |||
2621 | int size = tokens[i].size; | ||
2622 | ++i; | ||
2623 | |||
2624 | for (int j = 0; j < size; ++j) | ||
2625 | { | ||
2626 | CGLTF_CHECK_KEY(tokens[i]); | ||
2627 | |||
2628 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
2629 | { | ||
2630 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_mesh->name); | ||
2631 | } | ||
2632 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "primitives") == 0) | ||
2633 | { | ||
2634 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_primitive), (void**)&out_mesh->primitives, &out_mesh->primitives_count); | ||
2635 | if (i < 0) | ||
2636 | { | ||
2637 | return i; | ||
2638 | } | ||
2639 | |||
2640 | for (cgltf_size prim_index = 0; prim_index < out_mesh->primitives_count; ++prim_index) | ||
2641 | { | ||
2642 | i = cgltf_parse_json_primitive(options, tokens, i, json_chunk, &out_mesh->primitives[prim_index]); | ||
2643 | if (i < 0) | ||
2644 | { | ||
2645 | return i; | ||
2646 | } | ||
2647 | } | ||
2648 | } | ||
2649 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "weights") == 0) | ||
2650 | { | ||
2651 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_float), (void**)&out_mesh->weights, &out_mesh->weights_count); | ||
2652 | if (i < 0) | ||
2653 | { | ||
2654 | return i; | ||
2655 | } | ||
2656 | |||
2657 | i = cgltf_parse_json_float_array(tokens, i - 1, json_chunk, out_mesh->weights, (int)out_mesh->weights_count); | ||
2658 | } | ||
2659 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
2660 | { | ||
2661 | ++i; | ||
2662 | |||
2663 | out_mesh->extras.start_offset = tokens[i].start; | ||
2664 | out_mesh->extras.end_offset = tokens[i].end; | ||
2665 | |||
2666 | if (tokens[i].type == JSMN_OBJECT) | ||
2667 | { | ||
2668 | int extras_size = tokens[i].size; | ||
2669 | ++i; | ||
2670 | |||
2671 | for (int k = 0; k < extras_size; ++k) | ||
2672 | { | ||
2673 | CGLTF_CHECK_KEY(tokens[i]); | ||
2674 | |||
2675 | if (cgltf_json_strcmp(tokens+i, json_chunk, "targetNames") == 0) | ||
2676 | { | ||
2677 | i = cgltf_parse_json_string_array(options, tokens, i + 1, json_chunk, &out_mesh->target_names, &out_mesh->target_names_count); | ||
2678 | } | ||
2679 | else | ||
2680 | { | ||
2681 | i = cgltf_skip_json(tokens, i+1); | ||
2682 | } | ||
2683 | |||
2684 | if (i < 0) | ||
2685 | { | ||
2686 | return i; | ||
2687 | } | ||
2688 | } | ||
2689 | } | ||
2690 | else | ||
2691 | { | ||
2692 | i = cgltf_skip_json(tokens, i); | ||
2693 | } | ||
2694 | } | ||
2695 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
2696 | { | ||
2697 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_mesh->extensions_count, &out_mesh->extensions); | ||
2698 | } | ||
2699 | else | ||
2700 | { | ||
2701 | i = cgltf_skip_json(tokens, i+1); | ||
2702 | } | ||
2703 | |||
2704 | if (i < 0) | ||
2705 | { | ||
2706 | return i; | ||
2707 | } | ||
2708 | } | ||
2709 | |||
2710 | return i; | ||
2711 | } | ||
2712 | |||
2713 | static int cgltf_parse_json_meshes(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
2714 | { | ||
2715 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_mesh), (void**)&out_data->meshes, &out_data->meshes_count); | ||
2716 | if (i < 0) | ||
2717 | { | ||
2718 | return i; | ||
2719 | } | ||
2720 | |||
2721 | for (cgltf_size j = 0; j < out_data->meshes_count; ++j) | ||
2722 | { | ||
2723 | i = cgltf_parse_json_mesh(options, tokens, i, json_chunk, &out_data->meshes[j]); | ||
2724 | if (i < 0) | ||
2725 | { | ||
2726 | return i; | ||
2727 | } | ||
2728 | } | ||
2729 | return i; | ||
2730 | } | ||
2731 | |||
2732 | static cgltf_component_type cgltf_json_to_component_type(jsmntok_t const* tok, const uint8_t* json_chunk) | ||
2733 | { | ||
2734 | int type = cgltf_json_to_int(tok, json_chunk); | ||
2735 | |||
2736 | switch (type) | ||
2737 | { | ||
2738 | case 5120: | ||
2739 | return cgltf_component_type_r_8; | ||
2740 | case 5121: | ||
2741 | return cgltf_component_type_r_8u; | ||
2742 | case 5122: | ||
2743 | return cgltf_component_type_r_16; | ||
2744 | case 5123: | ||
2745 | return cgltf_component_type_r_16u; | ||
2746 | case 5125: | ||
2747 | return cgltf_component_type_r_32u; | ||
2748 | case 5126: | ||
2749 | return cgltf_component_type_r_32f; | ||
2750 | default: | ||
2751 | return cgltf_component_type_invalid; | ||
2752 | } | ||
2753 | } | ||
2754 | |||
2755 | static int cgltf_parse_json_accessor_sparse(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_accessor_sparse* out_sparse) | ||
2756 | { | ||
2757 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2758 | |||
2759 | int size = tokens[i].size; | ||
2760 | ++i; | ||
2761 | |||
2762 | for (int j = 0; j < size; ++j) | ||
2763 | { | ||
2764 | CGLTF_CHECK_KEY(tokens[i]); | ||
2765 | |||
2766 | if (cgltf_json_strcmp(tokens+i, json_chunk, "count") == 0) | ||
2767 | { | ||
2768 | ++i; | ||
2769 | out_sparse->count = cgltf_json_to_int(tokens + i, json_chunk); | ||
2770 | ++i; | ||
2771 | } | ||
2772 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "indices") == 0) | ||
2773 | { | ||
2774 | ++i; | ||
2775 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2776 | |||
2777 | int indices_size = tokens[i].size; | ||
2778 | ++i; | ||
2779 | |||
2780 | for (int k = 0; k < indices_size; ++k) | ||
2781 | { | ||
2782 | CGLTF_CHECK_KEY(tokens[i]); | ||
2783 | |||
2784 | if (cgltf_json_strcmp(tokens+i, json_chunk, "bufferView") == 0) | ||
2785 | { | ||
2786 | ++i; | ||
2787 | out_sparse->indices_buffer_view = CGLTF_PTRINDEX(cgltf_buffer_view, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2788 | ++i; | ||
2789 | } | ||
2790 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "byteOffset") == 0) | ||
2791 | { | ||
2792 | ++i; | ||
2793 | out_sparse->indices_byte_offset = cgltf_json_to_int(tokens + i, json_chunk); | ||
2794 | ++i; | ||
2795 | } | ||
2796 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "componentType") == 0) | ||
2797 | { | ||
2798 | ++i; | ||
2799 | out_sparse->indices_component_type = cgltf_json_to_component_type(tokens + i, json_chunk); | ||
2800 | ++i; | ||
2801 | } | ||
2802 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
2803 | { | ||
2804 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_sparse->indices_extras); | ||
2805 | } | ||
2806 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
2807 | { | ||
2808 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_sparse->indices_extensions_count, &out_sparse->indices_extensions); | ||
2809 | } | ||
2810 | else | ||
2811 | { | ||
2812 | i = cgltf_skip_json(tokens, i+1); | ||
2813 | } | ||
2814 | |||
2815 | if (i < 0) | ||
2816 | { | ||
2817 | return i; | ||
2818 | } | ||
2819 | } | ||
2820 | } | ||
2821 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "values") == 0) | ||
2822 | { | ||
2823 | ++i; | ||
2824 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2825 | |||
2826 | int values_size = tokens[i].size; | ||
2827 | ++i; | ||
2828 | |||
2829 | for (int k = 0; k < values_size; ++k) | ||
2830 | { | ||
2831 | CGLTF_CHECK_KEY(tokens[i]); | ||
2832 | |||
2833 | if (cgltf_json_strcmp(tokens+i, json_chunk, "bufferView") == 0) | ||
2834 | { | ||
2835 | ++i; | ||
2836 | out_sparse->values_buffer_view = CGLTF_PTRINDEX(cgltf_buffer_view, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2837 | ++i; | ||
2838 | } | ||
2839 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "byteOffset") == 0) | ||
2840 | { | ||
2841 | ++i; | ||
2842 | out_sparse->values_byte_offset = cgltf_json_to_int(tokens + i, json_chunk); | ||
2843 | ++i; | ||
2844 | } | ||
2845 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
2846 | { | ||
2847 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_sparse->values_extras); | ||
2848 | } | ||
2849 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
2850 | { | ||
2851 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_sparse->values_extensions_count, &out_sparse->values_extensions); | ||
2852 | } | ||
2853 | else | ||
2854 | { | ||
2855 | i = cgltf_skip_json(tokens, i+1); | ||
2856 | } | ||
2857 | |||
2858 | if (i < 0) | ||
2859 | { | ||
2860 | return i; | ||
2861 | } | ||
2862 | } | ||
2863 | } | ||
2864 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
2865 | { | ||
2866 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_sparse->extras); | ||
2867 | } | ||
2868 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
2869 | { | ||
2870 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_sparse->extensions_count, &out_sparse->extensions); | ||
2871 | } | ||
2872 | else | ||
2873 | { | ||
2874 | i = cgltf_skip_json(tokens, i+1); | ||
2875 | } | ||
2876 | |||
2877 | if (i < 0) | ||
2878 | { | ||
2879 | return i; | ||
2880 | } | ||
2881 | } | ||
2882 | |||
2883 | return i; | ||
2884 | } | ||
2885 | |||
2886 | static int cgltf_parse_json_accessor(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_accessor* out_accessor) | ||
2887 | { | ||
2888 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
2889 | |||
2890 | int size = tokens[i].size; | ||
2891 | ++i; | ||
2892 | |||
2893 | for (int j = 0; j < size; ++j) | ||
2894 | { | ||
2895 | CGLTF_CHECK_KEY(tokens[i]); | ||
2896 | |||
2897 | if (cgltf_json_strcmp(tokens+i, json_chunk, "bufferView") == 0) | ||
2898 | { | ||
2899 | ++i; | ||
2900 | out_accessor->buffer_view = CGLTF_PTRINDEX(cgltf_buffer_view, cgltf_json_to_int(tokens + i, json_chunk)); | ||
2901 | ++i; | ||
2902 | } | ||
2903 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "byteOffset") == 0) | ||
2904 | { | ||
2905 | ++i; | ||
2906 | out_accessor->offset = | ||
2907 | cgltf_json_to_int(tokens+i, json_chunk); | ||
2908 | ++i; | ||
2909 | } | ||
2910 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "componentType") == 0) | ||
2911 | { | ||
2912 | ++i; | ||
2913 | out_accessor->component_type = cgltf_json_to_component_type(tokens + i, json_chunk); | ||
2914 | ++i; | ||
2915 | } | ||
2916 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "normalized") == 0) | ||
2917 | { | ||
2918 | ++i; | ||
2919 | out_accessor->normalized = cgltf_json_to_bool(tokens+i, json_chunk); | ||
2920 | ++i; | ||
2921 | } | ||
2922 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "count") == 0) | ||
2923 | { | ||
2924 | ++i; | ||
2925 | out_accessor->count = | ||
2926 | cgltf_json_to_int(tokens+i, json_chunk); | ||
2927 | ++i; | ||
2928 | } | ||
2929 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "type") == 0) | ||
2930 | { | ||
2931 | ++i; | ||
2932 | if (cgltf_json_strcmp(tokens+i, json_chunk, "SCALAR") == 0) | ||
2933 | { | ||
2934 | out_accessor->type = cgltf_type_scalar; | ||
2935 | } | ||
2936 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "VEC2") == 0) | ||
2937 | { | ||
2938 | out_accessor->type = cgltf_type_vec2; | ||
2939 | } | ||
2940 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "VEC3") == 0) | ||
2941 | { | ||
2942 | out_accessor->type = cgltf_type_vec3; | ||
2943 | } | ||
2944 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "VEC4") == 0) | ||
2945 | { | ||
2946 | out_accessor->type = cgltf_type_vec4; | ||
2947 | } | ||
2948 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "MAT2") == 0) | ||
2949 | { | ||
2950 | out_accessor->type = cgltf_type_mat2; | ||
2951 | } | ||
2952 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "MAT3") == 0) | ||
2953 | { | ||
2954 | out_accessor->type = cgltf_type_mat3; | ||
2955 | } | ||
2956 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "MAT4") == 0) | ||
2957 | { | ||
2958 | out_accessor->type = cgltf_type_mat4; | ||
2959 | } | ||
2960 | ++i; | ||
2961 | } | ||
2962 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "min") == 0) | ||
2963 | { | ||
2964 | ++i; | ||
2965 | out_accessor->has_min = 1; | ||
2966 | // note: we can't parse the precise number of elements since type may not have been computed yet | ||
2967 | int min_size = tokens[i].size > 16 ? 16 : tokens[i].size; | ||
2968 | i = cgltf_parse_json_float_array(tokens, i, json_chunk, out_accessor->min, min_size); | ||
2969 | } | ||
2970 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "max") == 0) | ||
2971 | { | ||
2972 | ++i; | ||
2973 | out_accessor->has_max = 1; | ||
2974 | // note: we can't parse the precise number of elements since type may not have been computed yet | ||
2975 | int max_size = tokens[i].size > 16 ? 16 : tokens[i].size; | ||
2976 | i = cgltf_parse_json_float_array(tokens, i, json_chunk, out_accessor->max, max_size); | ||
2977 | } | ||
2978 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "sparse") == 0) | ||
2979 | { | ||
2980 | out_accessor->is_sparse = 1; | ||
2981 | i = cgltf_parse_json_accessor_sparse(options, tokens, i + 1, json_chunk, &out_accessor->sparse); | ||
2982 | } | ||
2983 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
2984 | { | ||
2985 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_accessor->extras); | ||
2986 | } | ||
2987 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
2988 | { | ||
2989 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_accessor->extensions_count, &out_accessor->extensions); | ||
2990 | } | ||
2991 | else | ||
2992 | { | ||
2993 | i = cgltf_skip_json(tokens, i+1); | ||
2994 | } | ||
2995 | |||
2996 | if (i < 0) | ||
2997 | { | ||
2998 | return i; | ||
2999 | } | ||
3000 | } | ||
3001 | |||
3002 | return i; | ||
3003 | } | ||
3004 | |||
3005 | static int cgltf_parse_json_texture_transform(jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_texture_transform* out_texture_transform) | ||
3006 | { | ||
3007 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3008 | |||
3009 | int size = tokens[i].size; | ||
3010 | ++i; | ||
3011 | |||
3012 | for (int j = 0; j < size; ++j) | ||
3013 | { | ||
3014 | CGLTF_CHECK_KEY(tokens[i]); | ||
3015 | |||
3016 | if (cgltf_json_strcmp(tokens + i, json_chunk, "offset") == 0) | ||
3017 | { | ||
3018 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_texture_transform->offset, 2); | ||
3019 | } | ||
3020 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "rotation") == 0) | ||
3021 | { | ||
3022 | ++i; | ||
3023 | out_texture_transform->rotation = cgltf_json_to_float(tokens + i, json_chunk); | ||
3024 | ++i; | ||
3025 | } | ||
3026 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "scale") == 0) | ||
3027 | { | ||
3028 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_texture_transform->scale, 2); | ||
3029 | } | ||
3030 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "texCoord") == 0) | ||
3031 | { | ||
3032 | ++i; | ||
3033 | out_texture_transform->texcoord = cgltf_json_to_int(tokens + i, json_chunk); | ||
3034 | ++i; | ||
3035 | } | ||
3036 | else | ||
3037 | { | ||
3038 | i = cgltf_skip_json(tokens, i + 1); | ||
3039 | } | ||
3040 | |||
3041 | if (i < 0) | ||
3042 | { | ||
3043 | return i; | ||
3044 | } | ||
3045 | } | ||
3046 | |||
3047 | return i; | ||
3048 | } | ||
3049 | |||
3050 | static int cgltf_parse_json_texture_view(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_texture_view* out_texture_view) | ||
3051 | { | ||
3052 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3053 | |||
3054 | out_texture_view->scale = 1.0f; | ||
3055 | cgltf_fill_float_array(out_texture_view->transform.scale, 2, 1.0f); | ||
3056 | |||
3057 | int size = tokens[i].size; | ||
3058 | ++i; | ||
3059 | |||
3060 | for (int j = 0; j < size; ++j) | ||
3061 | { | ||
3062 | CGLTF_CHECK_KEY(tokens[i]); | ||
3063 | |||
3064 | if (cgltf_json_strcmp(tokens + i, json_chunk, "index") == 0) | ||
3065 | { | ||
3066 | ++i; | ||
3067 | out_texture_view->texture = CGLTF_PTRINDEX(cgltf_texture, cgltf_json_to_int(tokens + i, json_chunk)); | ||
3068 | ++i; | ||
3069 | } | ||
3070 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "texCoord") == 0) | ||
3071 | { | ||
3072 | ++i; | ||
3073 | out_texture_view->texcoord = cgltf_json_to_int(tokens + i, json_chunk); | ||
3074 | ++i; | ||
3075 | } | ||
3076 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "scale") == 0) | ||
3077 | { | ||
3078 | ++i; | ||
3079 | out_texture_view->scale = cgltf_json_to_float(tokens + i, json_chunk); | ||
3080 | ++i; | ||
3081 | } | ||
3082 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "strength") == 0) | ||
3083 | { | ||
3084 | ++i; | ||
3085 | out_texture_view->scale = cgltf_json_to_float(tokens + i, json_chunk); | ||
3086 | ++i; | ||
3087 | } | ||
3088 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3089 | { | ||
3090 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_texture_view->extras); | ||
3091 | } | ||
3092 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3093 | { | ||
3094 | ++i; | ||
3095 | |||
3096 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3097 | if(out_texture_view->extensions) | ||
3098 | { | ||
3099 | return CGLTF_ERROR_JSON; | ||
3100 | } | ||
3101 | |||
3102 | int extensions_size = tokens[i].size; | ||
3103 | out_texture_view->extensions_count = 0; | ||
3104 | out_texture_view->extensions = (cgltf_extension*)cgltf_calloc(options, sizeof(cgltf_extension), extensions_size); | ||
3105 | |||
3106 | if (!out_texture_view->extensions) | ||
3107 | { | ||
3108 | return CGLTF_ERROR_NOMEM; | ||
3109 | } | ||
3110 | |||
3111 | ++i; | ||
3112 | |||
3113 | for (int k = 0; k < extensions_size; ++k) | ||
3114 | { | ||
3115 | CGLTF_CHECK_KEY(tokens[i]); | ||
3116 | |||
3117 | if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_texture_transform") == 0) | ||
3118 | { | ||
3119 | out_texture_view->has_transform = 1; | ||
3120 | i = cgltf_parse_json_texture_transform(tokens, i + 1, json_chunk, &out_texture_view->transform); | ||
3121 | } | ||
3122 | else | ||
3123 | { | ||
3124 | i = cgltf_parse_json_unprocessed_extension(options, tokens, i, json_chunk, &(out_texture_view->extensions[out_texture_view->extensions_count++])); | ||
3125 | } | ||
3126 | |||
3127 | if (i < 0) | ||
3128 | { | ||
3129 | return i; | ||
3130 | } | ||
3131 | } | ||
3132 | } | ||
3133 | else | ||
3134 | { | ||
3135 | i = cgltf_skip_json(tokens, i + 1); | ||
3136 | } | ||
3137 | |||
3138 | if (i < 0) | ||
3139 | { | ||
3140 | return i; | ||
3141 | } | ||
3142 | } | ||
3143 | |||
3144 | return i; | ||
3145 | } | ||
3146 | |||
3147 | static int cgltf_parse_json_pbr_metallic_roughness(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_pbr_metallic_roughness* out_pbr) | ||
3148 | { | ||
3149 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3150 | |||
3151 | int size = tokens[i].size; | ||
3152 | ++i; | ||
3153 | |||
3154 | for (int j = 0; j < size; ++j) | ||
3155 | { | ||
3156 | CGLTF_CHECK_KEY(tokens[i]); | ||
3157 | |||
3158 | if (cgltf_json_strcmp(tokens+i, json_chunk, "metallicFactor") == 0) | ||
3159 | { | ||
3160 | ++i; | ||
3161 | out_pbr->metallic_factor = | ||
3162 | cgltf_json_to_float(tokens + i, json_chunk); | ||
3163 | ++i; | ||
3164 | } | ||
3165 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "roughnessFactor") == 0) | ||
3166 | { | ||
3167 | ++i; | ||
3168 | out_pbr->roughness_factor = | ||
3169 | cgltf_json_to_float(tokens+i, json_chunk); | ||
3170 | ++i; | ||
3171 | } | ||
3172 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "baseColorFactor") == 0) | ||
3173 | { | ||
3174 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_pbr->base_color_factor, 4); | ||
3175 | } | ||
3176 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "baseColorTexture") == 0) | ||
3177 | { | ||
3178 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, | ||
3179 | &out_pbr->base_color_texture); | ||
3180 | } | ||
3181 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "metallicRoughnessTexture") == 0) | ||
3182 | { | ||
3183 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, | ||
3184 | &out_pbr->metallic_roughness_texture); | ||
3185 | } | ||
3186 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3187 | { | ||
3188 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_pbr->extras); | ||
3189 | } | ||
3190 | else | ||
3191 | { | ||
3192 | i = cgltf_skip_json(tokens, i+1); | ||
3193 | } | ||
3194 | |||
3195 | if (i < 0) | ||
3196 | { | ||
3197 | return i; | ||
3198 | } | ||
3199 | } | ||
3200 | |||
3201 | return i; | ||
3202 | } | ||
3203 | |||
3204 | static int cgltf_parse_json_pbr_specular_glossiness(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_pbr_specular_glossiness* out_pbr) | ||
3205 | { | ||
3206 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3207 | int size = tokens[i].size; | ||
3208 | ++i; | ||
3209 | |||
3210 | for (int j = 0; j < size; ++j) | ||
3211 | { | ||
3212 | CGLTF_CHECK_KEY(tokens[i]); | ||
3213 | |||
3214 | if (cgltf_json_strcmp(tokens+i, json_chunk, "diffuseFactor") == 0) | ||
3215 | { | ||
3216 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_pbr->diffuse_factor, 4); | ||
3217 | } | ||
3218 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "specularFactor") == 0) | ||
3219 | { | ||
3220 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_pbr->specular_factor, 3); | ||
3221 | } | ||
3222 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "glossinessFactor") == 0) | ||
3223 | { | ||
3224 | ++i; | ||
3225 | out_pbr->glossiness_factor = cgltf_json_to_float(tokens + i, json_chunk); | ||
3226 | ++i; | ||
3227 | } | ||
3228 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "diffuseTexture") == 0) | ||
3229 | { | ||
3230 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_pbr->diffuse_texture); | ||
3231 | } | ||
3232 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "specularGlossinessTexture") == 0) | ||
3233 | { | ||
3234 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_pbr->specular_glossiness_texture); | ||
3235 | } | ||
3236 | else | ||
3237 | { | ||
3238 | i = cgltf_skip_json(tokens, i+1); | ||
3239 | } | ||
3240 | |||
3241 | if (i < 0) | ||
3242 | { | ||
3243 | return i; | ||
3244 | } | ||
3245 | } | ||
3246 | |||
3247 | return i; | ||
3248 | } | ||
3249 | |||
3250 | static int cgltf_parse_json_clearcoat(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_clearcoat* out_clearcoat) | ||
3251 | { | ||
3252 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3253 | int size = tokens[i].size; | ||
3254 | ++i; | ||
3255 | |||
3256 | for (int j = 0; j < size; ++j) | ||
3257 | { | ||
3258 | CGLTF_CHECK_KEY(tokens[i]); | ||
3259 | |||
3260 | if (cgltf_json_strcmp(tokens+i, json_chunk, "clearcoatFactor") == 0) | ||
3261 | { | ||
3262 | ++i; | ||
3263 | out_clearcoat->clearcoat_factor = cgltf_json_to_float(tokens + i, json_chunk); | ||
3264 | ++i; | ||
3265 | } | ||
3266 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "clearcoatRoughnessFactor") == 0) | ||
3267 | { | ||
3268 | ++i; | ||
3269 | out_clearcoat->clearcoat_roughness_factor = cgltf_json_to_float(tokens + i, json_chunk); | ||
3270 | ++i; | ||
3271 | } | ||
3272 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "clearcoatTexture") == 0) | ||
3273 | { | ||
3274 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_clearcoat->clearcoat_texture); | ||
3275 | } | ||
3276 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "clearcoatRoughnessTexture") == 0) | ||
3277 | { | ||
3278 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_clearcoat->clearcoat_roughness_texture); | ||
3279 | } | ||
3280 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "clearcoatNormalTexture") == 0) | ||
3281 | { | ||
3282 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_clearcoat->clearcoat_normal_texture); | ||
3283 | } | ||
3284 | else | ||
3285 | { | ||
3286 | i = cgltf_skip_json(tokens, i+1); | ||
3287 | } | ||
3288 | |||
3289 | if (i < 0) | ||
3290 | { | ||
3291 | return i; | ||
3292 | } | ||
3293 | } | ||
3294 | |||
3295 | return i; | ||
3296 | } | ||
3297 | |||
3298 | static int cgltf_parse_json_ior(jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_ior* out_ior) | ||
3299 | { | ||
3300 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3301 | int size = tokens[i].size; | ||
3302 | ++i; | ||
3303 | |||
3304 | // Default values | ||
3305 | out_ior->ior = 1.5f; | ||
3306 | |||
3307 | for (int j = 0; j < size; ++j) | ||
3308 | { | ||
3309 | CGLTF_CHECK_KEY(tokens[i]); | ||
3310 | |||
3311 | if (cgltf_json_strcmp(tokens+i, json_chunk, "ior") == 0) | ||
3312 | { | ||
3313 | ++i; | ||
3314 | out_ior->ior = cgltf_json_to_float(tokens + i, json_chunk); | ||
3315 | ++i; | ||
3316 | } | ||
3317 | else | ||
3318 | { | ||
3319 | i = cgltf_skip_json(tokens, i+1); | ||
3320 | } | ||
3321 | |||
3322 | if (i < 0) | ||
3323 | { | ||
3324 | return i; | ||
3325 | } | ||
3326 | } | ||
3327 | |||
3328 | return i; | ||
3329 | } | ||
3330 | |||
3331 | static int cgltf_parse_json_specular(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_specular* out_specular) | ||
3332 | { | ||
3333 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3334 | int size = tokens[i].size; | ||
3335 | ++i; | ||
3336 | |||
3337 | // Default values | ||
3338 | out_specular->specular_factor = 1.0f; | ||
3339 | cgltf_fill_float_array(out_specular->specular_color_factor, 3, 1.0f); | ||
3340 | |||
3341 | for (int j = 0; j < size; ++j) | ||
3342 | { | ||
3343 | CGLTF_CHECK_KEY(tokens[i]); | ||
3344 | |||
3345 | if (cgltf_json_strcmp(tokens+i, json_chunk, "specularFactor") == 0) | ||
3346 | { | ||
3347 | ++i; | ||
3348 | out_specular->specular_factor = cgltf_json_to_float(tokens + i, json_chunk); | ||
3349 | ++i; | ||
3350 | } | ||
3351 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "specularColorFactor") == 0) | ||
3352 | { | ||
3353 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_specular->specular_color_factor, 3); | ||
3354 | } | ||
3355 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "specularTexture") == 0) | ||
3356 | { | ||
3357 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_specular->specular_texture); | ||
3358 | } | ||
3359 | else | ||
3360 | { | ||
3361 | i = cgltf_skip_json(tokens, i+1); | ||
3362 | } | ||
3363 | |||
3364 | if (i < 0) | ||
3365 | { | ||
3366 | return i; | ||
3367 | } | ||
3368 | } | ||
3369 | |||
3370 | return i; | ||
3371 | } | ||
3372 | |||
3373 | static int cgltf_parse_json_transmission(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_transmission* out_transmission) | ||
3374 | { | ||
3375 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3376 | int size = tokens[i].size; | ||
3377 | ++i; | ||
3378 | |||
3379 | for (int j = 0; j < size; ++j) | ||
3380 | { | ||
3381 | CGLTF_CHECK_KEY(tokens[i]); | ||
3382 | |||
3383 | if (cgltf_json_strcmp(tokens+i, json_chunk, "transmissionFactor") == 0) | ||
3384 | { | ||
3385 | ++i; | ||
3386 | out_transmission->transmission_factor = cgltf_json_to_float(tokens + i, json_chunk); | ||
3387 | ++i; | ||
3388 | } | ||
3389 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "transmissionTexture") == 0) | ||
3390 | { | ||
3391 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, &out_transmission->transmission_texture); | ||
3392 | } | ||
3393 | else | ||
3394 | { | ||
3395 | i = cgltf_skip_json(tokens, i+1); | ||
3396 | } | ||
3397 | |||
3398 | if (i < 0) | ||
3399 | { | ||
3400 | return i; | ||
3401 | } | ||
3402 | } | ||
3403 | |||
3404 | return i; | ||
3405 | } | ||
3406 | |||
3407 | static int cgltf_parse_json_image(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_image* out_image) | ||
3408 | { | ||
3409 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3410 | |||
3411 | int size = tokens[i].size; | ||
3412 | ++i; | ||
3413 | |||
3414 | for (int j = 0; j < size; ++j) | ||
3415 | { | ||
3416 | CGLTF_CHECK_KEY(tokens[i]); | ||
3417 | |||
3418 | if (cgltf_json_strcmp(tokens + i, json_chunk, "uri") == 0) | ||
3419 | { | ||
3420 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_image->uri); | ||
3421 | } | ||
3422 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "bufferView") == 0) | ||
3423 | { | ||
3424 | ++i; | ||
3425 | out_image->buffer_view = CGLTF_PTRINDEX(cgltf_buffer_view, cgltf_json_to_int(tokens + i, json_chunk)); | ||
3426 | ++i; | ||
3427 | } | ||
3428 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "mimeType") == 0) | ||
3429 | { | ||
3430 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_image->mime_type); | ||
3431 | } | ||
3432 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "name") == 0) | ||
3433 | { | ||
3434 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_image->name); | ||
3435 | } | ||
3436 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3437 | { | ||
3438 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_image->extras); | ||
3439 | } | ||
3440 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3441 | { | ||
3442 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_image->extensions_count, &out_image->extensions); | ||
3443 | } | ||
3444 | else | ||
3445 | { | ||
3446 | i = cgltf_skip_json(tokens, i + 1); | ||
3447 | } | ||
3448 | |||
3449 | if (i < 0) | ||
3450 | { | ||
3451 | return i; | ||
3452 | } | ||
3453 | } | ||
3454 | |||
3455 | return i; | ||
3456 | } | ||
3457 | |||
3458 | static int cgltf_parse_json_sampler(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_sampler* out_sampler) | ||
3459 | { | ||
3460 | (void)options; | ||
3461 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3462 | |||
3463 | out_sampler->wrap_s = 10497; | ||
3464 | out_sampler->wrap_t = 10497; | ||
3465 | |||
3466 | int size = tokens[i].size; | ||
3467 | ++i; | ||
3468 | |||
3469 | for (int j = 0; j < size; ++j) | ||
3470 | { | ||
3471 | CGLTF_CHECK_KEY(tokens[i]); | ||
3472 | |||
3473 | if (cgltf_json_strcmp(tokens + i, json_chunk, "magFilter") == 0) | ||
3474 | { | ||
3475 | ++i; | ||
3476 | out_sampler->mag_filter | ||
3477 | = cgltf_json_to_int(tokens + i, json_chunk); | ||
3478 | ++i; | ||
3479 | } | ||
3480 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "minFilter") == 0) | ||
3481 | { | ||
3482 | ++i; | ||
3483 | out_sampler->min_filter | ||
3484 | = cgltf_json_to_int(tokens + i, json_chunk); | ||
3485 | ++i; | ||
3486 | } | ||
3487 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "wrapS") == 0) | ||
3488 | { | ||
3489 | ++i; | ||
3490 | out_sampler->wrap_s | ||
3491 | = cgltf_json_to_int(tokens + i, json_chunk); | ||
3492 | ++i; | ||
3493 | } | ||
3494 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "wrapT") == 0) | ||
3495 | { | ||
3496 | ++i; | ||
3497 | out_sampler->wrap_t | ||
3498 | = cgltf_json_to_int(tokens + i, json_chunk); | ||
3499 | ++i; | ||
3500 | } | ||
3501 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3502 | { | ||
3503 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_sampler->extras); | ||
3504 | } | ||
3505 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3506 | { | ||
3507 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_sampler->extensions_count, &out_sampler->extensions); | ||
3508 | } | ||
3509 | else | ||
3510 | { | ||
3511 | i = cgltf_skip_json(tokens, i + 1); | ||
3512 | } | ||
3513 | |||
3514 | if (i < 0) | ||
3515 | { | ||
3516 | return i; | ||
3517 | } | ||
3518 | } | ||
3519 | |||
3520 | return i; | ||
3521 | } | ||
3522 | |||
3523 | static int cgltf_parse_json_texture(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_texture* out_texture) | ||
3524 | { | ||
3525 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3526 | |||
3527 | int size = tokens[i].size; | ||
3528 | ++i; | ||
3529 | |||
3530 | for (int j = 0; j < size; ++j) | ||
3531 | { | ||
3532 | CGLTF_CHECK_KEY(tokens[i]); | ||
3533 | |||
3534 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
3535 | { | ||
3536 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_texture->name); | ||
3537 | } | ||
3538 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "sampler") == 0) | ||
3539 | { | ||
3540 | ++i; | ||
3541 | out_texture->sampler = CGLTF_PTRINDEX(cgltf_sampler, cgltf_json_to_int(tokens + i, json_chunk)); | ||
3542 | ++i; | ||
3543 | } | ||
3544 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "source") == 0) | ||
3545 | { | ||
3546 | ++i; | ||
3547 | out_texture->image = CGLTF_PTRINDEX(cgltf_image, cgltf_json_to_int(tokens + i, json_chunk)); | ||
3548 | ++i; | ||
3549 | } | ||
3550 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3551 | { | ||
3552 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_texture->extras); | ||
3553 | } | ||
3554 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3555 | { | ||
3556 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_texture->extensions_count, &out_texture->extensions); | ||
3557 | } | ||
3558 | else | ||
3559 | { | ||
3560 | i = cgltf_skip_json(tokens, i + 1); | ||
3561 | } | ||
3562 | |||
3563 | if (i < 0) | ||
3564 | { | ||
3565 | return i; | ||
3566 | } | ||
3567 | } | ||
3568 | |||
3569 | return i; | ||
3570 | } | ||
3571 | |||
3572 | static int cgltf_parse_json_material(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_material* out_material) | ||
3573 | { | ||
3574 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3575 | |||
3576 | cgltf_fill_float_array(out_material->pbr_metallic_roughness.base_color_factor, 4, 1.0f); | ||
3577 | out_material->pbr_metallic_roughness.metallic_factor = 1.0f; | ||
3578 | out_material->pbr_metallic_roughness.roughness_factor = 1.0f; | ||
3579 | |||
3580 | cgltf_fill_float_array(out_material->pbr_specular_glossiness.diffuse_factor, 4, 1.0f); | ||
3581 | cgltf_fill_float_array(out_material->pbr_specular_glossiness.specular_factor, 3, 1.0f); | ||
3582 | out_material->pbr_specular_glossiness.glossiness_factor = 1.0f; | ||
3583 | |||
3584 | out_material->alpha_cutoff = 0.5f; | ||
3585 | |||
3586 | int size = tokens[i].size; | ||
3587 | ++i; | ||
3588 | |||
3589 | for (int j = 0; j < size; ++j) | ||
3590 | { | ||
3591 | CGLTF_CHECK_KEY(tokens[i]); | ||
3592 | |||
3593 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
3594 | { | ||
3595 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_material->name); | ||
3596 | } | ||
3597 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "pbrMetallicRoughness") == 0) | ||
3598 | { | ||
3599 | out_material->has_pbr_metallic_roughness = 1; | ||
3600 | i = cgltf_parse_json_pbr_metallic_roughness(options, tokens, i + 1, json_chunk, &out_material->pbr_metallic_roughness); | ||
3601 | } | ||
3602 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "emissiveFactor") == 0) | ||
3603 | { | ||
3604 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_material->emissive_factor, 3); | ||
3605 | } | ||
3606 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "normalTexture") == 0) | ||
3607 | { | ||
3608 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, | ||
3609 | &out_material->normal_texture); | ||
3610 | } | ||
3611 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "occlusionTexture") == 0) | ||
3612 | { | ||
3613 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, | ||
3614 | &out_material->occlusion_texture); | ||
3615 | } | ||
3616 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "emissiveTexture") == 0) | ||
3617 | { | ||
3618 | i = cgltf_parse_json_texture_view(options, tokens, i + 1, json_chunk, | ||
3619 | &out_material->emissive_texture); | ||
3620 | } | ||
3621 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "alphaMode") == 0) | ||
3622 | { | ||
3623 | ++i; | ||
3624 | if (cgltf_json_strcmp(tokens + i, json_chunk, "OPAQUE") == 0) | ||
3625 | { | ||
3626 | out_material->alpha_mode = cgltf_alpha_mode_opaque; | ||
3627 | } | ||
3628 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "MASK") == 0) | ||
3629 | { | ||
3630 | out_material->alpha_mode = cgltf_alpha_mode_mask; | ||
3631 | } | ||
3632 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "BLEND") == 0) | ||
3633 | { | ||
3634 | out_material->alpha_mode = cgltf_alpha_mode_blend; | ||
3635 | } | ||
3636 | ++i; | ||
3637 | } | ||
3638 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "alphaCutoff") == 0) | ||
3639 | { | ||
3640 | ++i; | ||
3641 | out_material->alpha_cutoff = cgltf_json_to_float(tokens + i, json_chunk); | ||
3642 | ++i; | ||
3643 | } | ||
3644 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "doubleSided") == 0) | ||
3645 | { | ||
3646 | ++i; | ||
3647 | out_material->double_sided = | ||
3648 | cgltf_json_to_bool(tokens + i, json_chunk); | ||
3649 | ++i; | ||
3650 | } | ||
3651 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3652 | { | ||
3653 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_material->extras); | ||
3654 | } | ||
3655 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3656 | { | ||
3657 | ++i; | ||
3658 | |||
3659 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3660 | if(out_material->extensions) | ||
3661 | { | ||
3662 | return CGLTF_ERROR_JSON; | ||
3663 | } | ||
3664 | |||
3665 | int extensions_size = tokens[i].size; | ||
3666 | ++i; | ||
3667 | out_material->extensions = (cgltf_extension*)cgltf_calloc(options, sizeof(cgltf_extension), extensions_size); | ||
3668 | out_material->extensions_count= 0; | ||
3669 | |||
3670 | if (!out_material->extensions) | ||
3671 | { | ||
3672 | return CGLTF_ERROR_NOMEM; | ||
3673 | } | ||
3674 | |||
3675 | for (int k = 0; k < extensions_size; ++k) | ||
3676 | { | ||
3677 | CGLTF_CHECK_KEY(tokens[i]); | ||
3678 | |||
3679 | if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_materials_pbrSpecularGlossiness") == 0) | ||
3680 | { | ||
3681 | out_material->has_pbr_specular_glossiness = 1; | ||
3682 | i = cgltf_parse_json_pbr_specular_glossiness(options, tokens, i + 1, json_chunk, &out_material->pbr_specular_glossiness); | ||
3683 | } | ||
3684 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_materials_unlit") == 0) | ||
3685 | { | ||
3686 | out_material->unlit = 1; | ||
3687 | i = cgltf_skip_json(tokens, i+1); | ||
3688 | } | ||
3689 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_materials_clearcoat") == 0) | ||
3690 | { | ||
3691 | out_material->has_clearcoat = 1; | ||
3692 | i = cgltf_parse_json_clearcoat(options, tokens, i + 1, json_chunk, &out_material->clearcoat); | ||
3693 | } | ||
3694 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_materials_ior") == 0) | ||
3695 | { | ||
3696 | out_material->has_ior = 1; | ||
3697 | i = cgltf_parse_json_ior(tokens, i + 1, json_chunk, &out_material->ior); | ||
3698 | } | ||
3699 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_materials_specular") == 0) | ||
3700 | { | ||
3701 | out_material->has_specular = 1; | ||
3702 | i = cgltf_parse_json_specular(options, tokens, i + 1, json_chunk, &out_material->specular); | ||
3703 | } | ||
3704 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_materials_transmission") == 0) | ||
3705 | { | ||
3706 | out_material->has_transmission = 1; | ||
3707 | i = cgltf_parse_json_transmission(options, tokens, i + 1, json_chunk, &out_material->transmission); | ||
3708 | } | ||
3709 | else | ||
3710 | { | ||
3711 | i = cgltf_parse_json_unprocessed_extension(options, tokens, i, json_chunk, &(out_material->extensions[out_material->extensions_count++])); | ||
3712 | } | ||
3713 | |||
3714 | if (i < 0) | ||
3715 | { | ||
3716 | return i; | ||
3717 | } | ||
3718 | } | ||
3719 | } | ||
3720 | else | ||
3721 | { | ||
3722 | i = cgltf_skip_json(tokens, i+1); | ||
3723 | } | ||
3724 | |||
3725 | if (i < 0) | ||
3726 | { | ||
3727 | return i; | ||
3728 | } | ||
3729 | } | ||
3730 | |||
3731 | return i; | ||
3732 | } | ||
3733 | |||
3734 | static int cgltf_parse_json_accessors(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3735 | { | ||
3736 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_accessor), (void**)&out_data->accessors, &out_data->accessors_count); | ||
3737 | if (i < 0) | ||
3738 | { | ||
3739 | return i; | ||
3740 | } | ||
3741 | |||
3742 | for (cgltf_size j = 0; j < out_data->accessors_count; ++j) | ||
3743 | { | ||
3744 | i = cgltf_parse_json_accessor(options, tokens, i, json_chunk, &out_data->accessors[j]); | ||
3745 | if (i < 0) | ||
3746 | { | ||
3747 | return i; | ||
3748 | } | ||
3749 | } | ||
3750 | return i; | ||
3751 | } | ||
3752 | |||
3753 | static int cgltf_parse_json_materials(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3754 | { | ||
3755 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_material), (void**)&out_data->materials, &out_data->materials_count); | ||
3756 | if (i < 0) | ||
3757 | { | ||
3758 | return i; | ||
3759 | } | ||
3760 | |||
3761 | for (cgltf_size j = 0; j < out_data->materials_count; ++j) | ||
3762 | { | ||
3763 | i = cgltf_parse_json_material(options, tokens, i, json_chunk, &out_data->materials[j]); | ||
3764 | if (i < 0) | ||
3765 | { | ||
3766 | return i; | ||
3767 | } | ||
3768 | } | ||
3769 | return i; | ||
3770 | } | ||
3771 | |||
3772 | static int cgltf_parse_json_images(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3773 | { | ||
3774 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_image), (void**)&out_data->images, &out_data->images_count); | ||
3775 | if (i < 0) | ||
3776 | { | ||
3777 | return i; | ||
3778 | } | ||
3779 | |||
3780 | for (cgltf_size j = 0; j < out_data->images_count; ++j) | ||
3781 | { | ||
3782 | i = cgltf_parse_json_image(options, tokens, i, json_chunk, &out_data->images[j]); | ||
3783 | if (i < 0) | ||
3784 | { | ||
3785 | return i; | ||
3786 | } | ||
3787 | } | ||
3788 | return i; | ||
3789 | } | ||
3790 | |||
3791 | static int cgltf_parse_json_textures(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3792 | { | ||
3793 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_texture), (void**)&out_data->textures, &out_data->textures_count); | ||
3794 | if (i < 0) | ||
3795 | { | ||
3796 | return i; | ||
3797 | } | ||
3798 | |||
3799 | for (cgltf_size j = 0; j < out_data->textures_count; ++j) | ||
3800 | { | ||
3801 | i = cgltf_parse_json_texture(options, tokens, i, json_chunk, &out_data->textures[j]); | ||
3802 | if (i < 0) | ||
3803 | { | ||
3804 | return i; | ||
3805 | } | ||
3806 | } | ||
3807 | return i; | ||
3808 | } | ||
3809 | |||
3810 | static int cgltf_parse_json_samplers(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3811 | { | ||
3812 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_sampler), (void**)&out_data->samplers, &out_data->samplers_count); | ||
3813 | if (i < 0) | ||
3814 | { | ||
3815 | return i; | ||
3816 | } | ||
3817 | |||
3818 | for (cgltf_size j = 0; j < out_data->samplers_count; ++j) | ||
3819 | { | ||
3820 | i = cgltf_parse_json_sampler(options, tokens, i, json_chunk, &out_data->samplers[j]); | ||
3821 | if (i < 0) | ||
3822 | { | ||
3823 | return i; | ||
3824 | } | ||
3825 | } | ||
3826 | return i; | ||
3827 | } | ||
3828 | |||
3829 | static int cgltf_parse_json_buffer_view(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_buffer_view* out_buffer_view) | ||
3830 | { | ||
3831 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3832 | |||
3833 | int size = tokens[i].size; | ||
3834 | ++i; | ||
3835 | |||
3836 | for (int j = 0; j < size; ++j) | ||
3837 | { | ||
3838 | CGLTF_CHECK_KEY(tokens[i]); | ||
3839 | |||
3840 | if (cgltf_json_strcmp(tokens+i, json_chunk, "buffer") == 0) | ||
3841 | { | ||
3842 | ++i; | ||
3843 | out_buffer_view->buffer = CGLTF_PTRINDEX(cgltf_buffer, cgltf_json_to_int(tokens + i, json_chunk)); | ||
3844 | ++i; | ||
3845 | } | ||
3846 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "byteOffset") == 0) | ||
3847 | { | ||
3848 | ++i; | ||
3849 | out_buffer_view->offset = | ||
3850 | cgltf_json_to_int(tokens+i, json_chunk); | ||
3851 | ++i; | ||
3852 | } | ||
3853 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "byteLength") == 0) | ||
3854 | { | ||
3855 | ++i; | ||
3856 | out_buffer_view->size = | ||
3857 | cgltf_json_to_int(tokens+i, json_chunk); | ||
3858 | ++i; | ||
3859 | } | ||
3860 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "byteStride") == 0) | ||
3861 | { | ||
3862 | ++i; | ||
3863 | out_buffer_view->stride = | ||
3864 | cgltf_json_to_int(tokens+i, json_chunk); | ||
3865 | ++i; | ||
3866 | } | ||
3867 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "target") == 0) | ||
3868 | { | ||
3869 | ++i; | ||
3870 | int type = cgltf_json_to_int(tokens+i, json_chunk); | ||
3871 | switch (type) | ||
3872 | { | ||
3873 | case 34962: | ||
3874 | type = cgltf_buffer_view_type_vertices; | ||
3875 | break; | ||
3876 | case 34963: | ||
3877 | type = cgltf_buffer_view_type_indices; | ||
3878 | break; | ||
3879 | default: | ||
3880 | type = cgltf_buffer_view_type_invalid; | ||
3881 | break; | ||
3882 | } | ||
3883 | out_buffer_view->type = (cgltf_buffer_view_type)type; | ||
3884 | ++i; | ||
3885 | } | ||
3886 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3887 | { | ||
3888 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_buffer_view->extras); | ||
3889 | } | ||
3890 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3891 | { | ||
3892 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_buffer_view->extensions_count, &out_buffer_view->extensions); | ||
3893 | } | ||
3894 | else | ||
3895 | { | ||
3896 | i = cgltf_skip_json(tokens, i+1); | ||
3897 | } | ||
3898 | |||
3899 | if (i < 0) | ||
3900 | { | ||
3901 | return i; | ||
3902 | } | ||
3903 | } | ||
3904 | |||
3905 | return i; | ||
3906 | } | ||
3907 | |||
3908 | static int cgltf_parse_json_buffer_views(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3909 | { | ||
3910 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_buffer_view), (void**)&out_data->buffer_views, &out_data->buffer_views_count); | ||
3911 | if (i < 0) | ||
3912 | { | ||
3913 | return i; | ||
3914 | } | ||
3915 | |||
3916 | for (cgltf_size j = 0; j < out_data->buffer_views_count; ++j) | ||
3917 | { | ||
3918 | i = cgltf_parse_json_buffer_view(options, tokens, i, json_chunk, &out_data->buffer_views[j]); | ||
3919 | if (i < 0) | ||
3920 | { | ||
3921 | return i; | ||
3922 | } | ||
3923 | } | ||
3924 | return i; | ||
3925 | } | ||
3926 | |||
3927 | static int cgltf_parse_json_buffer(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_buffer* out_buffer) | ||
3928 | { | ||
3929 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3930 | |||
3931 | int size = tokens[i].size; | ||
3932 | ++i; | ||
3933 | |||
3934 | for (int j = 0; j < size; ++j) | ||
3935 | { | ||
3936 | CGLTF_CHECK_KEY(tokens[i]); | ||
3937 | |||
3938 | if (cgltf_json_strcmp(tokens+i, json_chunk, "byteLength") == 0) | ||
3939 | { | ||
3940 | ++i; | ||
3941 | out_buffer->size = | ||
3942 | cgltf_json_to_int(tokens+i, json_chunk); | ||
3943 | ++i; | ||
3944 | } | ||
3945 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "uri") == 0) | ||
3946 | { | ||
3947 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_buffer->uri); | ||
3948 | } | ||
3949 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
3950 | { | ||
3951 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_buffer->extras); | ||
3952 | } | ||
3953 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
3954 | { | ||
3955 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_buffer->extensions_count, &out_buffer->extensions); | ||
3956 | } | ||
3957 | else | ||
3958 | { | ||
3959 | i = cgltf_skip_json(tokens, i+1); | ||
3960 | } | ||
3961 | |||
3962 | if (i < 0) | ||
3963 | { | ||
3964 | return i; | ||
3965 | } | ||
3966 | } | ||
3967 | |||
3968 | return i; | ||
3969 | } | ||
3970 | |||
3971 | static int cgltf_parse_json_buffers(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
3972 | { | ||
3973 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_buffer), (void**)&out_data->buffers, &out_data->buffers_count); | ||
3974 | if (i < 0) | ||
3975 | { | ||
3976 | return i; | ||
3977 | } | ||
3978 | |||
3979 | for (cgltf_size j = 0; j < out_data->buffers_count; ++j) | ||
3980 | { | ||
3981 | i = cgltf_parse_json_buffer(options, tokens, i, json_chunk, &out_data->buffers[j]); | ||
3982 | if (i < 0) | ||
3983 | { | ||
3984 | return i; | ||
3985 | } | ||
3986 | } | ||
3987 | return i; | ||
3988 | } | ||
3989 | |||
3990 | static int cgltf_parse_json_skin(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_skin* out_skin) | ||
3991 | { | ||
3992 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
3993 | |||
3994 | int size = tokens[i].size; | ||
3995 | ++i; | ||
3996 | |||
3997 | for (int j = 0; j < size; ++j) | ||
3998 | { | ||
3999 | CGLTF_CHECK_KEY(tokens[i]); | ||
4000 | |||
4001 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
4002 | { | ||
4003 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_skin->name); | ||
4004 | } | ||
4005 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "joints") == 0) | ||
4006 | { | ||
4007 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_node*), (void**)&out_skin->joints, &out_skin->joints_count); | ||
4008 | if (i < 0) | ||
4009 | { | ||
4010 | return i; | ||
4011 | } | ||
4012 | |||
4013 | for (cgltf_size k = 0; k < out_skin->joints_count; ++k) | ||
4014 | { | ||
4015 | out_skin->joints[k] = CGLTF_PTRINDEX(cgltf_node, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4016 | ++i; | ||
4017 | } | ||
4018 | } | ||
4019 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "skeleton") == 0) | ||
4020 | { | ||
4021 | ++i; | ||
4022 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
4023 | out_skin->skeleton = CGLTF_PTRINDEX(cgltf_node, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4024 | ++i; | ||
4025 | } | ||
4026 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "inverseBindMatrices") == 0) | ||
4027 | { | ||
4028 | ++i; | ||
4029 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
4030 | out_skin->inverse_bind_matrices = CGLTF_PTRINDEX(cgltf_accessor, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4031 | ++i; | ||
4032 | } | ||
4033 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4034 | { | ||
4035 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_skin->extras); | ||
4036 | } | ||
4037 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4038 | { | ||
4039 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_skin->extensions_count, &out_skin->extensions); | ||
4040 | } | ||
4041 | else | ||
4042 | { | ||
4043 | i = cgltf_skip_json(tokens, i+1); | ||
4044 | } | ||
4045 | |||
4046 | if (i < 0) | ||
4047 | { | ||
4048 | return i; | ||
4049 | } | ||
4050 | } | ||
4051 | |||
4052 | return i; | ||
4053 | } | ||
4054 | |||
4055 | static int cgltf_parse_json_skins(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4056 | { | ||
4057 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_skin), (void**)&out_data->skins, &out_data->skins_count); | ||
4058 | if (i < 0) | ||
4059 | { | ||
4060 | return i; | ||
4061 | } | ||
4062 | |||
4063 | for (cgltf_size j = 0; j < out_data->skins_count; ++j) | ||
4064 | { | ||
4065 | i = cgltf_parse_json_skin(options, tokens, i, json_chunk, &out_data->skins[j]); | ||
4066 | if (i < 0) | ||
4067 | { | ||
4068 | return i; | ||
4069 | } | ||
4070 | } | ||
4071 | return i; | ||
4072 | } | ||
4073 | |||
4074 | static int cgltf_parse_json_camera(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_camera* out_camera) | ||
4075 | { | ||
4076 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4077 | |||
4078 | int size = tokens[i].size; | ||
4079 | ++i; | ||
4080 | |||
4081 | for (int j = 0; j < size; ++j) | ||
4082 | { | ||
4083 | CGLTF_CHECK_KEY(tokens[i]); | ||
4084 | |||
4085 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
4086 | { | ||
4087 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_camera->name); | ||
4088 | } | ||
4089 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "type") == 0) | ||
4090 | { | ||
4091 | ++i; | ||
4092 | if (cgltf_json_strcmp(tokens + i, json_chunk, "perspective") == 0) | ||
4093 | { | ||
4094 | out_camera->type = cgltf_camera_type_perspective; | ||
4095 | } | ||
4096 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "orthographic") == 0) | ||
4097 | { | ||
4098 | out_camera->type = cgltf_camera_type_orthographic; | ||
4099 | } | ||
4100 | ++i; | ||
4101 | } | ||
4102 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "perspective") == 0) | ||
4103 | { | ||
4104 | ++i; | ||
4105 | |||
4106 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4107 | |||
4108 | int data_size = tokens[i].size; | ||
4109 | ++i; | ||
4110 | |||
4111 | out_camera->type = cgltf_camera_type_perspective; | ||
4112 | |||
4113 | for (int k = 0; k < data_size; ++k) | ||
4114 | { | ||
4115 | CGLTF_CHECK_KEY(tokens[i]); | ||
4116 | |||
4117 | if (cgltf_json_strcmp(tokens+i, json_chunk, "aspectRatio") == 0) | ||
4118 | { | ||
4119 | ++i; | ||
4120 | out_camera->data.perspective.aspect_ratio = cgltf_json_to_float(tokens + i, json_chunk); | ||
4121 | ++i; | ||
4122 | } | ||
4123 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "yfov") == 0) | ||
4124 | { | ||
4125 | ++i; | ||
4126 | out_camera->data.perspective.yfov = cgltf_json_to_float(tokens + i, json_chunk); | ||
4127 | ++i; | ||
4128 | } | ||
4129 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "zfar") == 0) | ||
4130 | { | ||
4131 | ++i; | ||
4132 | out_camera->data.perspective.zfar = cgltf_json_to_float(tokens + i, json_chunk); | ||
4133 | ++i; | ||
4134 | } | ||
4135 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "znear") == 0) | ||
4136 | { | ||
4137 | ++i; | ||
4138 | out_camera->data.perspective.znear = cgltf_json_to_float(tokens + i, json_chunk); | ||
4139 | ++i; | ||
4140 | } | ||
4141 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4142 | { | ||
4143 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_camera->data.perspective.extras); | ||
4144 | } | ||
4145 | else | ||
4146 | { | ||
4147 | i = cgltf_skip_json(tokens, i+1); | ||
4148 | } | ||
4149 | |||
4150 | if (i < 0) | ||
4151 | { | ||
4152 | return i; | ||
4153 | } | ||
4154 | } | ||
4155 | } | ||
4156 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "orthographic") == 0) | ||
4157 | { | ||
4158 | ++i; | ||
4159 | |||
4160 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4161 | |||
4162 | int data_size = tokens[i].size; | ||
4163 | ++i; | ||
4164 | |||
4165 | out_camera->type = cgltf_camera_type_orthographic; | ||
4166 | |||
4167 | for (int k = 0; k < data_size; ++k) | ||
4168 | { | ||
4169 | CGLTF_CHECK_KEY(tokens[i]); | ||
4170 | |||
4171 | if (cgltf_json_strcmp(tokens+i, json_chunk, "xmag") == 0) | ||
4172 | { | ||
4173 | ++i; | ||
4174 | out_camera->data.orthographic.xmag = cgltf_json_to_float(tokens + i, json_chunk); | ||
4175 | ++i; | ||
4176 | } | ||
4177 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "ymag") == 0) | ||
4178 | { | ||
4179 | ++i; | ||
4180 | out_camera->data.orthographic.ymag = cgltf_json_to_float(tokens + i, json_chunk); | ||
4181 | ++i; | ||
4182 | } | ||
4183 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "zfar") == 0) | ||
4184 | { | ||
4185 | ++i; | ||
4186 | out_camera->data.orthographic.zfar = cgltf_json_to_float(tokens + i, json_chunk); | ||
4187 | ++i; | ||
4188 | } | ||
4189 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "znear") == 0) | ||
4190 | { | ||
4191 | ++i; | ||
4192 | out_camera->data.orthographic.znear = cgltf_json_to_float(tokens + i, json_chunk); | ||
4193 | ++i; | ||
4194 | } | ||
4195 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4196 | { | ||
4197 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_camera->data.orthographic.extras); | ||
4198 | } | ||
4199 | else | ||
4200 | { | ||
4201 | i = cgltf_skip_json(tokens, i+1); | ||
4202 | } | ||
4203 | |||
4204 | if (i < 0) | ||
4205 | { | ||
4206 | return i; | ||
4207 | } | ||
4208 | } | ||
4209 | } | ||
4210 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4211 | { | ||
4212 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_camera->extras); | ||
4213 | } | ||
4214 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4215 | { | ||
4216 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_camera->extensions_count, &out_camera->extensions); | ||
4217 | } | ||
4218 | else | ||
4219 | { | ||
4220 | i = cgltf_skip_json(tokens, i+1); | ||
4221 | } | ||
4222 | |||
4223 | if (i < 0) | ||
4224 | { | ||
4225 | return i; | ||
4226 | } | ||
4227 | } | ||
4228 | |||
4229 | return i; | ||
4230 | } | ||
4231 | |||
4232 | static int cgltf_parse_json_cameras(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4233 | { | ||
4234 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_camera), (void**)&out_data->cameras, &out_data->cameras_count); | ||
4235 | if (i < 0) | ||
4236 | { | ||
4237 | return i; | ||
4238 | } | ||
4239 | |||
4240 | for (cgltf_size j = 0; j < out_data->cameras_count; ++j) | ||
4241 | { | ||
4242 | i = cgltf_parse_json_camera(options, tokens, i, json_chunk, &out_data->cameras[j]); | ||
4243 | if (i < 0) | ||
4244 | { | ||
4245 | return i; | ||
4246 | } | ||
4247 | } | ||
4248 | return i; | ||
4249 | } | ||
4250 | |||
4251 | static int cgltf_parse_json_light(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_light* out_light) | ||
4252 | { | ||
4253 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4254 | |||
4255 | int size = tokens[i].size; | ||
4256 | ++i; | ||
4257 | |||
4258 | for (int j = 0; j < size; ++j) | ||
4259 | { | ||
4260 | CGLTF_CHECK_KEY(tokens[i]); | ||
4261 | |||
4262 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
4263 | { | ||
4264 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_light->name); | ||
4265 | } | ||
4266 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "color") == 0) | ||
4267 | { | ||
4268 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_light->color, 3); | ||
4269 | } | ||
4270 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "intensity") == 0) | ||
4271 | { | ||
4272 | ++i; | ||
4273 | out_light->intensity = cgltf_json_to_float(tokens + i, json_chunk); | ||
4274 | ++i; | ||
4275 | } | ||
4276 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "type") == 0) | ||
4277 | { | ||
4278 | ++i; | ||
4279 | if (cgltf_json_strcmp(tokens + i, json_chunk, "directional") == 0) | ||
4280 | { | ||
4281 | out_light->type = cgltf_light_type_directional; | ||
4282 | } | ||
4283 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "point") == 0) | ||
4284 | { | ||
4285 | out_light->type = cgltf_light_type_point; | ||
4286 | } | ||
4287 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "spot") == 0) | ||
4288 | { | ||
4289 | out_light->type = cgltf_light_type_spot; | ||
4290 | } | ||
4291 | ++i; | ||
4292 | } | ||
4293 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "range") == 0) | ||
4294 | { | ||
4295 | ++i; | ||
4296 | out_light->range = cgltf_json_to_float(tokens + i, json_chunk); | ||
4297 | ++i; | ||
4298 | } | ||
4299 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "spot") == 0) | ||
4300 | { | ||
4301 | ++i; | ||
4302 | |||
4303 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4304 | |||
4305 | int data_size = tokens[i].size; | ||
4306 | ++i; | ||
4307 | |||
4308 | for (int k = 0; k < data_size; ++k) | ||
4309 | { | ||
4310 | CGLTF_CHECK_KEY(tokens[i]); | ||
4311 | |||
4312 | if (cgltf_json_strcmp(tokens+i, json_chunk, "innerConeAngle") == 0) | ||
4313 | { | ||
4314 | ++i; | ||
4315 | out_light->spot_inner_cone_angle = cgltf_json_to_float(tokens + i, json_chunk); | ||
4316 | ++i; | ||
4317 | } | ||
4318 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "outerConeAngle") == 0) | ||
4319 | { | ||
4320 | ++i; | ||
4321 | out_light->spot_outer_cone_angle = cgltf_json_to_float(tokens + i, json_chunk); | ||
4322 | ++i; | ||
4323 | } | ||
4324 | else | ||
4325 | { | ||
4326 | i = cgltf_skip_json(tokens, i+1); | ||
4327 | } | ||
4328 | |||
4329 | if (i < 0) | ||
4330 | { | ||
4331 | return i; | ||
4332 | } | ||
4333 | } | ||
4334 | } | ||
4335 | else | ||
4336 | { | ||
4337 | i = cgltf_skip_json(tokens, i+1); | ||
4338 | } | ||
4339 | |||
4340 | if (i < 0) | ||
4341 | { | ||
4342 | return i; | ||
4343 | } | ||
4344 | } | ||
4345 | |||
4346 | return i; | ||
4347 | } | ||
4348 | |||
4349 | static int cgltf_parse_json_lights(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4350 | { | ||
4351 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_light), (void**)&out_data->lights, &out_data->lights_count); | ||
4352 | if (i < 0) | ||
4353 | { | ||
4354 | return i; | ||
4355 | } | ||
4356 | |||
4357 | for (cgltf_size j = 0; j < out_data->lights_count; ++j) | ||
4358 | { | ||
4359 | i = cgltf_parse_json_light(options, tokens, i, json_chunk, &out_data->lights[j]); | ||
4360 | if (i < 0) | ||
4361 | { | ||
4362 | return i; | ||
4363 | } | ||
4364 | } | ||
4365 | return i; | ||
4366 | } | ||
4367 | |||
4368 | static int cgltf_parse_json_node(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_node* out_node) | ||
4369 | { | ||
4370 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4371 | |||
4372 | out_node->rotation[3] = 1.0f; | ||
4373 | out_node->scale[0] = 1.0f; | ||
4374 | out_node->scale[1] = 1.0f; | ||
4375 | out_node->scale[2] = 1.0f; | ||
4376 | out_node->matrix[0] = 1.0f; | ||
4377 | out_node->matrix[5] = 1.0f; | ||
4378 | out_node->matrix[10] = 1.0f; | ||
4379 | out_node->matrix[15] = 1.0f; | ||
4380 | |||
4381 | int size = tokens[i].size; | ||
4382 | ++i; | ||
4383 | |||
4384 | for (int j = 0; j < size; ++j) | ||
4385 | { | ||
4386 | CGLTF_CHECK_KEY(tokens[i]); | ||
4387 | |||
4388 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
4389 | { | ||
4390 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_node->name); | ||
4391 | } | ||
4392 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "children") == 0) | ||
4393 | { | ||
4394 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_node*), (void**)&out_node->children, &out_node->children_count); | ||
4395 | if (i < 0) | ||
4396 | { | ||
4397 | return i; | ||
4398 | } | ||
4399 | |||
4400 | for (cgltf_size k = 0; k < out_node->children_count; ++k) | ||
4401 | { | ||
4402 | out_node->children[k] = CGLTF_PTRINDEX(cgltf_node, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4403 | ++i; | ||
4404 | } | ||
4405 | } | ||
4406 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "mesh") == 0) | ||
4407 | { | ||
4408 | ++i; | ||
4409 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
4410 | out_node->mesh = CGLTF_PTRINDEX(cgltf_mesh, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4411 | ++i; | ||
4412 | } | ||
4413 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "skin") == 0) | ||
4414 | { | ||
4415 | ++i; | ||
4416 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
4417 | out_node->skin = CGLTF_PTRINDEX(cgltf_skin, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4418 | ++i; | ||
4419 | } | ||
4420 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "camera") == 0) | ||
4421 | { | ||
4422 | ++i; | ||
4423 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
4424 | out_node->camera = CGLTF_PTRINDEX(cgltf_camera, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4425 | ++i; | ||
4426 | } | ||
4427 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "translation") == 0) | ||
4428 | { | ||
4429 | out_node->has_translation = 1; | ||
4430 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_node->translation, 3); | ||
4431 | } | ||
4432 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "rotation") == 0) | ||
4433 | { | ||
4434 | out_node->has_rotation = 1; | ||
4435 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_node->rotation, 4); | ||
4436 | } | ||
4437 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "scale") == 0) | ||
4438 | { | ||
4439 | out_node->has_scale = 1; | ||
4440 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_node->scale, 3); | ||
4441 | } | ||
4442 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "matrix") == 0) | ||
4443 | { | ||
4444 | out_node->has_matrix = 1; | ||
4445 | i = cgltf_parse_json_float_array(tokens, i + 1, json_chunk, out_node->matrix, 16); | ||
4446 | } | ||
4447 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "weights") == 0) | ||
4448 | { | ||
4449 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_float), (void**)&out_node->weights, &out_node->weights_count); | ||
4450 | if (i < 0) | ||
4451 | { | ||
4452 | return i; | ||
4453 | } | ||
4454 | |||
4455 | i = cgltf_parse_json_float_array(tokens, i - 1, json_chunk, out_node->weights, (int)out_node->weights_count); | ||
4456 | } | ||
4457 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4458 | { | ||
4459 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_node->extras); | ||
4460 | } | ||
4461 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4462 | { | ||
4463 | ++i; | ||
4464 | |||
4465 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4466 | if(out_node->extensions) | ||
4467 | { | ||
4468 | return CGLTF_ERROR_JSON; | ||
4469 | } | ||
4470 | |||
4471 | int extensions_size = tokens[i].size; | ||
4472 | out_node->extensions_count= 0; | ||
4473 | out_node->extensions = (cgltf_extension*)cgltf_calloc(options, sizeof(cgltf_extension), extensions_size); | ||
4474 | |||
4475 | if (!out_node->extensions) | ||
4476 | { | ||
4477 | return CGLTF_ERROR_NOMEM; | ||
4478 | } | ||
4479 | |||
4480 | ++i; | ||
4481 | |||
4482 | for (int k = 0; k < extensions_size; ++k) | ||
4483 | { | ||
4484 | CGLTF_CHECK_KEY(tokens[i]); | ||
4485 | |||
4486 | if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_lights_punctual") == 0) | ||
4487 | { | ||
4488 | ++i; | ||
4489 | |||
4490 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4491 | |||
4492 | int data_size = tokens[i].size; | ||
4493 | ++i; | ||
4494 | |||
4495 | for (int m = 0; m < data_size; ++m) | ||
4496 | { | ||
4497 | CGLTF_CHECK_KEY(tokens[i]); | ||
4498 | |||
4499 | if (cgltf_json_strcmp(tokens + i, json_chunk, "light") == 0) | ||
4500 | { | ||
4501 | ++i; | ||
4502 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_PRIMITIVE); | ||
4503 | out_node->light = CGLTF_PTRINDEX(cgltf_light, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4504 | ++i; | ||
4505 | } | ||
4506 | else | ||
4507 | { | ||
4508 | i = cgltf_skip_json(tokens, i + 1); | ||
4509 | } | ||
4510 | |||
4511 | if (i < 0) | ||
4512 | { | ||
4513 | return i; | ||
4514 | } | ||
4515 | } | ||
4516 | } | ||
4517 | else | ||
4518 | { | ||
4519 | i = cgltf_parse_json_unprocessed_extension(options, tokens, i, json_chunk, &(out_node->extensions[out_node->extensions_count++])); | ||
4520 | } | ||
4521 | |||
4522 | if (i < 0) | ||
4523 | { | ||
4524 | return i; | ||
4525 | } | ||
4526 | } | ||
4527 | } | ||
4528 | else | ||
4529 | { | ||
4530 | i = cgltf_skip_json(tokens, i+1); | ||
4531 | } | ||
4532 | |||
4533 | if (i < 0) | ||
4534 | { | ||
4535 | return i; | ||
4536 | } | ||
4537 | } | ||
4538 | |||
4539 | return i; | ||
4540 | } | ||
4541 | |||
4542 | static int cgltf_parse_json_nodes(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4543 | { | ||
4544 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_node), (void**)&out_data->nodes, &out_data->nodes_count); | ||
4545 | if (i < 0) | ||
4546 | { | ||
4547 | return i; | ||
4548 | } | ||
4549 | |||
4550 | for (cgltf_size j = 0; j < out_data->nodes_count; ++j) | ||
4551 | { | ||
4552 | i = cgltf_parse_json_node(options, tokens, i, json_chunk, &out_data->nodes[j]); | ||
4553 | if (i < 0) | ||
4554 | { | ||
4555 | return i; | ||
4556 | } | ||
4557 | } | ||
4558 | return i; | ||
4559 | } | ||
4560 | |||
4561 | static int cgltf_parse_json_scene(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_scene* out_scene) | ||
4562 | { | ||
4563 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4564 | |||
4565 | int size = tokens[i].size; | ||
4566 | ++i; | ||
4567 | |||
4568 | for (int j = 0; j < size; ++j) | ||
4569 | { | ||
4570 | CGLTF_CHECK_KEY(tokens[i]); | ||
4571 | |||
4572 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
4573 | { | ||
4574 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_scene->name); | ||
4575 | } | ||
4576 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "nodes") == 0) | ||
4577 | { | ||
4578 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_node*), (void**)&out_scene->nodes, &out_scene->nodes_count); | ||
4579 | if (i < 0) | ||
4580 | { | ||
4581 | return i; | ||
4582 | } | ||
4583 | |||
4584 | for (cgltf_size k = 0; k < out_scene->nodes_count; ++k) | ||
4585 | { | ||
4586 | out_scene->nodes[k] = CGLTF_PTRINDEX(cgltf_node, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4587 | ++i; | ||
4588 | } | ||
4589 | } | ||
4590 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4591 | { | ||
4592 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_scene->extras); | ||
4593 | } | ||
4594 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4595 | { | ||
4596 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_scene->extensions_count, &out_scene->extensions); | ||
4597 | } | ||
4598 | else | ||
4599 | { | ||
4600 | i = cgltf_skip_json(tokens, i+1); | ||
4601 | } | ||
4602 | |||
4603 | if (i < 0) | ||
4604 | { | ||
4605 | return i; | ||
4606 | } | ||
4607 | } | ||
4608 | |||
4609 | return i; | ||
4610 | } | ||
4611 | |||
4612 | static int cgltf_parse_json_scenes(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4613 | { | ||
4614 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_scene), (void**)&out_data->scenes, &out_data->scenes_count); | ||
4615 | if (i < 0) | ||
4616 | { | ||
4617 | return i; | ||
4618 | } | ||
4619 | |||
4620 | for (cgltf_size j = 0; j < out_data->scenes_count; ++j) | ||
4621 | { | ||
4622 | i = cgltf_parse_json_scene(options, tokens, i, json_chunk, &out_data->scenes[j]); | ||
4623 | if (i < 0) | ||
4624 | { | ||
4625 | return i; | ||
4626 | } | ||
4627 | } | ||
4628 | return i; | ||
4629 | } | ||
4630 | |||
4631 | static int cgltf_parse_json_animation_sampler(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_animation_sampler* out_sampler) | ||
4632 | { | ||
4633 | (void)options; | ||
4634 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4635 | |||
4636 | int size = tokens[i].size; | ||
4637 | ++i; | ||
4638 | |||
4639 | for (int j = 0; j < size; ++j) | ||
4640 | { | ||
4641 | CGLTF_CHECK_KEY(tokens[i]); | ||
4642 | |||
4643 | if (cgltf_json_strcmp(tokens+i, json_chunk, "input") == 0) | ||
4644 | { | ||
4645 | ++i; | ||
4646 | out_sampler->input = CGLTF_PTRINDEX(cgltf_accessor, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4647 | ++i; | ||
4648 | } | ||
4649 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "output") == 0) | ||
4650 | { | ||
4651 | ++i; | ||
4652 | out_sampler->output = CGLTF_PTRINDEX(cgltf_accessor, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4653 | ++i; | ||
4654 | } | ||
4655 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "interpolation") == 0) | ||
4656 | { | ||
4657 | ++i; | ||
4658 | if (cgltf_json_strcmp(tokens + i, json_chunk, "LINEAR") == 0) | ||
4659 | { | ||
4660 | out_sampler->interpolation = cgltf_interpolation_type_linear; | ||
4661 | } | ||
4662 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "STEP") == 0) | ||
4663 | { | ||
4664 | out_sampler->interpolation = cgltf_interpolation_type_step; | ||
4665 | } | ||
4666 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "CUBICSPLINE") == 0) | ||
4667 | { | ||
4668 | out_sampler->interpolation = cgltf_interpolation_type_cubic_spline; | ||
4669 | } | ||
4670 | ++i; | ||
4671 | } | ||
4672 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4673 | { | ||
4674 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_sampler->extras); | ||
4675 | } | ||
4676 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4677 | { | ||
4678 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_sampler->extensions_count, &out_sampler->extensions); | ||
4679 | } | ||
4680 | else | ||
4681 | { | ||
4682 | i = cgltf_skip_json(tokens, i+1); | ||
4683 | } | ||
4684 | |||
4685 | if (i < 0) | ||
4686 | { | ||
4687 | return i; | ||
4688 | } | ||
4689 | } | ||
4690 | |||
4691 | return i; | ||
4692 | } | ||
4693 | |||
4694 | static int cgltf_parse_json_animation_channel(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_animation_channel* out_channel) | ||
4695 | { | ||
4696 | (void)options; | ||
4697 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4698 | |||
4699 | int size = tokens[i].size; | ||
4700 | ++i; | ||
4701 | |||
4702 | for (int j = 0; j < size; ++j) | ||
4703 | { | ||
4704 | CGLTF_CHECK_KEY(tokens[i]); | ||
4705 | |||
4706 | if (cgltf_json_strcmp(tokens+i, json_chunk, "sampler") == 0) | ||
4707 | { | ||
4708 | ++i; | ||
4709 | out_channel->sampler = CGLTF_PTRINDEX(cgltf_animation_sampler, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4710 | ++i; | ||
4711 | } | ||
4712 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "target") == 0) | ||
4713 | { | ||
4714 | ++i; | ||
4715 | |||
4716 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4717 | |||
4718 | int target_size = tokens[i].size; | ||
4719 | ++i; | ||
4720 | |||
4721 | for (int k = 0; k < target_size; ++k) | ||
4722 | { | ||
4723 | CGLTF_CHECK_KEY(tokens[i]); | ||
4724 | |||
4725 | if (cgltf_json_strcmp(tokens+i, json_chunk, "node") == 0) | ||
4726 | { | ||
4727 | ++i; | ||
4728 | out_channel->target_node = CGLTF_PTRINDEX(cgltf_node, cgltf_json_to_int(tokens + i, json_chunk)); | ||
4729 | ++i; | ||
4730 | } | ||
4731 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "path") == 0) | ||
4732 | { | ||
4733 | ++i; | ||
4734 | if (cgltf_json_strcmp(tokens+i, json_chunk, "translation") == 0) | ||
4735 | { | ||
4736 | out_channel->target_path = cgltf_animation_path_type_translation; | ||
4737 | } | ||
4738 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "rotation") == 0) | ||
4739 | { | ||
4740 | out_channel->target_path = cgltf_animation_path_type_rotation; | ||
4741 | } | ||
4742 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "scale") == 0) | ||
4743 | { | ||
4744 | out_channel->target_path = cgltf_animation_path_type_scale; | ||
4745 | } | ||
4746 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "weights") == 0) | ||
4747 | { | ||
4748 | out_channel->target_path = cgltf_animation_path_type_weights; | ||
4749 | } | ||
4750 | ++i; | ||
4751 | } | ||
4752 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4753 | { | ||
4754 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_channel->extras); | ||
4755 | } | ||
4756 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4757 | { | ||
4758 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_channel->extensions_count, &out_channel->extensions); | ||
4759 | } | ||
4760 | else | ||
4761 | { | ||
4762 | i = cgltf_skip_json(tokens, i+1); | ||
4763 | } | ||
4764 | |||
4765 | if (i < 0) | ||
4766 | { | ||
4767 | return i; | ||
4768 | } | ||
4769 | } | ||
4770 | } | ||
4771 | else | ||
4772 | { | ||
4773 | i = cgltf_skip_json(tokens, i+1); | ||
4774 | } | ||
4775 | |||
4776 | if (i < 0) | ||
4777 | { | ||
4778 | return i; | ||
4779 | } | ||
4780 | } | ||
4781 | |||
4782 | return i; | ||
4783 | } | ||
4784 | |||
4785 | static int cgltf_parse_json_animation(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_animation* out_animation) | ||
4786 | { | ||
4787 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4788 | |||
4789 | int size = tokens[i].size; | ||
4790 | ++i; | ||
4791 | |||
4792 | for (int j = 0; j < size; ++j) | ||
4793 | { | ||
4794 | CGLTF_CHECK_KEY(tokens[i]); | ||
4795 | |||
4796 | if (cgltf_json_strcmp(tokens+i, json_chunk, "name") == 0) | ||
4797 | { | ||
4798 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_animation->name); | ||
4799 | } | ||
4800 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "samplers") == 0) | ||
4801 | { | ||
4802 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_animation_sampler), (void**)&out_animation->samplers, &out_animation->samplers_count); | ||
4803 | if (i < 0) | ||
4804 | { | ||
4805 | return i; | ||
4806 | } | ||
4807 | |||
4808 | for (cgltf_size k = 0; k < out_animation->samplers_count; ++k) | ||
4809 | { | ||
4810 | i = cgltf_parse_json_animation_sampler(options, tokens, i, json_chunk, &out_animation->samplers[k]); | ||
4811 | if (i < 0) | ||
4812 | { | ||
4813 | return i; | ||
4814 | } | ||
4815 | } | ||
4816 | } | ||
4817 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "channels") == 0) | ||
4818 | { | ||
4819 | i = cgltf_parse_json_array(options, tokens, i + 1, json_chunk, sizeof(cgltf_animation_channel), (void**)&out_animation->channels, &out_animation->channels_count); | ||
4820 | if (i < 0) | ||
4821 | { | ||
4822 | return i; | ||
4823 | } | ||
4824 | |||
4825 | for (cgltf_size k = 0; k < out_animation->channels_count; ++k) | ||
4826 | { | ||
4827 | i = cgltf_parse_json_animation_channel(options, tokens, i, json_chunk, &out_animation->channels[k]); | ||
4828 | if (i < 0) | ||
4829 | { | ||
4830 | return i; | ||
4831 | } | ||
4832 | } | ||
4833 | } | ||
4834 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4835 | { | ||
4836 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_animation->extras); | ||
4837 | } | ||
4838 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4839 | { | ||
4840 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_animation->extensions_count, &out_animation->extensions); | ||
4841 | } | ||
4842 | else | ||
4843 | { | ||
4844 | i = cgltf_skip_json(tokens, i+1); | ||
4845 | } | ||
4846 | |||
4847 | if (i < 0) | ||
4848 | { | ||
4849 | return i; | ||
4850 | } | ||
4851 | } | ||
4852 | |||
4853 | return i; | ||
4854 | } | ||
4855 | |||
4856 | static int cgltf_parse_json_animations(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4857 | { | ||
4858 | i = cgltf_parse_json_array(options, tokens, i, json_chunk, sizeof(cgltf_animation), (void**)&out_data->animations, &out_data->animations_count); | ||
4859 | if (i < 0) | ||
4860 | { | ||
4861 | return i; | ||
4862 | } | ||
4863 | |||
4864 | for (cgltf_size j = 0; j < out_data->animations_count; ++j) | ||
4865 | { | ||
4866 | i = cgltf_parse_json_animation(options, tokens, i, json_chunk, &out_data->animations[j]); | ||
4867 | if (i < 0) | ||
4868 | { | ||
4869 | return i; | ||
4870 | } | ||
4871 | } | ||
4872 | return i; | ||
4873 | } | ||
4874 | |||
4875 | static int cgltf_parse_json_asset(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_asset* out_asset) | ||
4876 | { | ||
4877 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4878 | |||
4879 | int size = tokens[i].size; | ||
4880 | ++i; | ||
4881 | |||
4882 | for (int j = 0; j < size; ++j) | ||
4883 | { | ||
4884 | CGLTF_CHECK_KEY(tokens[i]); | ||
4885 | |||
4886 | if (cgltf_json_strcmp(tokens+i, json_chunk, "copyright") == 0) | ||
4887 | { | ||
4888 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_asset->copyright); | ||
4889 | } | ||
4890 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "generator") == 0) | ||
4891 | { | ||
4892 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_asset->generator); | ||
4893 | } | ||
4894 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "version") == 0) | ||
4895 | { | ||
4896 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_asset->version); | ||
4897 | } | ||
4898 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "minVersion") == 0) | ||
4899 | { | ||
4900 | i = cgltf_parse_json_string(options, tokens, i + 1, json_chunk, &out_asset->min_version); | ||
4901 | } | ||
4902 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extras") == 0) | ||
4903 | { | ||
4904 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_asset->extras); | ||
4905 | } | ||
4906 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
4907 | { | ||
4908 | i = cgltf_parse_json_unprocessed_extensions(options, tokens, i, json_chunk, &out_asset->extensions_count, &out_asset->extensions); | ||
4909 | } | ||
4910 | else | ||
4911 | { | ||
4912 | i = cgltf_skip_json(tokens, i+1); | ||
4913 | } | ||
4914 | |||
4915 | if (i < 0) | ||
4916 | { | ||
4917 | return i; | ||
4918 | } | ||
4919 | } | ||
4920 | |||
4921 | if (out_asset->version && CGLTF_ATOF(out_asset->version) < 2) | ||
4922 | { | ||
4923 | return CGLTF_ERROR_LEGACY; | ||
4924 | } | ||
4925 | |||
4926 | return i; | ||
4927 | } | ||
4928 | |||
4929 | cgltf_size cgltf_num_components(cgltf_type type) { | ||
4930 | switch (type) | ||
4931 | { | ||
4932 | case cgltf_type_vec2: | ||
4933 | return 2; | ||
4934 | case cgltf_type_vec3: | ||
4935 | return 3; | ||
4936 | case cgltf_type_vec4: | ||
4937 | return 4; | ||
4938 | case cgltf_type_mat2: | ||
4939 | return 4; | ||
4940 | case cgltf_type_mat3: | ||
4941 | return 9; | ||
4942 | case cgltf_type_mat4: | ||
4943 | return 16; | ||
4944 | case cgltf_type_invalid: | ||
4945 | case cgltf_type_scalar: | ||
4946 | default: | ||
4947 | return 1; | ||
4948 | } | ||
4949 | } | ||
4950 | |||
4951 | static cgltf_size cgltf_component_size(cgltf_component_type component_type) { | ||
4952 | switch (component_type) | ||
4953 | { | ||
4954 | case cgltf_component_type_r_8: | ||
4955 | case cgltf_component_type_r_8u: | ||
4956 | return 1; | ||
4957 | case cgltf_component_type_r_16: | ||
4958 | case cgltf_component_type_r_16u: | ||
4959 | return 2; | ||
4960 | case cgltf_component_type_r_32u: | ||
4961 | case cgltf_component_type_r_32f: | ||
4962 | return 4; | ||
4963 | case cgltf_component_type_invalid: | ||
4964 | default: | ||
4965 | return 0; | ||
4966 | } | ||
4967 | } | ||
4968 | |||
4969 | static cgltf_size cgltf_calc_size(cgltf_type type, cgltf_component_type component_type) | ||
4970 | { | ||
4971 | cgltf_size component_size = cgltf_component_size(component_type); | ||
4972 | if (type == cgltf_type_mat2 && component_size == 1) | ||
4973 | { | ||
4974 | return 8 * component_size; | ||
4975 | } | ||
4976 | else if (type == cgltf_type_mat3 && (component_size == 1 || component_size == 2)) | ||
4977 | { | ||
4978 | return 12 * component_size; | ||
4979 | } | ||
4980 | return component_size * cgltf_num_components(type); | ||
4981 | } | ||
4982 | |||
4983 | static int cgltf_fixup_pointers(cgltf_data* out_data); | ||
4984 | |||
4985 | static int cgltf_parse_json_root(cgltf_options* options, jsmntok_t const* tokens, int i, const uint8_t* json_chunk, cgltf_data* out_data) | ||
4986 | { | ||
4987 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
4988 | |||
4989 | int size = tokens[i].size; | ||
4990 | ++i; | ||
4991 | |||
4992 | for (int j = 0; j < size; ++j) | ||
4993 | { | ||
4994 | CGLTF_CHECK_KEY(tokens[i]); | ||
4995 | |||
4996 | if (cgltf_json_strcmp(tokens + i, json_chunk, "asset") == 0) | ||
4997 | { | ||
4998 | i = cgltf_parse_json_asset(options, tokens, i + 1, json_chunk, &out_data->asset); | ||
4999 | } | ||
5000 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "meshes") == 0) | ||
5001 | { | ||
5002 | i = cgltf_parse_json_meshes(options, tokens, i + 1, json_chunk, out_data); | ||
5003 | } | ||
5004 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "accessors") == 0) | ||
5005 | { | ||
5006 | i = cgltf_parse_json_accessors(options, tokens, i + 1, json_chunk, out_data); | ||
5007 | } | ||
5008 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "bufferViews") == 0) | ||
5009 | { | ||
5010 | i = cgltf_parse_json_buffer_views(options, tokens, i + 1, json_chunk, out_data); | ||
5011 | } | ||
5012 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "buffers") == 0) | ||
5013 | { | ||
5014 | i = cgltf_parse_json_buffers(options, tokens, i + 1, json_chunk, out_data); | ||
5015 | } | ||
5016 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "materials") == 0) | ||
5017 | { | ||
5018 | i = cgltf_parse_json_materials(options, tokens, i + 1, json_chunk, out_data); | ||
5019 | } | ||
5020 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "images") == 0) | ||
5021 | { | ||
5022 | i = cgltf_parse_json_images(options, tokens, i + 1, json_chunk, out_data); | ||
5023 | } | ||
5024 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "textures") == 0) | ||
5025 | { | ||
5026 | i = cgltf_parse_json_textures(options, tokens, i + 1, json_chunk, out_data); | ||
5027 | } | ||
5028 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "samplers") == 0) | ||
5029 | { | ||
5030 | i = cgltf_parse_json_samplers(options, tokens, i + 1, json_chunk, out_data); | ||
5031 | } | ||
5032 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "skins") == 0) | ||
5033 | { | ||
5034 | i = cgltf_parse_json_skins(options, tokens, i + 1, json_chunk, out_data); | ||
5035 | } | ||
5036 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "cameras") == 0) | ||
5037 | { | ||
5038 | i = cgltf_parse_json_cameras(options, tokens, i + 1, json_chunk, out_data); | ||
5039 | } | ||
5040 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "nodes") == 0) | ||
5041 | { | ||
5042 | i = cgltf_parse_json_nodes(options, tokens, i + 1, json_chunk, out_data); | ||
5043 | } | ||
5044 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "scenes") == 0) | ||
5045 | { | ||
5046 | i = cgltf_parse_json_scenes(options, tokens, i + 1, json_chunk, out_data); | ||
5047 | } | ||
5048 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "scene") == 0) | ||
5049 | { | ||
5050 | ++i; | ||
5051 | out_data->scene = CGLTF_PTRINDEX(cgltf_scene, cgltf_json_to_int(tokens + i, json_chunk)); | ||
5052 | ++i; | ||
5053 | } | ||
5054 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "animations") == 0) | ||
5055 | { | ||
5056 | i = cgltf_parse_json_animations(options, tokens, i + 1, json_chunk, out_data); | ||
5057 | } | ||
5058 | else if (cgltf_json_strcmp(tokens+i, json_chunk, "extras") == 0) | ||
5059 | { | ||
5060 | i = cgltf_parse_json_extras(tokens, i + 1, json_chunk, &out_data->extras); | ||
5061 | } | ||
5062 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensions") == 0) | ||
5063 | { | ||
5064 | ++i; | ||
5065 | |||
5066 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
5067 | if(out_data->data_extensions) | ||
5068 | { | ||
5069 | return CGLTF_ERROR_JSON; | ||
5070 | } | ||
5071 | |||
5072 | int extensions_size = tokens[i].size; | ||
5073 | out_data->data_extensions_count = 0; | ||
5074 | out_data->data_extensions = (cgltf_extension*)cgltf_calloc(options, sizeof(cgltf_extension), extensions_size); | ||
5075 | |||
5076 | if (!out_data->data_extensions) | ||
5077 | { | ||
5078 | return CGLTF_ERROR_NOMEM; | ||
5079 | } | ||
5080 | |||
5081 | ++i; | ||
5082 | |||
5083 | for (int k = 0; k < extensions_size; ++k) | ||
5084 | { | ||
5085 | CGLTF_CHECK_KEY(tokens[i]); | ||
5086 | |||
5087 | if (cgltf_json_strcmp(tokens+i, json_chunk, "KHR_lights_punctual") == 0) | ||
5088 | { | ||
5089 | ++i; | ||
5090 | |||
5091 | CGLTF_CHECK_TOKTYPE(tokens[i], JSMN_OBJECT); | ||
5092 | |||
5093 | int data_size = tokens[i].size; | ||
5094 | ++i; | ||
5095 | |||
5096 | for (int m = 0; m < data_size; ++m) | ||
5097 | { | ||
5098 | CGLTF_CHECK_KEY(tokens[i]); | ||
5099 | |||
5100 | if (cgltf_json_strcmp(tokens + i, json_chunk, "lights") == 0) | ||
5101 | { | ||
5102 | i = cgltf_parse_json_lights(options, tokens, i + 1, json_chunk, out_data); | ||
5103 | } | ||
5104 | else | ||
5105 | { | ||
5106 | i = cgltf_skip_json(tokens, i + 1); | ||
5107 | } | ||
5108 | |||
5109 | if (i < 0) | ||
5110 | { | ||
5111 | return i; | ||
5112 | } | ||
5113 | } | ||
5114 | } | ||
5115 | else | ||
5116 | { | ||
5117 | i = cgltf_parse_json_unprocessed_extension(options, tokens, i, json_chunk, &(out_data->data_extensions[out_data->data_extensions_count++])); | ||
5118 | } | ||
5119 | |||
5120 | if (i < 0) | ||
5121 | { | ||
5122 | return i; | ||
5123 | } | ||
5124 | } | ||
5125 | } | ||
5126 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensionsUsed") == 0) | ||
5127 | { | ||
5128 | i = cgltf_parse_json_string_array(options, tokens, i + 1, json_chunk, &out_data->extensions_used, &out_data->extensions_used_count); | ||
5129 | } | ||
5130 | else if (cgltf_json_strcmp(tokens + i, json_chunk, "extensionsRequired") == 0) | ||
5131 | { | ||
5132 | i = cgltf_parse_json_string_array(options, tokens, i + 1, json_chunk, &out_data->extensions_required, &out_data->extensions_required_count); | ||
5133 | } | ||
5134 | else | ||
5135 | { | ||
5136 | i = cgltf_skip_json(tokens, i + 1); | ||
5137 | } | ||
5138 | |||
5139 | if (i < 0) | ||
5140 | { | ||
5141 | return i; | ||
5142 | } | ||
5143 | } | ||
5144 | |||
5145 | return i; | ||
5146 | } | ||
5147 | |||
5148 | cgltf_result cgltf_parse_json(cgltf_options* options, const uint8_t* json_chunk, cgltf_size size, cgltf_data** out_data) | ||
5149 | { | ||
5150 | jsmn_parser parser = { 0, 0, 0 }; | ||
5151 | |||
5152 | if (options->json_token_count == 0) | ||
5153 | { | ||
5154 | int token_count = jsmn_parse(&parser, (const char*)json_chunk, size, NULL, 0); | ||
5155 | |||
5156 | if (token_count <= 0) | ||
5157 | { | ||
5158 | return cgltf_result_invalid_json; | ||
5159 | } | ||
5160 | |||
5161 | options->json_token_count = token_count; | ||
5162 | } | ||
5163 | |||
5164 | jsmntok_t* tokens = (jsmntok_t*)options->memory.alloc(options->memory.user_data, sizeof(jsmntok_t) * (options->json_token_count + 1)); | ||
5165 | |||
5166 | if (!tokens) | ||
5167 | { | ||
5168 | return cgltf_result_out_of_memory; | ||
5169 | } | ||
5170 | |||
5171 | jsmn_init(&parser); | ||
5172 | |||
5173 | int token_count = jsmn_parse(&parser, (const char*)json_chunk, size, tokens, options->json_token_count); | ||
5174 | |||
5175 | if (token_count <= 0) | ||
5176 | { | ||
5177 | options->memory.free(options->memory.user_data, tokens); | ||
5178 | return cgltf_result_invalid_json; | ||
5179 | } | ||
5180 | |||
5181 | // this makes sure that we always have an UNDEFINED token at the end of the stream | ||
5182 | // for invalid JSON inputs this makes sure we don't perform out of bound reads of token data | ||
5183 | tokens[token_count].type = JSMN_UNDEFINED; | ||
5184 | |||
5185 | cgltf_data* data = (cgltf_data*)options->memory.alloc(options->memory.user_data, sizeof(cgltf_data)); | ||
5186 | |||
5187 | if (!data) | ||
5188 | { | ||
5189 | options->memory.free(options->memory.user_data, tokens); | ||
5190 | return cgltf_result_out_of_memory; | ||
5191 | } | ||
5192 | |||
5193 | memset(data, 0, sizeof(cgltf_data)); | ||
5194 | data->memory = options->memory; | ||
5195 | data->file = options->file; | ||
5196 | |||
5197 | int i = cgltf_parse_json_root(options, tokens, 0, json_chunk, data); | ||
5198 | |||
5199 | options->memory.free(options->memory.user_data, tokens); | ||
5200 | |||
5201 | if (i < 0) | ||
5202 | { | ||
5203 | cgltf_free(data); | ||
5204 | |||
5205 | switch (i) | ||
5206 | { | ||
5207 | case CGLTF_ERROR_NOMEM: return cgltf_result_out_of_memory; | ||
5208 | case CGLTF_ERROR_LEGACY: return cgltf_result_legacy_gltf; | ||
5209 | default: return cgltf_result_invalid_gltf; | ||
5210 | } | ||
5211 | } | ||
5212 | |||
5213 | if (cgltf_fixup_pointers(data) < 0) | ||
5214 | { | ||
5215 | cgltf_free(data); | ||
5216 | return cgltf_result_invalid_gltf; | ||
5217 | } | ||
5218 | |||
5219 | data->json = (const char*)json_chunk; | ||
5220 | data->json_size = size; | ||
5221 | |||
5222 | *out_data = data; | ||
5223 | |||
5224 | return cgltf_result_success; | ||
5225 | } | ||
5226 | |||
5227 | static int cgltf_fixup_pointers(cgltf_data* data) | ||
5228 | { | ||
5229 | for (cgltf_size i = 0; i < data->meshes_count; ++i) | ||
5230 | { | ||
5231 | for (cgltf_size j = 0; j < data->meshes[i].primitives_count; ++j) | ||
5232 | { | ||
5233 | CGLTF_PTRFIXUP(data->meshes[i].primitives[j].indices, data->accessors, data->accessors_count); | ||
5234 | CGLTF_PTRFIXUP(data->meshes[i].primitives[j].material, data->materials, data->materials_count); | ||
5235 | |||
5236 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].attributes_count; ++k) | ||
5237 | { | ||
5238 | CGLTF_PTRFIXUP_REQ(data->meshes[i].primitives[j].attributes[k].data, data->accessors, data->accessors_count); | ||
5239 | } | ||
5240 | |||
5241 | for (cgltf_size k = 0; k < data->meshes[i].primitives[j].targets_count; ++k) | ||
5242 | { | ||
5243 | for (cgltf_size m = 0; m < data->meshes[i].primitives[j].targets[k].attributes_count; ++m) | ||
5244 | { | ||
5245 | CGLTF_PTRFIXUP_REQ(data->meshes[i].primitives[j].targets[k].attributes[m].data, data->accessors, data->accessors_count); | ||
5246 | } | ||
5247 | } | ||
5248 | |||
5249 | if (data->meshes[i].primitives[j].has_draco_mesh_compression) | ||
5250 | { | ||
5251 | CGLTF_PTRFIXUP_REQ(data->meshes[i].primitives[j].draco_mesh_compression.buffer_view, data->buffer_views, data->buffer_views_count); | ||
5252 | for (cgltf_size m = 0; m < data->meshes[i].primitives[j].draco_mesh_compression.attributes_count; ++m) | ||
5253 | { | ||
5254 | CGLTF_PTRFIXUP_REQ(data->meshes[i].primitives[j].draco_mesh_compression.attributes[m].data, data->accessors, data->accessors_count); | ||
5255 | } | ||
5256 | } | ||
5257 | } | ||
5258 | } | ||
5259 | |||
5260 | for (cgltf_size i = 0; i < data->accessors_count; ++i) | ||
5261 | { | ||
5262 | CGLTF_PTRFIXUP(data->accessors[i].buffer_view, data->buffer_views, data->buffer_views_count); | ||
5263 | |||
5264 | if (data->accessors[i].is_sparse) | ||
5265 | { | ||
5266 | CGLTF_PTRFIXUP_REQ(data->accessors[i].sparse.indices_buffer_view, data->buffer_views, data->buffer_views_count); | ||
5267 | CGLTF_PTRFIXUP_REQ(data->accessors[i].sparse.values_buffer_view, data->buffer_views, data->buffer_views_count); | ||
5268 | } | ||
5269 | |||
5270 | if (data->accessors[i].buffer_view) | ||
5271 | { | ||
5272 | data->accessors[i].stride = data->accessors[i].buffer_view->stride; | ||
5273 | } | ||
5274 | |||
5275 | if (data->accessors[i].stride == 0) | ||
5276 | { | ||
5277 | data->accessors[i].stride = cgltf_calc_size(data->accessors[i].type, data->accessors[i].component_type); | ||
5278 | } | ||
5279 | } | ||
5280 | |||
5281 | for (cgltf_size i = 0; i < data->textures_count; ++i) | ||
5282 | { | ||
5283 | CGLTF_PTRFIXUP(data->textures[i].image, data->images, data->images_count); | ||
5284 | CGLTF_PTRFIXUP(data->textures[i].sampler, data->samplers, data->samplers_count); | ||
5285 | } | ||
5286 | |||
5287 | for (cgltf_size i = 0; i < data->images_count; ++i) | ||
5288 | { | ||
5289 | CGLTF_PTRFIXUP(data->images[i].buffer_view, data->buffer_views, data->buffer_views_count); | ||
5290 | } | ||
5291 | |||
5292 | for (cgltf_size i = 0; i < data->materials_count; ++i) | ||
5293 | { | ||
5294 | CGLTF_PTRFIXUP(data->materials[i].normal_texture.texture, data->textures, data->textures_count); | ||
5295 | CGLTF_PTRFIXUP(data->materials[i].emissive_texture.texture, data->textures, data->textures_count); | ||
5296 | CGLTF_PTRFIXUP(data->materials[i].occlusion_texture.texture, data->textures, data->textures_count); | ||
5297 | |||
5298 | CGLTF_PTRFIXUP(data->materials[i].pbr_metallic_roughness.base_color_texture.texture, data->textures, data->textures_count); | ||
5299 | CGLTF_PTRFIXUP(data->materials[i].pbr_metallic_roughness.metallic_roughness_texture.texture, data->textures, data->textures_count); | ||
5300 | |||
5301 | CGLTF_PTRFIXUP(data->materials[i].pbr_specular_glossiness.diffuse_texture.texture, data->textures, data->textures_count); | ||
5302 | CGLTF_PTRFIXUP(data->materials[i].pbr_specular_glossiness.specular_glossiness_texture.texture, data->textures, data->textures_count); | ||
5303 | |||
5304 | CGLTF_PTRFIXUP(data->materials[i].clearcoat.clearcoat_texture.texture, data->textures, data->textures_count); | ||
5305 | CGLTF_PTRFIXUP(data->materials[i].clearcoat.clearcoat_roughness_texture.texture, data->textures, data->textures_count); | ||
5306 | CGLTF_PTRFIXUP(data->materials[i].clearcoat.clearcoat_normal_texture.texture, data->textures, data->textures_count); | ||
5307 | |||
5308 | CGLTF_PTRFIXUP(data->materials[i].specular.specular_texture.texture, data->textures, data->textures_count); | ||
5309 | |||
5310 | CGLTF_PTRFIXUP(data->materials[i].transmission.transmission_texture.texture, data->textures, data->textures_count); | ||
5311 | } | ||
5312 | |||
5313 | for (cgltf_size i = 0; i < data->buffer_views_count; ++i) | ||
5314 | { | ||
5315 | CGLTF_PTRFIXUP_REQ(data->buffer_views[i].buffer, data->buffers, data->buffers_count); | ||
5316 | } | ||
5317 | |||
5318 | for (cgltf_size i = 0; i < data->skins_count; ++i) | ||
5319 | { | ||
5320 | for (cgltf_size j = 0; j < data->skins[i].joints_count; ++j) | ||
5321 | { | ||
5322 | CGLTF_PTRFIXUP_REQ(data->skins[i].joints[j], data->nodes, data->nodes_count); | ||
5323 | } | ||
5324 | |||
5325 | CGLTF_PTRFIXUP(data->skins[i].skeleton, data->nodes, data->nodes_count); | ||
5326 | CGLTF_PTRFIXUP(data->skins[i].inverse_bind_matrices, data->accessors, data->accessors_count); | ||
5327 | } | ||
5328 | |||
5329 | for (cgltf_size i = 0; i < data->nodes_count; ++i) | ||
5330 | { | ||
5331 | for (cgltf_size j = 0; j < data->nodes[i].children_count; ++j) | ||
5332 | { | ||
5333 | CGLTF_PTRFIXUP_REQ(data->nodes[i].children[j], data->nodes, data->nodes_count); | ||
5334 | |||
5335 | if (data->nodes[i].children[j]->parent) | ||
5336 | { | ||
5337 | return CGLTF_ERROR_JSON; | ||
5338 | } | ||
5339 | |||
5340 | data->nodes[i].children[j]->parent = &data->nodes[i]; | ||
5341 | } | ||
5342 | |||
5343 | CGLTF_PTRFIXUP(data->nodes[i].mesh, data->meshes, data->meshes_count); | ||
5344 | CGLTF_PTRFIXUP(data->nodes[i].skin, data->skins, data->skins_count); | ||
5345 | CGLTF_PTRFIXUP(data->nodes[i].camera, data->cameras, data->cameras_count); | ||
5346 | CGLTF_PTRFIXUP(data->nodes[i].light, data->lights, data->lights_count); | ||
5347 | } | ||
5348 | |||
5349 | for (cgltf_size i = 0; i < data->scenes_count; ++i) | ||
5350 | { | ||
5351 | for (cgltf_size j = 0; j < data->scenes[i].nodes_count; ++j) | ||
5352 | { | ||
5353 | CGLTF_PTRFIXUP_REQ(data->scenes[i].nodes[j], data->nodes, data->nodes_count); | ||
5354 | |||
5355 | if (data->scenes[i].nodes[j]->parent) | ||
5356 | { | ||
5357 | return CGLTF_ERROR_JSON; | ||
5358 | } | ||
5359 | } | ||
5360 | } | ||
5361 | |||
5362 | CGLTF_PTRFIXUP(data->scene, data->scenes, data->scenes_count); | ||
5363 | |||
5364 | for (cgltf_size i = 0; i < data->animations_count; ++i) | ||
5365 | { | ||
5366 | for (cgltf_size j = 0; j < data->animations[i].samplers_count; ++j) | ||
5367 | { | ||
5368 | CGLTF_PTRFIXUP_REQ(data->animations[i].samplers[j].input, data->accessors, data->accessors_count); | ||
5369 | CGLTF_PTRFIXUP_REQ(data->animations[i].samplers[j].output, data->accessors, data->accessors_count); | ||
5370 | } | ||
5371 | |||
5372 | for (cgltf_size j = 0; j < data->animations[i].channels_count; ++j) | ||
5373 | { | ||
5374 | CGLTF_PTRFIXUP_REQ(data->animations[i].channels[j].sampler, data->animations[i].samplers, data->animations[i].samplers_count); | ||
5375 | CGLTF_PTRFIXUP(data->animations[i].channels[j].target_node, data->nodes, data->nodes_count); | ||
5376 | } | ||
5377 | } | ||
5378 | |||
5379 | return 0; | ||
5380 | } | ||
5381 | |||
5382 | /* | ||
5383 | * -- jsmn.c start -- | ||
5384 | * Source: https://github.com/zserge/jsmn | ||
5385 | * License: MIT | ||
5386 | * | ||
5387 | * Copyright (c) 2010 Serge A. Zaitsev | ||
5388 | |||
5389 | * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
5390 | * of this software and associated documentation files (the "Software"), to deal | ||
5391 | * in the Software without restriction, including without limitation the rights | ||
5392 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
5393 | * copies of the Software, and to permit persons to whom the Software is | ||
5394 | * furnished to do so, subject to the following conditions: | ||
5395 | |||
5396 | * The above copyright notice and this permission notice shall be included in | ||
5397 | * all copies or substantial portions of the Software. | ||
5398 | |||
5399 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
5400 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
5401 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
5402 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
5403 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
5404 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
5405 | * THE SOFTWARE. | ||
5406 | */ | ||
5407 | |||
5408 | /** | ||
5409 | * Allocates a fresh unused token from the token pull. | ||
5410 | */ | ||
5411 | static jsmntok_t *jsmn_alloc_token(jsmn_parser *parser, | ||
5412 | jsmntok_t *tokens, size_t num_tokens) { | ||
5413 | jsmntok_t *tok; | ||
5414 | if (parser->toknext >= num_tokens) { | ||
5415 | return NULL; | ||
5416 | } | ||
5417 | tok = &tokens[parser->toknext++]; | ||
5418 | tok->start = tok->end = -1; | ||
5419 | tok->size = 0; | ||
5420 | #ifdef JSMN_PARENT_LINKS | ||
5421 | tok->parent = -1; | ||
5422 | #endif | ||
5423 | return tok; | ||
5424 | } | ||
5425 | |||
5426 | /** | ||
5427 | * Fills token type and boundaries. | ||
5428 | */ | ||
5429 | static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, | ||
5430 | int start, int end) { | ||
5431 | token->type = type; | ||
5432 | token->start = start; | ||
5433 | token->end = end; | ||
5434 | token->size = 0; | ||
5435 | } | ||
5436 | |||
5437 | /** | ||
5438 | * Fills next available token with JSON primitive. | ||
5439 | */ | ||
5440 | static int jsmn_parse_primitive(jsmn_parser *parser, const char *js, | ||
5441 | size_t len, jsmntok_t *tokens, size_t num_tokens) { | ||
5442 | jsmntok_t *token; | ||
5443 | int start; | ||
5444 | |||
5445 | start = parser->pos; | ||
5446 | |||
5447 | for (; parser->pos < len && js[parser->pos] != '\0'; parser->pos++) { | ||
5448 | switch (js[parser->pos]) { | ||
5449 | #ifndef JSMN_STRICT | ||
5450 | /* In strict mode primitive must be followed by "," or "}" or "]" */ | ||
5451 | case ':': | ||
5452 | #endif | ||
5453 | case '\t' : case '\r' : case '\n' : case ' ' : | ||
5454 | case ',' : case ']' : case '}' : | ||
5455 | goto found; | ||
5456 | } | ||
5457 | if (js[parser->pos] < 32 || js[parser->pos] >= 127) { | ||
5458 | parser->pos = start; | ||
5459 | return JSMN_ERROR_INVAL; | ||
5460 | } | ||
5461 | } | ||
5462 | #ifdef JSMN_STRICT | ||
5463 | /* In strict mode primitive must be followed by a comma/object/array */ | ||
5464 | parser->pos = start; | ||
5465 | return JSMN_ERROR_PART; | ||
5466 | #endif | ||
5467 | |||
5468 | found: | ||
5469 | if (tokens == NULL) { | ||
5470 | parser->pos--; | ||
5471 | return 0; | ||
5472 | } | ||
5473 | token = jsmn_alloc_token(parser, tokens, num_tokens); | ||
5474 | if (token == NULL) { | ||
5475 | parser->pos = start; | ||
5476 | return JSMN_ERROR_NOMEM; | ||
5477 | } | ||
5478 | jsmn_fill_token(token, JSMN_PRIMITIVE, start, parser->pos); | ||
5479 | #ifdef JSMN_PARENT_LINKS | ||
5480 | token->parent = parser->toksuper; | ||
5481 | #endif | ||
5482 | parser->pos--; | ||
5483 | return 0; | ||
5484 | } | ||
5485 | |||
5486 | /** | ||
5487 | * Fills next token with JSON string. | ||
5488 | */ | ||
5489 | static int jsmn_parse_string(jsmn_parser *parser, const char *js, | ||
5490 | size_t len, jsmntok_t *tokens, size_t num_tokens) { | ||
5491 | jsmntok_t *token; | ||
5492 | |||
5493 | int start = parser->pos; | ||
5494 | |||
5495 | parser->pos++; | ||
5496 | |||
5497 | /* Skip starting quote */ | ||
5498 | for (; parser->pos < len && js[parser->pos] != '\0'; parser->pos++) { | ||
5499 | char c = js[parser->pos]; | ||
5500 | |||
5501 | /* Quote: end of string */ | ||
5502 | if (c == '\"') { | ||
5503 | if (tokens == NULL) { | ||
5504 | return 0; | ||
5505 | } | ||
5506 | token = jsmn_alloc_token(parser, tokens, num_tokens); | ||
5507 | if (token == NULL) { | ||
5508 | parser->pos = start; | ||
5509 | return JSMN_ERROR_NOMEM; | ||
5510 | } | ||
5511 | jsmn_fill_token(token, JSMN_STRING, start+1, parser->pos); | ||
5512 | #ifdef JSMN_PARENT_LINKS | ||
5513 | token->parent = parser->toksuper; | ||
5514 | #endif | ||
5515 | return 0; | ||
5516 | } | ||
5517 | |||
5518 | /* Backslash: Quoted symbol expected */ | ||
5519 | if (c == '\\' && parser->pos + 1 < len) { | ||
5520 | int i; | ||
5521 | parser->pos++; | ||
5522 | switch (js[parser->pos]) { | ||
5523 | /* Allowed escaped symbols */ | ||
5524 | case '\"': case '/' : case '\\' : case 'b' : | ||
5525 | case 'f' : case 'r' : case 'n' : case 't' : | ||
5526 | break; | ||
5527 | /* Allows escaped symbol \uXXXX */ | ||
5528 | case 'u': | ||
5529 | parser->pos++; | ||
5530 | for(i = 0; i < 4 && parser->pos < len && js[parser->pos] != '\0'; i++) { | ||
5531 | /* If it isn't a hex character we have an error */ | ||
5532 | if(!((js[parser->pos] >= 48 && js[parser->pos] <= 57) || /* 0-9 */ | ||
5533 | (js[parser->pos] >= 65 && js[parser->pos] <= 70) || /* A-F */ | ||
5534 | (js[parser->pos] >= 97 && js[parser->pos] <= 102))) { /* a-f */ | ||
5535 | parser->pos = start; | ||
5536 | return JSMN_ERROR_INVAL; | ||
5537 | } | ||
5538 | parser->pos++; | ||
5539 | } | ||
5540 | parser->pos--; | ||
5541 | break; | ||
5542 | /* Unexpected symbol */ | ||
5543 | default: | ||
5544 | parser->pos = start; | ||
5545 | return JSMN_ERROR_INVAL; | ||
5546 | } | ||
5547 | } | ||
5548 | } | ||
5549 | parser->pos = start; | ||
5550 | return JSMN_ERROR_PART; | ||
5551 | } | ||
5552 | |||
5553 | /** | ||
5554 | * Parse JSON string and fill tokens. | ||
5555 | */ | ||
5556 | static int jsmn_parse(jsmn_parser *parser, const char *js, size_t len, | ||
5557 | jsmntok_t *tokens, size_t num_tokens) { | ||
5558 | int r; | ||
5559 | int i; | ||
5560 | jsmntok_t *token; | ||
5561 | int count = parser->toknext; | ||
5562 | |||
5563 | for (; parser->pos < len && js[parser->pos] != '\0'; parser->pos++) { | ||
5564 | char c; | ||
5565 | jsmntype_t type; | ||
5566 | |||
5567 | c = js[parser->pos]; | ||
5568 | switch (c) { | ||
5569 | case '{': case '[': | ||
5570 | count++; | ||
5571 | if (tokens == NULL) { | ||
5572 | break; | ||
5573 | } | ||
5574 | token = jsmn_alloc_token(parser, tokens, num_tokens); | ||
5575 | if (token == NULL) | ||
5576 | return JSMN_ERROR_NOMEM; | ||
5577 | if (parser->toksuper != -1) { | ||
5578 | tokens[parser->toksuper].size++; | ||
5579 | #ifdef JSMN_PARENT_LINKS | ||
5580 | token->parent = parser->toksuper; | ||
5581 | #endif | ||
5582 | } | ||
5583 | token->type = (c == '{' ? JSMN_OBJECT : JSMN_ARRAY); | ||
5584 | token->start = parser->pos; | ||
5585 | parser->toksuper = parser->toknext - 1; | ||
5586 | break; | ||
5587 | case '}': case ']': | ||
5588 | if (tokens == NULL) | ||
5589 | break; | ||
5590 | type = (c == '}' ? JSMN_OBJECT : JSMN_ARRAY); | ||
5591 | #ifdef JSMN_PARENT_LINKS | ||
5592 | if (parser->toknext < 1) { | ||
5593 | return JSMN_ERROR_INVAL; | ||
5594 | } | ||
5595 | token = &tokens[parser->toknext - 1]; | ||
5596 | for (;;) { | ||
5597 | if (token->start != -1 && token->end == -1) { | ||
5598 | if (token->type != type) { | ||
5599 | return JSMN_ERROR_INVAL; | ||
5600 | } | ||
5601 | token->end = parser->pos + 1; | ||
5602 | parser->toksuper = token->parent; | ||
5603 | break; | ||
5604 | } | ||
5605 | if (token->parent == -1) { | ||
5606 | if(token->type != type || parser->toksuper == -1) { | ||
5607 | return JSMN_ERROR_INVAL; | ||
5608 | } | ||
5609 | break; | ||
5610 | } | ||
5611 | token = &tokens[token->parent]; | ||
5612 | } | ||
5613 | #else | ||
5614 | for (i = parser->toknext - 1; i >= 0; i--) { | ||
5615 | token = &tokens[i]; | ||
5616 | if (token->start != -1 && token->end == -1) { | ||
5617 | if (token->type != type) { | ||
5618 | return JSMN_ERROR_INVAL; | ||
5619 | } | ||
5620 | parser->toksuper = -1; | ||
5621 | token->end = parser->pos + 1; | ||
5622 | break; | ||
5623 | } | ||
5624 | } | ||
5625 | /* Error if unmatched closing bracket */ | ||
5626 | if (i == -1) return JSMN_ERROR_INVAL; | ||
5627 | for (; i >= 0; i--) { | ||
5628 | token = &tokens[i]; | ||
5629 | if (token->start != -1 && token->end == -1) { | ||
5630 | parser->toksuper = i; | ||
5631 | break; | ||
5632 | } | ||
5633 | } | ||
5634 | #endif | ||
5635 | break; | ||
5636 | case '\"': | ||
5637 | r = jsmn_parse_string(parser, js, len, tokens, num_tokens); | ||
5638 | if (r < 0) return r; | ||
5639 | count++; | ||
5640 | if (parser->toksuper != -1 && tokens != NULL) | ||
5641 | tokens[parser->toksuper].size++; | ||
5642 | break; | ||
5643 | case '\t' : case '\r' : case '\n' : case ' ': | ||
5644 | break; | ||
5645 | case ':': | ||
5646 | parser->toksuper = parser->toknext - 1; | ||
5647 | break; | ||
5648 | case ',': | ||
5649 | if (tokens != NULL && parser->toksuper != -1 && | ||
5650 | tokens[parser->toksuper].type != JSMN_ARRAY && | ||
5651 | tokens[parser->toksuper].type != JSMN_OBJECT) { | ||
5652 | #ifdef JSMN_PARENT_LINKS | ||
5653 | parser->toksuper = tokens[parser->toksuper].parent; | ||
5654 | #else | ||
5655 | for (i = parser->toknext - 1; i >= 0; i--) { | ||
5656 | if (tokens[i].type == JSMN_ARRAY || tokens[i].type == JSMN_OBJECT) { | ||
5657 | if (tokens[i].start != -1 && tokens[i].end == -1) { | ||
5658 | parser->toksuper = i; | ||
5659 | break; | ||
5660 | } | ||
5661 | } | ||
5662 | } | ||
5663 | #endif | ||
5664 | } | ||
5665 | break; | ||
5666 | #ifdef JSMN_STRICT | ||
5667 | /* In strict mode primitives are: numbers and booleans */ | ||
5668 | case '-': case '0': case '1' : case '2': case '3' : case '4': | ||
5669 | case '5': case '6': case '7' : case '8': case '9': | ||
5670 | case 't': case 'f': case 'n' : | ||
5671 | /* And they must not be keys of the object */ | ||
5672 | if (tokens != NULL && parser->toksuper != -1) { | ||
5673 | jsmntok_t *t = &tokens[parser->toksuper]; | ||
5674 | if (t->type == JSMN_OBJECT || | ||
5675 | (t->type == JSMN_STRING && t->size != 0)) { | ||
5676 | return JSMN_ERROR_INVAL; | ||
5677 | } | ||
5678 | } | ||
5679 | #else | ||
5680 | /* In non-strict mode every unquoted value is a primitive */ | ||
5681 | default: | ||
5682 | #endif | ||
5683 | r = jsmn_parse_primitive(parser, js, len, tokens, num_tokens); | ||
5684 | if (r < 0) return r; | ||
5685 | count++; | ||
5686 | if (parser->toksuper != -1 && tokens != NULL) | ||
5687 | tokens[parser->toksuper].size++; | ||
5688 | break; | ||
5689 | |||
5690 | #ifdef JSMN_STRICT | ||
5691 | /* Unexpected char in strict mode */ | ||
5692 | default: | ||
5693 | return JSMN_ERROR_INVAL; | ||
5694 | #endif | ||
5695 | } | ||
5696 | } | ||
5697 | |||
5698 | if (tokens != NULL) { | ||
5699 | for (i = parser->toknext - 1; i >= 0; i--) { | ||
5700 | /* Unmatched opened object or array */ | ||
5701 | if (tokens[i].start != -1 && tokens[i].end == -1) { | ||
5702 | return JSMN_ERROR_PART; | ||
5703 | } | ||
5704 | } | ||
5705 | } | ||
5706 | |||
5707 | return count; | ||
5708 | } | ||
5709 | |||
5710 | /** | ||
5711 | * Creates a new parser based over a given buffer with an array of tokens | ||
5712 | * available. | ||
5713 | */ | ||
5714 | static void jsmn_init(jsmn_parser *parser) { | ||
5715 | parser->pos = 0; | ||
5716 | parser->toknext = 0; | ||
5717 | parser->toksuper = -1; | ||
5718 | } | ||
5719 | /* | ||
5720 | * -- jsmn.c end -- | ||
5721 | */ | ||
5722 | |||
5723 | #endif /* #ifdef CGLTF_IMPLEMENTATION */ | ||
5724 | |||
5725 | /* cgltf is distributed under MIT license: | ||
5726 | * | ||
5727 | * Copyright (c) 2018 Johannes Kuhlmann | ||
5728 | |||
5729 | * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
5730 | * of this software and associated documentation files (the "Software"), to deal | ||
5731 | * in the Software without restriction, including without limitation the rights | ||
5732 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
5733 | * copies of the Software, and to permit persons to whom the Software is | ||
5734 | * furnished to do so, subject to the following conditions: | ||
5735 | |||
5736 | * The above copyright notice and this permission notice shall be included in all | ||
5737 | * copies or substantial portions of the Software. | ||
5738 | |||
5739 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
5740 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
5741 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
5742 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
5743 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
5744 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
5745 | * SOFTWARE. | ||
5746 | */ | ||
diff --git a/gfx/contrib/cgltf/cgltf_write.h b/gfx/contrib/cgltf/cgltf_write.h new file mode 100644 index 0000000..2096a5b --- /dev/null +++ b/gfx/contrib/cgltf/cgltf_write.h | |||
@@ -0,0 +1,1173 @@ | |||
1 | /** | ||
2 | * cgltf_write - a single-file glTF 2.0 writer written in C99. | ||
3 | * | ||
4 | * Version: 1.7 | ||
5 | * | ||
6 | * Website: https://github.com/jkuhlmann/cgltf | ||
7 | * | ||
8 | * Distributed under the MIT License, see notice at the end of this file. | ||
9 | * | ||
10 | * Building: | ||
11 | * Include this file where you need the struct and function | ||
12 | * declarations. Have exactly one source file where you define | ||
13 | * `CGLTF_WRITE_IMPLEMENTATION` before including this file to get the | ||
14 | * function definitions. | ||
15 | * | ||
16 | * Reference: | ||
17 | * `cgltf_result cgltf_write_file(const cgltf_options* options, const char* | ||
18 | * path, const cgltf_data* data)` writes JSON to the given file path. Buffer | ||
19 | * files and external images are not written out. `data` is not deallocated. | ||
20 | * | ||
21 | * `cgltf_size cgltf_write(const cgltf_options* options, char* buffer, | ||
22 | * cgltf_size size, const cgltf_data* data)` writes JSON into the given memory | ||
23 | * buffer. Returns the number of bytes written to `buffer`, including a null | ||
24 | * terminator. If buffer is null, returns the number of bytes that would have | ||
25 | * been written. `data` is not deallocated. | ||
26 | * | ||
27 | * To write custom JSON into the `extras` field, aggregate all the custom JSON | ||
28 | * into a single buffer, then set `file_data` to this buffer. By supplying | ||
29 | * start_offset and end_offset values for various objects, you can select a | ||
30 | * range of characters within the aggregated buffer. | ||
31 | */ | ||
32 | #ifndef CGLTF_WRITE_H_INCLUDED__ | ||
33 | #define CGLTF_WRITE_H_INCLUDED__ | ||
34 | |||
35 | #include "cgltf.h" | ||
36 | |||
37 | #include <stddef.h> | ||
38 | #include <stdbool.h> | ||
39 | |||
40 | #ifdef __cplusplus | ||
41 | extern "C" { | ||
42 | #endif | ||
43 | |||
44 | cgltf_result cgltf_write_file(const cgltf_options* options, const char* path, const cgltf_data* data); | ||
45 | cgltf_size cgltf_write(const cgltf_options* options, char* buffer, cgltf_size size, const cgltf_data* data); | ||
46 | |||
47 | #ifdef __cplusplus | ||
48 | } | ||
49 | #endif | ||
50 | |||
51 | #endif /* #ifndef CGLTF_WRITE_H_INCLUDED__ */ | ||
52 | |||
53 | /* | ||
54 | * | ||
55 | * Stop now, if you are only interested in the API. | ||
56 | * Below, you find the implementation. | ||
57 | * | ||
58 | */ | ||
59 | |||
60 | #if defined(__INTELLISENSE__) || defined(__JETBRAINS_IDE__) | ||
61 | /* This makes MSVC/CLion intellisense work. */ | ||
62 | #define CGLTF_IMPLEMENTATION | ||
63 | #endif | ||
64 | |||
65 | #ifdef CGLTF_WRITE_IMPLEMENTATION | ||
66 | |||
67 | #include <stdio.h> | ||
68 | #include <stdint.h> | ||
69 | #include <stdlib.h> | ||
70 | #include <string.h> | ||
71 | |||
72 | #define CGLTF_EXTENSION_FLAG_TEXTURE_TRANSFORM (1 << 0) | ||
73 | #define CGLTF_EXTENSION_FLAG_MATERIALS_UNLIT (1 << 1) | ||
74 | #define CGLTF_EXTENSION_FLAG_SPECULAR_GLOSSINESS (1 << 2) | ||
75 | #define CGLTF_EXTENSION_FLAG_LIGHTS_PUNCTUAL (1 << 3) | ||
76 | #define CGLTF_EXTENSION_FLAG_DRACO_MESH_COMPRESSION (1 << 4) | ||
77 | #define CGLTF_EXTENSION_FLAG_MATERIALS_CLEARCOAT (1 << 5) | ||
78 | #define CGLTF_EXTENSION_FLAG_MATERIALS_IOR (1 << 6) | ||
79 | #define CGLTF_EXTENSION_FLAG_MATERIALS_SPECULAR (1 << 7) | ||
80 | #define CGLTF_EXTENSION_FLAG_MATERIALS_TRANSMISSION (1 << 8) | ||
81 | |||
82 | typedef struct { | ||
83 | char* buffer; | ||
84 | cgltf_size buffer_size; | ||
85 | cgltf_size remaining; | ||
86 | char* cursor; | ||
87 | cgltf_size tmp; | ||
88 | cgltf_size chars_written; | ||
89 | const cgltf_data* data; | ||
90 | int depth; | ||
91 | const char* indent; | ||
92 | int needs_comma; | ||
93 | uint32_t extension_flags; | ||
94 | uint32_t required_extension_flags; | ||
95 | } cgltf_write_context; | ||
96 | |||
97 | #define CGLTF_MIN(a, b) (a < b ? a : b) | ||
98 | |||
99 | #define CGLTF_SPRINTF(...) { \ | ||
100 | context->tmp = snprintf ( context->cursor, context->remaining, __VA_ARGS__ ); \ | ||
101 | context->chars_written += context->tmp; \ | ||
102 | if (context->cursor) { \ | ||
103 | context->cursor += context->tmp; \ | ||
104 | context->remaining -= context->tmp; \ | ||
105 | } } | ||
106 | |||
107 | #define CGLTF_SNPRINTF(length, ...) { \ | ||
108 | context->tmp = snprintf ( context->cursor, CGLTF_MIN(length + 1, context->remaining), __VA_ARGS__ ); \ | ||
109 | context->chars_written += length; \ | ||
110 | if (context->cursor) { \ | ||
111 | context->cursor += length; \ | ||
112 | context->remaining -= length; \ | ||
113 | } } | ||
114 | |||
115 | #define CGLTF_WRITE_IDXPROP(label, val, start) if (val) { \ | ||
116 | cgltf_write_indent(context); \ | ||
117 | CGLTF_SPRINTF("\"%s\": %d", label, (int) (val - start)); \ | ||
118 | context->needs_comma = 1; } | ||
119 | |||
120 | #define CGLTF_WRITE_IDXARRPROP(label, dim, vals, start) if (vals) { \ | ||
121 | cgltf_write_indent(context); \ | ||
122 | CGLTF_SPRINTF("\"%s\": [", label); \ | ||
123 | for (int i = 0; i < (int)(dim); ++i) { \ | ||
124 | int idx = (int) (vals[i] - start); \ | ||
125 | if (i != 0) CGLTF_SPRINTF(","); \ | ||
126 | CGLTF_SPRINTF(" %d", idx); \ | ||
127 | } \ | ||
128 | CGLTF_SPRINTF(" ]"); \ | ||
129 | context->needs_comma = 1; } | ||
130 | |||
131 | #define CGLTF_WRITE_TEXTURE_INFO(label, info) if (info.texture) { \ | ||
132 | cgltf_write_line(context, "\"" label "\": {"); \ | ||
133 | CGLTF_WRITE_IDXPROP("index", info.texture, context->data->textures); \ | ||
134 | cgltf_write_intprop(context, "texCoord", info.texcoord, 0); \ | ||
135 | cgltf_write_floatprop(context, "scale", info.scale, 1.0f); \ | ||
136 | if (info.has_transform) { \ | ||
137 | context->extension_flags |= CGLTF_EXTENSION_FLAG_TEXTURE_TRANSFORM; \ | ||
138 | cgltf_write_texture_transform(context, &info.transform); \ | ||
139 | } \ | ||
140 | cgltf_write_extras(context, &info.extras); \ | ||
141 | cgltf_write_line(context, "}"); } | ||
142 | |||
143 | static void cgltf_write_indent(cgltf_write_context* context) | ||
144 | { | ||
145 | if (context->needs_comma) | ||
146 | { | ||
147 | CGLTF_SPRINTF(",\n"); | ||
148 | context->needs_comma = 0; | ||
149 | } | ||
150 | else | ||
151 | { | ||
152 | CGLTF_SPRINTF("\n"); | ||
153 | } | ||
154 | for (int i = 0; i < context->depth; ++i) | ||
155 | { | ||
156 | CGLTF_SPRINTF("%s", context->indent); | ||
157 | } | ||
158 | } | ||
159 | |||
160 | static void cgltf_write_line(cgltf_write_context* context, const char* line) | ||
161 | { | ||
162 | if (line[0] == ']' || line[0] == '}') | ||
163 | { | ||
164 | --context->depth; | ||
165 | context->needs_comma = 0; | ||
166 | } | ||
167 | cgltf_write_indent(context); | ||
168 | CGLTF_SPRINTF("%s", line); | ||
169 | cgltf_size last = (cgltf_size)(strlen(line) - 1); | ||
170 | if (line[0] == ']' || line[0] == '}') | ||
171 | { | ||
172 | context->needs_comma = 1; | ||
173 | } | ||
174 | if (line[last] == '[' || line[last] == '{') | ||
175 | { | ||
176 | ++context->depth; | ||
177 | context->needs_comma = 0; | ||
178 | } | ||
179 | } | ||
180 | |||
181 | static void cgltf_write_strprop(cgltf_write_context* context, const char* label, const char* val) | ||
182 | { | ||
183 | if (val) | ||
184 | { | ||
185 | cgltf_write_indent(context); | ||
186 | CGLTF_SPRINTF("\"%s\": \"%s\"", label, val); | ||
187 | context->needs_comma = 1; | ||
188 | } | ||
189 | } | ||
190 | |||
191 | static void cgltf_write_extras(cgltf_write_context* context, const cgltf_extras* extras) | ||
192 | { | ||
193 | cgltf_size length = extras->end_offset - extras->start_offset; | ||
194 | if (length > 0 && context->data->file_data) | ||
195 | { | ||
196 | char* json_string = ((char*) context->data->file_data) + extras->start_offset; | ||
197 | cgltf_write_indent(context); | ||
198 | CGLTF_SPRINTF("%s", "\"extras\": "); | ||
199 | CGLTF_SNPRINTF(length, "%s", json_string); | ||
200 | context->needs_comma = 1; | ||
201 | } | ||
202 | } | ||
203 | |||
204 | static void cgltf_write_stritem(cgltf_write_context* context, const char* item) | ||
205 | { | ||
206 | cgltf_write_indent(context); | ||
207 | CGLTF_SPRINTF("\"%s\"", item); | ||
208 | context->needs_comma = 1; | ||
209 | } | ||
210 | |||
211 | static void cgltf_write_intprop(cgltf_write_context* context, const char* label, int val, int def) | ||
212 | { | ||
213 | if (val != def) | ||
214 | { | ||
215 | cgltf_write_indent(context); | ||
216 | CGLTF_SPRINTF("\"%s\": %d", label, val); | ||
217 | context->needs_comma = 1; | ||
218 | } | ||
219 | } | ||
220 | |||
221 | static void cgltf_write_floatprop(cgltf_write_context* context, const char* label, float val, float def) | ||
222 | { | ||
223 | if (val != def) | ||
224 | { | ||
225 | cgltf_write_indent(context); | ||
226 | CGLTF_SPRINTF("\"%s\": ", label); | ||
227 | CGLTF_SPRINTF("%g", val); | ||
228 | context->needs_comma = 1; | ||
229 | |||
230 | if (context->cursor) | ||
231 | { | ||
232 | char *decimal_comma = strchr(context->cursor - context->tmp, ','); | ||
233 | if (decimal_comma) | ||
234 | { | ||
235 | *decimal_comma = '.'; | ||
236 | } | ||
237 | } | ||
238 | } | ||
239 | } | ||
240 | |||
241 | static void cgltf_write_boolprop_optional(cgltf_write_context* context, const char* label, bool val, bool def) | ||
242 | { | ||
243 | if (val != def) | ||
244 | { | ||
245 | cgltf_write_indent(context); | ||
246 | CGLTF_SPRINTF("\"%s\": %s", label, val ? "true" : "false"); | ||
247 | context->needs_comma = 1; | ||
248 | } | ||
249 | } | ||
250 | |||
251 | static void cgltf_write_floatarrayprop(cgltf_write_context* context, const char* label, const cgltf_float* vals, cgltf_size dim) | ||
252 | { | ||
253 | cgltf_write_indent(context); | ||
254 | CGLTF_SPRINTF("\"%s\": [", label); | ||
255 | for (cgltf_size i = 0; i < dim; ++i) | ||
256 | { | ||
257 | if (i != 0) | ||
258 | { | ||
259 | CGLTF_SPRINTF(", %g", vals[i]); | ||
260 | } | ||
261 | else | ||
262 | { | ||
263 | CGLTF_SPRINTF("%g", vals[i]); | ||
264 | } | ||
265 | } | ||
266 | CGLTF_SPRINTF("]"); | ||
267 | context->needs_comma = 1; | ||
268 | } | ||
269 | |||
270 | static bool cgltf_check_floatarray(const float* vals, int dim, float val) { | ||
271 | while (dim--) | ||
272 | { | ||
273 | if (vals[dim] != val) | ||
274 | { | ||
275 | return true; | ||
276 | } | ||
277 | } | ||
278 | return false; | ||
279 | } | ||
280 | |||
281 | static int cgltf_int_from_component_type(cgltf_component_type ctype) | ||
282 | { | ||
283 | switch (ctype) | ||
284 | { | ||
285 | case cgltf_component_type_r_8: return 5120; | ||
286 | case cgltf_component_type_r_8u: return 5121; | ||
287 | case cgltf_component_type_r_16: return 5122; | ||
288 | case cgltf_component_type_r_16u: return 5123; | ||
289 | case cgltf_component_type_r_32u: return 5125; | ||
290 | case cgltf_component_type_r_32f: return 5126; | ||
291 | default: return 0; | ||
292 | } | ||
293 | } | ||
294 | |||
295 | static const char* cgltf_str_from_alpha_mode(cgltf_alpha_mode alpha_mode) | ||
296 | { | ||
297 | switch (alpha_mode) | ||
298 | { | ||
299 | case cgltf_alpha_mode_mask: return "MASK"; | ||
300 | case cgltf_alpha_mode_blend: return "BLEND"; | ||
301 | default: return NULL; | ||
302 | } | ||
303 | } | ||
304 | |||
305 | static const char* cgltf_str_from_type(cgltf_type type) | ||
306 | { | ||
307 | switch (type) | ||
308 | { | ||
309 | case cgltf_type_scalar: return "SCALAR"; | ||
310 | case cgltf_type_vec2: return "VEC2"; | ||
311 | case cgltf_type_vec3: return "VEC3"; | ||
312 | case cgltf_type_vec4: return "VEC4"; | ||
313 | case cgltf_type_mat2: return "MAT2"; | ||
314 | case cgltf_type_mat3: return "MAT3"; | ||
315 | case cgltf_type_mat4: return "MAT4"; | ||
316 | default: return NULL; | ||
317 | } | ||
318 | } | ||
319 | |||
320 | static cgltf_size cgltf_dim_from_type(cgltf_type type) | ||
321 | { | ||
322 | switch (type) | ||
323 | { | ||
324 | case cgltf_type_scalar: return 1; | ||
325 | case cgltf_type_vec2: return 2; | ||
326 | case cgltf_type_vec3: return 3; | ||
327 | case cgltf_type_vec4: return 4; | ||
328 | case cgltf_type_mat2: return 4; | ||
329 | case cgltf_type_mat3: return 9; | ||
330 | case cgltf_type_mat4: return 16; | ||
331 | default: return 0; | ||
332 | } | ||
333 | } | ||
334 | |||
335 | static const char* cgltf_str_from_camera_type(cgltf_camera_type camera_type) | ||
336 | { | ||
337 | switch (camera_type) | ||
338 | { | ||
339 | case cgltf_camera_type_perspective: return "perspective"; | ||
340 | case cgltf_camera_type_orthographic: return "orthographic"; | ||
341 | default: return NULL; | ||
342 | } | ||
343 | } | ||
344 | |||
345 | static const char* cgltf_str_from_light_type(cgltf_light_type light_type) | ||
346 | { | ||
347 | switch (light_type) | ||
348 | { | ||
349 | case cgltf_light_type_directional: return "directional"; | ||
350 | case cgltf_light_type_point: return "point"; | ||
351 | case cgltf_light_type_spot: return "spot"; | ||
352 | default: return NULL; | ||
353 | } | ||
354 | } | ||
355 | |||
356 | static void cgltf_write_texture_transform(cgltf_write_context* context, const cgltf_texture_transform* transform) | ||
357 | { | ||
358 | cgltf_write_line(context, "\"extensions\": {"); | ||
359 | cgltf_write_line(context, "\"KHR_texture_transform\": {"); | ||
360 | if (cgltf_check_floatarray(transform->offset, 2, 0.0f)) | ||
361 | { | ||
362 | cgltf_write_floatarrayprop(context, "offset", transform->offset, 2); | ||
363 | } | ||
364 | cgltf_write_floatprop(context, "rotation", transform->rotation, 0.0f); | ||
365 | if (cgltf_check_floatarray(transform->scale, 2, 1.0f)) | ||
366 | { | ||
367 | cgltf_write_floatarrayprop(context, "scale", transform->scale, 2); | ||
368 | } | ||
369 | cgltf_write_intprop(context, "texCoord", transform->texcoord, 0); | ||
370 | cgltf_write_line(context, "}"); | ||
371 | cgltf_write_line(context, "}"); | ||
372 | } | ||
373 | |||
374 | static void cgltf_write_asset(cgltf_write_context* context, const cgltf_asset* asset) | ||
375 | { | ||
376 | cgltf_write_line(context, "\"asset\": {"); | ||
377 | cgltf_write_strprop(context, "copyright", asset->copyright); | ||
378 | cgltf_write_strprop(context, "generator", asset->generator); | ||
379 | cgltf_write_strprop(context, "version", asset->version); | ||
380 | cgltf_write_strprop(context, "min_version", asset->min_version); | ||
381 | cgltf_write_extras(context, &asset->extras); | ||
382 | cgltf_write_line(context, "}"); | ||
383 | } | ||
384 | |||
385 | static void cgltf_write_primitive(cgltf_write_context* context, const cgltf_primitive* prim) | ||
386 | { | ||
387 | cgltf_write_intprop(context, "mode", (int) prim->type, 4); | ||
388 | CGLTF_WRITE_IDXPROP("indices", prim->indices, context->data->accessors); | ||
389 | CGLTF_WRITE_IDXPROP("material", prim->material, context->data->materials); | ||
390 | cgltf_write_line(context, "\"attributes\": {"); | ||
391 | for (cgltf_size i = 0; i < prim->attributes_count; ++i) | ||
392 | { | ||
393 | const cgltf_attribute* attr = prim->attributes + i; | ||
394 | CGLTF_WRITE_IDXPROP(attr->name, attr->data, context->data->accessors); | ||
395 | } | ||
396 | cgltf_write_line(context, "}"); | ||
397 | |||
398 | if (prim->targets_count) | ||
399 | { | ||
400 | cgltf_write_line(context, "\"targets\": ["); | ||
401 | for (cgltf_size i = 0; i < prim->targets_count; ++i) | ||
402 | { | ||
403 | cgltf_write_line(context, "{"); | ||
404 | for (cgltf_size j = 0; j < prim->targets[i].attributes_count; ++j) | ||
405 | { | ||
406 | const cgltf_attribute* attr = prim->targets[i].attributes + j; | ||
407 | CGLTF_WRITE_IDXPROP(attr->name, attr->data, context->data->accessors); | ||
408 | } | ||
409 | cgltf_write_line(context, "}"); | ||
410 | } | ||
411 | cgltf_write_line(context, "]"); | ||
412 | } | ||
413 | cgltf_write_extras(context, &prim->extras); | ||
414 | |||
415 | cgltf_bool has_extensions = prim->has_draco_mesh_compression; | ||
416 | if (has_extensions) { | ||
417 | cgltf_write_line(context, "\"extensions\": {"); | ||
418 | |||
419 | if (prim->has_draco_mesh_compression) { | ||
420 | context->extension_flags |= CGLTF_EXTENSION_FLAG_DRACO_MESH_COMPRESSION; | ||
421 | if (prim->attributes_count == 0 || prim->indices == 0) { | ||
422 | context->required_extension_flags |= CGLTF_EXTENSION_FLAG_DRACO_MESH_COMPRESSION; | ||
423 | } | ||
424 | |||
425 | cgltf_write_line(context, "\"KHR_draco_mesh_compression\": {"); | ||
426 | CGLTF_WRITE_IDXPROP("bufferView", prim->draco_mesh_compression.buffer_view, context->data->buffer_views); | ||
427 | cgltf_write_line(context, "\"attributes\": {"); | ||
428 | for (cgltf_size i = 0; i < prim->draco_mesh_compression.attributes_count; ++i) | ||
429 | { | ||
430 | const cgltf_attribute* attr = prim->draco_mesh_compression.attributes + i; | ||
431 | CGLTF_WRITE_IDXPROP(attr->name, attr->data, context->data->accessors); | ||
432 | } | ||
433 | cgltf_write_line(context, "}"); | ||
434 | cgltf_write_line(context, "}"); | ||
435 | } | ||
436 | |||
437 | cgltf_write_line(context, "}"); | ||
438 | } | ||
439 | } | ||
440 | |||
441 | static void cgltf_write_mesh(cgltf_write_context* context, const cgltf_mesh* mesh) | ||
442 | { | ||
443 | cgltf_write_line(context, "{"); | ||
444 | cgltf_write_strprop(context, "name", mesh->name); | ||
445 | |||
446 | cgltf_write_line(context, "\"primitives\": ["); | ||
447 | for (cgltf_size i = 0; i < mesh->primitives_count; ++i) | ||
448 | { | ||
449 | cgltf_write_line(context, "{"); | ||
450 | cgltf_write_primitive(context, mesh->primitives + i); | ||
451 | cgltf_write_line(context, "}"); | ||
452 | } | ||
453 | cgltf_write_line(context, "]"); | ||
454 | |||
455 | if (mesh->weights_count > 0) | ||
456 | { | ||
457 | cgltf_write_floatarrayprop(context, "weights", mesh->weights, mesh->weights_count); | ||
458 | } | ||
459 | cgltf_write_extras(context, &mesh->extras); | ||
460 | cgltf_write_line(context, "}"); | ||
461 | } | ||
462 | |||
463 | static void cgltf_write_buffer_view(cgltf_write_context* context, const cgltf_buffer_view* view) | ||
464 | { | ||
465 | cgltf_write_line(context, "{"); | ||
466 | CGLTF_WRITE_IDXPROP("buffer", view->buffer, context->data->buffers); | ||
467 | cgltf_write_intprop(context, "byteLength", (int)view->size, -1); | ||
468 | cgltf_write_intprop(context, "byteOffset", (int)view->offset, 0); | ||
469 | cgltf_write_intprop(context, "byteStride", (int)view->stride, 0); | ||
470 | // NOTE: We skip writing "target" because the spec says its usage can be inferred. | ||
471 | cgltf_write_extras(context, &view->extras); | ||
472 | cgltf_write_line(context, "}"); | ||
473 | } | ||
474 | |||
475 | |||
476 | static void cgltf_write_buffer(cgltf_write_context* context, const cgltf_buffer* buffer) | ||
477 | { | ||
478 | cgltf_write_line(context, "{"); | ||
479 | cgltf_write_strprop(context, "uri", buffer->uri); | ||
480 | cgltf_write_intprop(context, "byteLength", (int)buffer->size, -1); | ||
481 | cgltf_write_extras(context, &buffer->extras); | ||
482 | cgltf_write_line(context, "}"); | ||
483 | } | ||
484 | |||
485 | static void cgltf_write_material(cgltf_write_context* context, const cgltf_material* material) | ||
486 | { | ||
487 | cgltf_write_line(context, "{"); | ||
488 | cgltf_write_strprop(context, "name", material->name); | ||
489 | cgltf_write_floatprop(context, "alphaCutoff", material->alpha_cutoff, 0.5f); | ||
490 | cgltf_write_boolprop_optional(context, "doubleSided", material->double_sided, false); | ||
491 | // cgltf_write_boolprop_optional(context, "unlit", material->unlit, false); | ||
492 | |||
493 | if (material->unlit) | ||
494 | { | ||
495 | context->extension_flags |= CGLTF_EXTENSION_FLAG_MATERIALS_UNLIT; | ||
496 | } | ||
497 | |||
498 | if (material->has_pbr_specular_glossiness) | ||
499 | { | ||
500 | context->extension_flags |= CGLTF_EXTENSION_FLAG_SPECULAR_GLOSSINESS; | ||
501 | } | ||
502 | |||
503 | if (material->has_clearcoat) | ||
504 | { | ||
505 | context->extension_flags |= CGLTF_EXTENSION_FLAG_MATERIALS_CLEARCOAT; | ||
506 | } | ||
507 | |||
508 | if (material->has_transmission) | ||
509 | { | ||
510 | context->extension_flags |= CGLTF_EXTENSION_FLAG_MATERIALS_TRANSMISSION; | ||
511 | } | ||
512 | |||
513 | if (material->has_ior) | ||
514 | { | ||
515 | context->extension_flags |= CGLTF_EXTENSION_FLAG_MATERIALS_IOR; | ||
516 | } | ||
517 | |||
518 | if (material->has_specular) | ||
519 | { | ||
520 | context->extension_flags |= CGLTF_EXTENSION_FLAG_MATERIALS_SPECULAR; | ||
521 | } | ||
522 | |||
523 | if (material->has_pbr_metallic_roughness) | ||
524 | { | ||
525 | const cgltf_pbr_metallic_roughness* params = &material->pbr_metallic_roughness; | ||
526 | cgltf_write_line(context, "\"pbrMetallicRoughness\": {"); | ||
527 | CGLTF_WRITE_TEXTURE_INFO("baseColorTexture", params->base_color_texture); | ||
528 | CGLTF_WRITE_TEXTURE_INFO("metallicRoughnessTexture", params->metallic_roughness_texture); | ||
529 | cgltf_write_floatprop(context, "metallicFactor", params->metallic_factor, 1.0f); | ||
530 | cgltf_write_floatprop(context, "roughnessFactor", params->roughness_factor, 1.0f); | ||
531 | if (cgltf_check_floatarray(params->base_color_factor, 4, 1.0f)) | ||
532 | { | ||
533 | cgltf_write_floatarrayprop(context, "baseColorFactor", params->base_color_factor, 4); | ||
534 | } | ||
535 | cgltf_write_extras(context, ¶ms->extras); | ||
536 | cgltf_write_line(context, "}"); | ||
537 | } | ||
538 | |||
539 | if (material->unlit || material->has_pbr_specular_glossiness || material->has_clearcoat || material->has_ior || material->has_specular || material->has_transmission) | ||
540 | { | ||
541 | cgltf_write_line(context, "\"extensions\": {"); | ||
542 | if (material->has_clearcoat) | ||
543 | { | ||
544 | const cgltf_clearcoat* params = &material->clearcoat; | ||
545 | cgltf_write_line(context, "\"KHR_materials_clearcoat\": {"); | ||
546 | CGLTF_WRITE_TEXTURE_INFO("clearcoatTexture", params->clearcoat_texture); | ||
547 | CGLTF_WRITE_TEXTURE_INFO("clearcoatRoughnessTexture", params->clearcoat_roughness_texture); | ||
548 | CGLTF_WRITE_TEXTURE_INFO("clearcoatNormalTexture", params->clearcoat_normal_texture); | ||
549 | cgltf_write_floatprop(context, "clearcoatFactor", params->clearcoat_factor, 0.0f); | ||
550 | cgltf_write_floatprop(context, "clearcoatRoughnessFactor", params->clearcoat_roughness_factor, 0.0f); | ||
551 | cgltf_write_line(context, "}"); | ||
552 | } | ||
553 | if (material->has_ior) | ||
554 | { | ||
555 | const cgltf_ior* params = &material->ior; | ||
556 | cgltf_write_line(context, "\"KHR_materials_ior\": {"); | ||
557 | cgltf_write_floatprop(context, "ior", params->ior, 1.5f); | ||
558 | cgltf_write_line(context, "}"); | ||
559 | } | ||
560 | if (material->has_specular) | ||
561 | { | ||
562 | const cgltf_specular* params = &material->specular; | ||
563 | cgltf_write_line(context, "\"KHR_materials_specular\": {"); | ||
564 | CGLTF_WRITE_TEXTURE_INFO("specularTexture", params->specular_texture); | ||
565 | cgltf_write_floatprop(context, "specularFactor", params->specular_factor, 1.0f); | ||
566 | if (cgltf_check_floatarray(params->specular_color_factor, 3, 1.0f)) | ||
567 | { | ||
568 | cgltf_write_floatarrayprop(context, "specularColorFactor", params->specular_color_factor, 3); | ||
569 | } | ||
570 | cgltf_write_line(context, "}"); | ||
571 | } | ||
572 | if (material->has_transmission) | ||
573 | { | ||
574 | const cgltf_transmission* params = &material->transmission; | ||
575 | cgltf_write_line(context, "\"KHR_materials_transmission\": {"); | ||
576 | CGLTF_WRITE_TEXTURE_INFO("transmissionTexture", params->transmission_texture); | ||
577 | cgltf_write_floatprop(context, "transmissionFactor", params->transmission_factor, 0.0f); | ||
578 | cgltf_write_line(context, "}"); | ||
579 | } | ||
580 | if (material->has_pbr_specular_glossiness) | ||
581 | { | ||
582 | const cgltf_pbr_specular_glossiness* params = &material->pbr_specular_glossiness; | ||
583 | cgltf_write_line(context, "\"KHR_materials_pbrSpecularGlossiness\": {"); | ||
584 | CGLTF_WRITE_TEXTURE_INFO("diffuseTexture", params->diffuse_texture); | ||
585 | CGLTF_WRITE_TEXTURE_INFO("specularGlossinessTexture", params->specular_glossiness_texture); | ||
586 | if (cgltf_check_floatarray(params->diffuse_factor, 4, 1.0f)) | ||
587 | { | ||
588 | cgltf_write_floatarrayprop(context, "dffuseFactor", params->diffuse_factor, 4); | ||
589 | } | ||
590 | if (cgltf_check_floatarray(params->specular_factor, 3, 1.0f)) | ||
591 | { | ||
592 | cgltf_write_floatarrayprop(context, "specularFactor", params->specular_factor, 3); | ||
593 | } | ||
594 | cgltf_write_floatprop(context, "glossinessFactor", params->glossiness_factor, 1.0f); | ||
595 | cgltf_write_line(context, "}"); | ||
596 | } | ||
597 | if (material->unlit) | ||
598 | { | ||
599 | cgltf_write_line(context, "\"KHR_materials_unlit\": {}"); | ||
600 | } | ||
601 | cgltf_write_line(context, "}"); | ||
602 | } | ||
603 | |||
604 | CGLTF_WRITE_TEXTURE_INFO("normalTexture", material->normal_texture); | ||
605 | CGLTF_WRITE_TEXTURE_INFO("occlusionTexture", material->occlusion_texture); | ||
606 | CGLTF_WRITE_TEXTURE_INFO("emissiveTexture", material->emissive_texture); | ||
607 | if (cgltf_check_floatarray(material->emissive_factor, 3, 0.0f)) | ||
608 | { | ||
609 | cgltf_write_floatarrayprop(context, "emissiveFactor", material->emissive_factor, 3); | ||
610 | } | ||
611 | cgltf_write_strprop(context, "alphaMode", cgltf_str_from_alpha_mode(material->alpha_mode)); | ||
612 | cgltf_write_extras(context, &material->extras); | ||
613 | cgltf_write_line(context, "}"); | ||
614 | } | ||
615 | |||
616 | static void cgltf_write_image(cgltf_write_context* context, const cgltf_image* image) | ||
617 | { | ||
618 | cgltf_write_line(context, "{"); | ||
619 | cgltf_write_strprop(context, "name", image->name); | ||
620 | cgltf_write_strprop(context, "uri", image->uri); | ||
621 | CGLTF_WRITE_IDXPROP("bufferView", image->buffer_view, context->data->buffer_views); | ||
622 | cgltf_write_strprop(context, "mimeType", image->mime_type); | ||
623 | cgltf_write_extras(context, &image->extras); | ||
624 | cgltf_write_line(context, "}"); | ||
625 | } | ||
626 | |||
627 | static void cgltf_write_texture(cgltf_write_context* context, const cgltf_texture* texture) | ||
628 | { | ||
629 | cgltf_write_line(context, "{"); | ||
630 | cgltf_write_strprop(context, "name", texture->name); | ||
631 | CGLTF_WRITE_IDXPROP("source", texture->image, context->data->images); | ||
632 | CGLTF_WRITE_IDXPROP("sampler", texture->sampler, context->data->samplers); | ||
633 | cgltf_write_extras(context, &texture->extras); | ||
634 | cgltf_write_line(context, "}"); | ||
635 | } | ||
636 | |||
637 | static void cgltf_write_skin(cgltf_write_context* context, const cgltf_skin* skin) | ||
638 | { | ||
639 | cgltf_write_line(context, "{"); | ||
640 | CGLTF_WRITE_IDXPROP("skeleton", skin->skeleton, context->data->nodes); | ||
641 | CGLTF_WRITE_IDXPROP("inverseBindMatrices", skin->inverse_bind_matrices, context->data->accessors); | ||
642 | CGLTF_WRITE_IDXARRPROP("joints", skin->joints_count, skin->joints, context->data->nodes); | ||
643 | cgltf_write_strprop(context, "name", skin->name); | ||
644 | cgltf_write_extras(context, &skin->extras); | ||
645 | cgltf_write_line(context, "}"); | ||
646 | } | ||
647 | |||
648 | static const char* cgltf_write_str_path_type(cgltf_animation_path_type path_type) | ||
649 | { | ||
650 | switch (path_type) | ||
651 | { | ||
652 | case cgltf_animation_path_type_translation: | ||
653 | return "translation"; | ||
654 | case cgltf_animation_path_type_rotation: | ||
655 | return "rotation"; | ||
656 | case cgltf_animation_path_type_scale: | ||
657 | return "scale"; | ||
658 | case cgltf_animation_path_type_weights: | ||
659 | return "weights"; | ||
660 | case cgltf_animation_path_type_invalid: | ||
661 | break; | ||
662 | } | ||
663 | return "invalid"; | ||
664 | } | ||
665 | |||
666 | static const char* cgltf_write_str_interpolation_type(cgltf_interpolation_type interpolation_type) | ||
667 | { | ||
668 | switch (interpolation_type) | ||
669 | { | ||
670 | case cgltf_interpolation_type_linear: | ||
671 | return "LINEAR"; | ||
672 | case cgltf_interpolation_type_step: | ||
673 | return "STEP"; | ||
674 | case cgltf_interpolation_type_cubic_spline: | ||
675 | return "CUBICSPLINE"; | ||
676 | } | ||
677 | return "invalid"; | ||
678 | } | ||
679 | |||
680 | static void cgltf_write_path_type(cgltf_write_context* context, const char *label, cgltf_animation_path_type path_type) | ||
681 | { | ||
682 | cgltf_write_strprop(context, label, cgltf_write_str_path_type(path_type)); | ||
683 | } | ||
684 | |||
685 | static void cgltf_write_interpolation_type(cgltf_write_context* context, const char *label, cgltf_interpolation_type interpolation_type) | ||
686 | { | ||
687 | cgltf_write_strprop(context, label, cgltf_write_str_interpolation_type(interpolation_type)); | ||
688 | } | ||
689 | |||
690 | static void cgltf_write_animation_sampler(cgltf_write_context* context, const cgltf_animation_sampler* animation_sampler) | ||
691 | { | ||
692 | cgltf_write_line(context, "{"); | ||
693 | cgltf_write_interpolation_type(context, "interpolation", animation_sampler->interpolation); | ||
694 | CGLTF_WRITE_IDXPROP("input", animation_sampler->input, context->data->accessors); | ||
695 | CGLTF_WRITE_IDXPROP("output", animation_sampler->output, context->data->accessors); | ||
696 | cgltf_write_extras(context, &animation_sampler->extras); | ||
697 | cgltf_write_line(context, "}"); | ||
698 | } | ||
699 | |||
700 | static void cgltf_write_animation_channel(cgltf_write_context* context, const cgltf_animation* animation, const cgltf_animation_channel* animation_channel) | ||
701 | { | ||
702 | cgltf_write_line(context, "{"); | ||
703 | CGLTF_WRITE_IDXPROP("sampler", animation_channel->sampler, animation->samplers); | ||
704 | cgltf_write_line(context, "\"target\": {"); | ||
705 | CGLTF_WRITE_IDXPROP("node", animation_channel->target_node, context->data->nodes); | ||
706 | cgltf_write_path_type(context, "path", animation_channel->target_path); | ||
707 | cgltf_write_line(context, "}"); | ||
708 | cgltf_write_extras(context, &animation_channel->extras); | ||
709 | cgltf_write_line(context, "}"); | ||
710 | } | ||
711 | |||
712 | static void cgltf_write_animation(cgltf_write_context* context, const cgltf_animation* animation) | ||
713 | { | ||
714 | cgltf_write_line(context, "{"); | ||
715 | cgltf_write_strprop(context, "name", animation->name); | ||
716 | |||
717 | if (animation->samplers_count > 0) | ||
718 | { | ||
719 | cgltf_write_line(context, "\"samplers\": ["); | ||
720 | for (cgltf_size i = 0; i < animation->samplers_count; ++i) | ||
721 | { | ||
722 | cgltf_write_animation_sampler(context, animation->samplers + i); | ||
723 | } | ||
724 | cgltf_write_line(context, "]"); | ||
725 | } | ||
726 | if (animation->channels_count > 0) | ||
727 | { | ||
728 | cgltf_write_line(context, "\"channels\": ["); | ||
729 | for (cgltf_size i = 0; i < animation->channels_count; ++i) | ||
730 | { | ||
731 | cgltf_write_animation_channel(context, animation, animation->channels + i); | ||
732 | } | ||
733 | cgltf_write_line(context, "]"); | ||
734 | } | ||
735 | cgltf_write_extras(context, &animation->extras); | ||
736 | cgltf_write_line(context, "}"); | ||
737 | } | ||
738 | |||
739 | static void cgltf_write_sampler(cgltf_write_context* context, const cgltf_sampler* sampler) | ||
740 | { | ||
741 | cgltf_write_line(context, "{"); | ||
742 | cgltf_write_intprop(context, "magFilter", sampler->mag_filter, 0); | ||
743 | cgltf_write_intprop(context, "minFilter", sampler->min_filter, 0); | ||
744 | cgltf_write_intprop(context, "wrapS", sampler->wrap_s, 10497); | ||
745 | cgltf_write_intprop(context, "wrapT", sampler->wrap_t, 10497); | ||
746 | cgltf_write_extras(context, &sampler->extras); | ||
747 | cgltf_write_line(context, "}"); | ||
748 | } | ||
749 | |||
750 | static void cgltf_write_node(cgltf_write_context* context, const cgltf_node* node) | ||
751 | { | ||
752 | cgltf_write_line(context, "{"); | ||
753 | CGLTF_WRITE_IDXARRPROP("children", node->children_count, node->children, context->data->nodes); | ||
754 | CGLTF_WRITE_IDXPROP("mesh", node->mesh, context->data->meshes); | ||
755 | cgltf_write_strprop(context, "name", node->name); | ||
756 | if (node->has_matrix) | ||
757 | { | ||
758 | cgltf_write_floatarrayprop(context, "matrix", node->matrix, 16); | ||
759 | } | ||
760 | if (node->has_translation) | ||
761 | { | ||
762 | cgltf_write_floatarrayprop(context, "translation", node->translation, 3); | ||
763 | } | ||
764 | if (node->has_rotation) | ||
765 | { | ||
766 | cgltf_write_floatarrayprop(context, "rotation", node->rotation, 4); | ||
767 | } | ||
768 | if (node->has_scale) | ||
769 | { | ||
770 | cgltf_write_floatarrayprop(context, "scale", node->scale, 3); | ||
771 | } | ||
772 | if (node->skin) | ||
773 | { | ||
774 | CGLTF_WRITE_IDXPROP("skin", node->skin, context->data->skins); | ||
775 | } | ||
776 | |||
777 | if (node->light) | ||
778 | { | ||
779 | context->extension_flags |= CGLTF_EXTENSION_FLAG_LIGHTS_PUNCTUAL; | ||
780 | cgltf_write_line(context, "\"extensions\": {"); | ||
781 | cgltf_write_line(context, "\"KHR_lights_punctual\": {"); | ||
782 | CGLTF_WRITE_IDXPROP("light", node->light, context->data->lights); | ||
783 | cgltf_write_line(context, "}"); | ||
784 | cgltf_write_line(context, "}"); | ||
785 | } | ||
786 | |||
787 | if (node->weights_count > 0) | ||
788 | { | ||
789 | cgltf_write_floatarrayprop(context, "weights", node->weights, node->weights_count); | ||
790 | } | ||
791 | |||
792 | if (node->camera) | ||
793 | { | ||
794 | CGLTF_WRITE_IDXPROP("camera", node->camera, context->data->cameras); | ||
795 | } | ||
796 | |||
797 | cgltf_write_extras(context, &node->extras); | ||
798 | cgltf_write_line(context, "}"); | ||
799 | } | ||
800 | |||
801 | static void cgltf_write_scene(cgltf_write_context* context, const cgltf_scene* scene) | ||
802 | { | ||
803 | cgltf_write_line(context, "{"); | ||
804 | cgltf_write_strprop(context, "name", scene->name); | ||
805 | CGLTF_WRITE_IDXARRPROP("nodes", scene->nodes_count, scene->nodes, context->data->nodes); | ||
806 | cgltf_write_extras(context, &scene->extras); | ||
807 | cgltf_write_line(context, "}"); | ||
808 | } | ||
809 | |||
810 | static void cgltf_write_accessor(cgltf_write_context* context, const cgltf_accessor* accessor) | ||
811 | { | ||
812 | cgltf_write_line(context, "{"); | ||
813 | CGLTF_WRITE_IDXPROP("bufferView", accessor->buffer_view, context->data->buffer_views); | ||
814 | cgltf_write_intprop(context, "componentType", cgltf_int_from_component_type(accessor->component_type), 0); | ||
815 | cgltf_write_strprop(context, "type", cgltf_str_from_type(accessor->type)); | ||
816 | cgltf_size dim = cgltf_dim_from_type(accessor->type); | ||
817 | cgltf_write_boolprop_optional(context, "normalized", accessor->normalized, false); | ||
818 | cgltf_write_intprop(context, "byteOffset", (int)accessor->offset, 0); | ||
819 | cgltf_write_intprop(context, "count", (int)accessor->count, -1); | ||
820 | if (accessor->has_min) | ||
821 | { | ||
822 | cgltf_write_floatarrayprop(context, "min", accessor->min, dim); | ||
823 | } | ||
824 | if (accessor->has_max) | ||
825 | { | ||
826 | cgltf_write_floatarrayprop(context, "max", accessor->max, dim); | ||
827 | } | ||
828 | if (accessor->is_sparse) | ||
829 | { | ||
830 | cgltf_write_line(context, "\"sparse\": {"); | ||
831 | cgltf_write_intprop(context, "count", (int)accessor->sparse.count, 0); | ||
832 | cgltf_write_line(context, "\"indices\": {"); | ||
833 | cgltf_write_intprop(context, "byteOffset", (int)accessor->sparse.indices_byte_offset, 0); | ||
834 | CGLTF_WRITE_IDXPROP("bufferView", accessor->sparse.indices_buffer_view, context->data->buffer_views); | ||
835 | cgltf_write_intprop(context, "componentType", cgltf_int_from_component_type(accessor->sparse.indices_component_type), 0); | ||
836 | cgltf_write_extras(context, &accessor->sparse.indices_extras); | ||
837 | cgltf_write_line(context, "}"); | ||
838 | cgltf_write_line(context, "\"values\": {"); | ||
839 | cgltf_write_intprop(context, "byteOffset", (int)accessor->sparse.values_byte_offset, 0); | ||
840 | CGLTF_WRITE_IDXPROP("bufferView", accessor->sparse.values_buffer_view, context->data->buffer_views); | ||
841 | cgltf_write_extras(context, &accessor->sparse.values_extras); | ||
842 | cgltf_write_line(context, "}"); | ||
843 | cgltf_write_extras(context, &accessor->sparse.extras); | ||
844 | cgltf_write_line(context, "}"); | ||
845 | } | ||
846 | cgltf_write_extras(context, &accessor->extras); | ||
847 | cgltf_write_line(context, "}"); | ||
848 | } | ||
849 | |||
850 | static void cgltf_write_camera(cgltf_write_context* context, const cgltf_camera* camera) | ||
851 | { | ||
852 | cgltf_write_line(context, "{"); | ||
853 | cgltf_write_strprop(context, "type", cgltf_str_from_camera_type(camera->type)); | ||
854 | if (camera->name) | ||
855 | { | ||
856 | cgltf_write_strprop(context, "name", camera->name); | ||
857 | } | ||
858 | |||
859 | if (camera->type == cgltf_camera_type_orthographic) | ||
860 | { | ||
861 | cgltf_write_line(context, "\"orthographic\": {"); | ||
862 | cgltf_write_floatprop(context, "xmag", camera->data.orthographic.xmag, -1.0f); | ||
863 | cgltf_write_floatprop(context, "ymag", camera->data.orthographic.ymag, -1.0f); | ||
864 | cgltf_write_floatprop(context, "zfar", camera->data.orthographic.zfar, -1.0f); | ||
865 | cgltf_write_floatprop(context, "znear", camera->data.orthographic.znear, -1.0f); | ||
866 | cgltf_write_extras(context, &camera->data.orthographic.extras); | ||
867 | cgltf_write_line(context, "}"); | ||
868 | } | ||
869 | else if (camera->type == cgltf_camera_type_perspective) | ||
870 | { | ||
871 | cgltf_write_line(context, "\"perspective\": {"); | ||
872 | cgltf_write_floatprop(context, "aspectRatio", camera->data.perspective.aspect_ratio, -1.0f); | ||
873 | cgltf_write_floatprop(context, "yfov", camera->data.perspective.yfov, -1.0f); | ||
874 | cgltf_write_floatprop(context, "zfar", camera->data.perspective.zfar, -1.0f); | ||
875 | cgltf_write_floatprop(context, "znear", camera->data.perspective.znear, -1.0f); | ||
876 | cgltf_write_extras(context, &camera->data.perspective.extras); | ||
877 | cgltf_write_line(context, "}"); | ||
878 | } | ||
879 | cgltf_write_extras(context, &camera->extras); | ||
880 | cgltf_write_line(context, "}"); | ||
881 | } | ||
882 | |||
883 | static void cgltf_write_light(cgltf_write_context* context, const cgltf_light* light) | ||
884 | { | ||
885 | cgltf_write_line(context, "{"); | ||
886 | cgltf_write_strprop(context, "type", cgltf_str_from_light_type(light->type)); | ||
887 | if (light->name) | ||
888 | { | ||
889 | cgltf_write_strprop(context, "name", light->name); | ||
890 | } | ||
891 | if (cgltf_check_floatarray(light->color, 3, 1.0f)) | ||
892 | { | ||
893 | cgltf_write_floatarrayprop(context, "color", light->color, 3); | ||
894 | } | ||
895 | cgltf_write_floatprop(context, "intensity", light->intensity, 1.0f); | ||
896 | cgltf_write_floatprop(context, "range", light->range, 0.0f); | ||
897 | |||
898 | if (light->type == cgltf_light_type_spot) | ||
899 | { | ||
900 | cgltf_write_line(context, "\"spot\": {"); | ||
901 | cgltf_write_floatprop(context, "innerConeAngle", light->spot_inner_cone_angle, 0.0f); | ||
902 | cgltf_write_floatprop(context, "outerConeAngle", light->spot_outer_cone_angle, 3.14159265358979323846f/4.0f); | ||
903 | cgltf_write_line(context, "}"); | ||
904 | } | ||
905 | cgltf_write_line(context, "}"); | ||
906 | } | ||
907 | |||
908 | cgltf_result cgltf_write_file(const cgltf_options* options, const char* path, const cgltf_data* data) | ||
909 | { | ||
910 | cgltf_size expected = cgltf_write(options, NULL, 0, data); | ||
911 | char* buffer = (char*) malloc(expected); | ||
912 | cgltf_size actual = cgltf_write(options, buffer, expected, data); | ||
913 | if (expected != actual) { | ||
914 | fprintf(stderr, "Error: expected %zu bytes but wrote %zu bytes.\n", expected, actual); | ||
915 | } | ||
916 | FILE* file = fopen(path, "wt"); | ||
917 | if (!file) | ||
918 | { | ||
919 | return cgltf_result_file_not_found; | ||
920 | } | ||
921 | // Note that cgltf_write() includes a null terminator, which we omit from the file content. | ||
922 | fwrite(buffer, actual - 1, 1, file); | ||
923 | fclose(file); | ||
924 | free(buffer); | ||
925 | return cgltf_result_success; | ||
926 | } | ||
927 | |||
928 | static void cgltf_write_extensions(cgltf_write_context* context, uint32_t extension_flags) | ||
929 | { | ||
930 | if (extension_flags & CGLTF_EXTENSION_FLAG_TEXTURE_TRANSFORM) { | ||
931 | cgltf_write_stritem(context, "KHR_texture_transform"); | ||
932 | } | ||
933 | if (extension_flags & CGLTF_EXTENSION_FLAG_MATERIALS_UNLIT) { | ||
934 | cgltf_write_stritem(context, "KHR_materials_unlit"); | ||
935 | } | ||
936 | if (extension_flags & CGLTF_EXTENSION_FLAG_SPECULAR_GLOSSINESS) { | ||
937 | cgltf_write_stritem(context, "KHR_materials_pbrSpecularGlossiness"); | ||
938 | } | ||
939 | if (extension_flags & CGLTF_EXTENSION_FLAG_LIGHTS_PUNCTUAL) { | ||
940 | cgltf_write_stritem(context, "KHR_lights_punctual"); | ||
941 | } | ||
942 | if (extension_flags & CGLTF_EXTENSION_FLAG_DRACO_MESH_COMPRESSION) { | ||
943 | cgltf_write_stritem(context, "KHR_draco_mesh_compression"); | ||
944 | } | ||
945 | if (extension_flags & CGLTF_EXTENSION_FLAG_MATERIALS_CLEARCOAT) { | ||
946 | cgltf_write_stritem(context, "KHR_materials_clearcoat"); | ||
947 | } | ||
948 | if (extension_flags & CGLTF_EXTENSION_FLAG_MATERIALS_IOR) { | ||
949 | cgltf_write_stritem(context, "KHR_materials_ior"); | ||
950 | } | ||
951 | if (extension_flags & CGLTF_EXTENSION_FLAG_MATERIALS_SPECULAR) { | ||
952 | cgltf_write_stritem(context, "KHR_materials_specular"); | ||
953 | } | ||
954 | if (extension_flags & CGLTF_EXTENSION_FLAG_MATERIALS_TRANSMISSION) { | ||
955 | cgltf_write_stritem(context, "KHR_materials_transmission"); | ||
956 | } | ||
957 | } | ||
958 | |||
959 | cgltf_size cgltf_write(const cgltf_options* options, char* buffer, cgltf_size size, const cgltf_data* data) | ||
960 | { | ||
961 | (void)options; | ||
962 | cgltf_write_context ctx; | ||
963 | ctx.buffer = buffer; | ||
964 | ctx.buffer_size = size; | ||
965 | ctx.remaining = size; | ||
966 | ctx.cursor = buffer; | ||
967 | ctx.chars_written = 0; | ||
968 | ctx.data = data; | ||
969 | ctx.depth = 1; | ||
970 | ctx.indent = " "; | ||
971 | ctx.needs_comma = 0; | ||
972 | ctx.extension_flags = 0; | ||
973 | ctx.required_extension_flags = 0; | ||
974 | |||
975 | cgltf_write_context* context = &ctx; | ||
976 | |||
977 | CGLTF_SPRINTF("{"); | ||
978 | |||
979 | if (data->accessors_count > 0) | ||
980 | { | ||
981 | cgltf_write_line(context, "\"accessors\": ["); | ||
982 | for (cgltf_size i = 0; i < data->accessors_count; ++i) | ||
983 | { | ||
984 | cgltf_write_accessor(context, data->accessors + i); | ||
985 | } | ||
986 | cgltf_write_line(context, "]"); | ||
987 | } | ||
988 | |||
989 | cgltf_write_asset(context, &data->asset); | ||
990 | |||
991 | if (data->buffer_views_count > 0) | ||
992 | { | ||
993 | cgltf_write_line(context, "\"bufferViews\": ["); | ||
994 | for (cgltf_size i = 0; i < data->buffer_views_count; ++i) | ||
995 | { | ||
996 | cgltf_write_buffer_view(context, data->buffer_views + i); | ||
997 | } | ||
998 | cgltf_write_line(context, "]"); | ||
999 | } | ||
1000 | |||
1001 | if (data->buffers_count > 0) | ||
1002 | { | ||
1003 | cgltf_write_line(context, "\"buffers\": ["); | ||
1004 | for (cgltf_size i = 0; i < data->buffers_count; ++i) | ||
1005 | { | ||
1006 | cgltf_write_buffer(context, data->buffers + i); | ||
1007 | } | ||
1008 | cgltf_write_line(context, "]"); | ||
1009 | } | ||
1010 | |||
1011 | if (data->images_count > 0) | ||
1012 | { | ||
1013 | cgltf_write_line(context, "\"images\": ["); | ||
1014 | for (cgltf_size i = 0; i < data->images_count; ++i) | ||
1015 | { | ||
1016 | cgltf_write_image(context, data->images + i); | ||
1017 | } | ||
1018 | cgltf_write_line(context, "]"); | ||
1019 | } | ||
1020 | |||
1021 | if (data->meshes_count > 0) | ||
1022 | { | ||
1023 | cgltf_write_line(context, "\"meshes\": ["); | ||
1024 | for (cgltf_size i = 0; i < data->meshes_count; ++i) | ||
1025 | { | ||
1026 | cgltf_write_mesh(context, data->meshes + i); | ||
1027 | } | ||
1028 | cgltf_write_line(context, "]"); | ||
1029 | } | ||
1030 | |||
1031 | if (data->materials_count > 0) | ||
1032 | { | ||
1033 | cgltf_write_line(context, "\"materials\": ["); | ||
1034 | for (cgltf_size i = 0; i < data->materials_count; ++i) | ||
1035 | { | ||
1036 | cgltf_write_material(context, data->materials + i); | ||
1037 | } | ||
1038 | cgltf_write_line(context, "]"); | ||
1039 | } | ||
1040 | |||
1041 | if (data->nodes_count > 0) | ||
1042 | { | ||
1043 | cgltf_write_line(context, "\"nodes\": ["); | ||
1044 | for (cgltf_size i = 0; i < data->nodes_count; ++i) | ||
1045 | { | ||
1046 | cgltf_write_node(context, data->nodes + i); | ||
1047 | } | ||
1048 | cgltf_write_line(context, "]"); | ||
1049 | } | ||
1050 | |||
1051 | if (data->samplers_count > 0) | ||
1052 | { | ||
1053 | cgltf_write_line(context, "\"samplers\": ["); | ||
1054 | for (cgltf_size i = 0; i < data->samplers_count; ++i) | ||
1055 | { | ||
1056 | cgltf_write_sampler(context, data->samplers + i); | ||
1057 | } | ||
1058 | cgltf_write_line(context, "]"); | ||
1059 | } | ||
1060 | |||
1061 | CGLTF_WRITE_IDXPROP("scene", data->scene, data->scenes); | ||
1062 | |||
1063 | if (data->scenes_count > 0) | ||
1064 | { | ||
1065 | cgltf_write_line(context, "\"scenes\": ["); | ||
1066 | for (cgltf_size i = 0; i < data->scenes_count; ++i) | ||
1067 | { | ||
1068 | cgltf_write_scene(context, data->scenes + i); | ||
1069 | } | ||
1070 | cgltf_write_line(context, "]"); | ||
1071 | } | ||
1072 | |||
1073 | if (data->textures_count > 0) | ||
1074 | { | ||
1075 | cgltf_write_line(context, "\"textures\": ["); | ||
1076 | for (cgltf_size i = 0; i < data->textures_count; ++i) | ||
1077 | { | ||
1078 | cgltf_write_texture(context, data->textures + i); | ||
1079 | } | ||
1080 | cgltf_write_line(context, "]"); | ||
1081 | } | ||
1082 | |||
1083 | if (data->skins_count > 0) | ||
1084 | { | ||
1085 | cgltf_write_line(context, "\"skins\": ["); | ||
1086 | for (cgltf_size i = 0; i < data->skins_count; ++i) | ||
1087 | { | ||
1088 | cgltf_write_skin(context, data->skins + i); | ||
1089 | } | ||
1090 | cgltf_write_line(context, "]"); | ||
1091 | } | ||
1092 | |||
1093 | if (data->animations_count > 0) | ||
1094 | { | ||
1095 | cgltf_write_line(context, "\"animations\": ["); | ||
1096 | for (cgltf_size i = 0; i < data->animations_count; ++i) | ||
1097 | { | ||
1098 | cgltf_write_animation(context, data->animations + i); | ||
1099 | } | ||
1100 | cgltf_write_line(context, "]"); | ||
1101 | } | ||
1102 | |||
1103 | if (data->cameras_count > 0) | ||
1104 | { | ||
1105 | cgltf_write_line(context, "\"cameras\": ["); | ||
1106 | for (cgltf_size i = 0; i < data->cameras_count; ++i) | ||
1107 | { | ||
1108 | cgltf_write_camera(context, data->cameras + i); | ||
1109 | } | ||
1110 | cgltf_write_line(context, "]"); | ||
1111 | } | ||
1112 | |||
1113 | if (data->lights_count > 0) | ||
1114 | { | ||
1115 | cgltf_write_line(context, "\"extensions\": {"); | ||
1116 | |||
1117 | cgltf_write_line(context, "\"KHR_lights_punctual\": {"); | ||
1118 | cgltf_write_line(context, "\"lights\": ["); | ||
1119 | for (cgltf_size i = 0; i < data->lights_count; ++i) | ||
1120 | { | ||
1121 | cgltf_write_light(context, data->lights + i); | ||
1122 | } | ||
1123 | cgltf_write_line(context, "]"); | ||
1124 | cgltf_write_line(context, "}"); | ||
1125 | |||
1126 | cgltf_write_line(context, "}"); | ||
1127 | } | ||
1128 | |||
1129 | if (context->extension_flags != 0) { | ||
1130 | cgltf_write_line(context, "\"extensionsUsed\": ["); | ||
1131 | cgltf_write_extensions(context, context->extension_flags); | ||
1132 | cgltf_write_line(context, "]"); | ||
1133 | } | ||
1134 | |||
1135 | if (context->required_extension_flags != 0) { | ||
1136 | cgltf_write_line(context, "\"extensionsRequired\": ["); | ||
1137 | cgltf_write_extensions(context, context->required_extension_flags); | ||
1138 | cgltf_write_line(context, "]"); | ||
1139 | } | ||
1140 | |||
1141 | cgltf_write_extras(context, &data->extras); | ||
1142 | |||
1143 | CGLTF_SPRINTF("\n}\n"); | ||
1144 | |||
1145 | // snprintf does not include the null terminator in its return value, so be sure to include it | ||
1146 | // in the returned byte count. | ||
1147 | return 1 + ctx.chars_written; | ||
1148 | } | ||
1149 | |||
1150 | #endif /* #ifdef CGLTF_WRITE_IMPLEMENTATION */ | ||
1151 | |||
1152 | /* cgltf is distributed under MIT license: | ||
1153 | * | ||
1154 | * Copyright (c) 2019 Philip Rideout | ||
1155 | |||
1156 | * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
1157 | * of this software and associated documentation files (the "Software"), to deal | ||
1158 | * in the Software without restriction, including without limitation the rights | ||
1159 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
1160 | * copies of the Software, and to permit persons to whom the Software is | ||
1161 | * furnished to do so, subject to the following conditions: | ||
1162 | |||
1163 | * The above copyright notice and this permission notice shall be included in all | ||
1164 | * copies or substantial portions of the Software. | ||
1165 | |||
1166 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
1167 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
1168 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
1169 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
1170 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
1171 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
1172 | * SOFTWARE. | ||
1173 | */ | ||
diff --git a/gfx/contrib/glad.zip b/gfx/contrib/glad.zip new file mode 100644 index 0000000..d5d3564 --- /dev/null +++ b/gfx/contrib/glad.zip | |||
Binary files differ | |||
diff --git a/gfx/contrib/glad/CMakeLists.txt b/gfx/contrib/glad/CMakeLists.txt new file mode 100644 index 0000000..08b550c --- /dev/null +++ b/gfx/contrib/glad/CMakeLists.txt | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 3.16) | ||
2 | |||
3 | project(glad) | ||
4 | |||
5 | add_library(glad | ||
6 | src/glad.c) | ||
7 | |||
8 | target_include_directories(glad PUBLIC | ||
9 | include) | ||
diff --git a/gfx/contrib/glad/README.md b/gfx/contrib/glad/README.md new file mode 100644 index 0000000..a0c9908 --- /dev/null +++ b/gfx/contrib/glad/README.md | |||
@@ -0,0 +1,10 @@ | |||
1 | # GLAD | ||
2 | |||
3 | [GLAD OpenGL file loader](https://glad.dav1d.de/) | ||
4 | |||
5 | Spec: OpenGL | ||
6 | Profile: Core | ||
7 | |||
8 | GL: 4.6 | ||
9 | GLES1: None | ||
10 | GLES2: 3.2 | ||
diff --git a/gfx/contrib/glad/include/KHR/khrplatform.h b/gfx/contrib/glad/include/KHR/khrplatform.h new file mode 100644 index 0000000..dd22d92 --- /dev/null +++ b/gfx/contrib/glad/include/KHR/khrplatform.h | |||
@@ -0,0 +1,290 @@ | |||
1 | #ifndef __khrplatform_h_ | ||
2 | #define __khrplatform_h_ | ||
3 | |||
4 | /* | ||
5 | ** Copyright (c) 2008-2018 The Khronos Group Inc. | ||
6 | ** | ||
7 | ** Permission is hereby granted, free of charge, to any person obtaining a | ||
8 | ** copy of this software and/or associated documentation files (the | ||
9 | ** "Materials"), to deal in the Materials without restriction, including | ||
10 | ** without limitation the rights to use, copy, modify, merge, publish, | ||
11 | ** distribute, sublicense, and/or sell copies of the Materials, and to | ||
12 | ** permit persons to whom the Materials are furnished to do so, subject to | ||
13 | ** the following conditions: | ||
14 | ** | ||
15 | ** The above copyright notice and this permission notice shall be included | ||
16 | ** in all copies or substantial portions of the Materials. | ||
17 | ** | ||
18 | ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
19 | ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
20 | ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
21 | ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
22 | ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
23 | ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
24 | ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. | ||
25 | */ | ||
26 | |||
27 | /* Khronos platform-specific types and definitions. | ||
28 | * | ||
29 | * The master copy of khrplatform.h is maintained in the Khronos EGL | ||
30 | * Registry repository at https://github.com/KhronosGroup/EGL-Registry | ||
31 | * The last semantic modification to khrplatform.h was at commit ID: | ||
32 | * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 | ||
33 | * | ||
34 | * Adopters may modify this file to suit their platform. Adopters are | ||
35 | * encouraged to submit platform specific modifications to the Khronos | ||
36 | * group so that they can be included in future versions of this file. | ||
37 | * Please submit changes by filing pull requests or issues on | ||
38 | * the EGL Registry repository linked above. | ||
39 | * | ||
40 | * | ||
41 | * See the Implementer's Guidelines for information about where this file | ||
42 | * should be located on your system and for more details of its use: | ||
43 | * http://www.khronos.org/registry/implementers_guide.pdf | ||
44 | * | ||
45 | * This file should be included as | ||
46 | * #include <KHR/khrplatform.h> | ||
47 | * by Khronos client API header files that use its types and defines. | ||
48 | * | ||
49 | * The types in khrplatform.h should only be used to define API-specific types. | ||
50 | * | ||
51 | * Types defined in khrplatform.h: | ||
52 | * khronos_int8_t signed 8 bit | ||
53 | * khronos_uint8_t unsigned 8 bit | ||
54 | * khronos_int16_t signed 16 bit | ||
55 | * khronos_uint16_t unsigned 16 bit | ||
56 | * khronos_int32_t signed 32 bit | ||
57 | * khronos_uint32_t unsigned 32 bit | ||
58 | * khronos_int64_t signed 64 bit | ||
59 | * khronos_uint64_t unsigned 64 bit | ||
60 | * khronos_intptr_t signed same number of bits as a pointer | ||
61 | * khronos_uintptr_t unsigned same number of bits as a pointer | ||
62 | * khronos_ssize_t signed size | ||
63 | * khronos_usize_t unsigned size | ||
64 | * khronos_float_t signed 32 bit floating point | ||
65 | * khronos_time_ns_t unsigned 64 bit time in nanoseconds | ||
66 | * khronos_utime_nanoseconds_t unsigned time interval or absolute time in | ||
67 | * nanoseconds | ||
68 | * khronos_stime_nanoseconds_t signed time interval in nanoseconds | ||
69 | * khronos_boolean_enum_t enumerated boolean type. This should | ||
70 | * only be used as a base type when a client API's boolean type is | ||
71 | * an enum. Client APIs which use an integer or other type for | ||
72 | * booleans cannot use this as the base type for their boolean. | ||
73 | * | ||
74 | * Tokens defined in khrplatform.h: | ||
75 | * | ||
76 | * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. | ||
77 | * | ||
78 | * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. | ||
79 | * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. | ||
80 | * | ||
81 | * Calling convention macros defined in this file: | ||
82 | * KHRONOS_APICALL | ||
83 | * KHRONOS_APIENTRY | ||
84 | * KHRONOS_APIATTRIBUTES | ||
85 | * | ||
86 | * These may be used in function prototypes as: | ||
87 | * | ||
88 | * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( | ||
89 | * int arg1, | ||
90 | * int arg2) KHRONOS_APIATTRIBUTES; | ||
91 | */ | ||
92 | |||
93 | #if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) | ||
94 | # define KHRONOS_STATIC 1 | ||
95 | #endif | ||
96 | |||
97 | /*------------------------------------------------------------------------- | ||
98 | * Definition of KHRONOS_APICALL | ||
99 | *------------------------------------------------------------------------- | ||
100 | * This precedes the return type of the function in the function prototype. | ||
101 | */ | ||
102 | #if defined(KHRONOS_STATIC) | ||
103 | /* If the preprocessor constant KHRONOS_STATIC is defined, make the | ||
104 | * header compatible with static linking. */ | ||
105 | # define KHRONOS_APICALL | ||
106 | #elif defined(_WIN32) | ||
107 | # define KHRONOS_APICALL __declspec(dllimport) | ||
108 | #elif defined (__SYMBIAN32__) | ||
109 | # define KHRONOS_APICALL IMPORT_C | ||
110 | #elif defined(__ANDROID__) | ||
111 | # define KHRONOS_APICALL __attribute__((visibility("default"))) | ||
112 | #else | ||
113 | # define KHRONOS_APICALL | ||
114 | #endif | ||
115 | |||
116 | /*------------------------------------------------------------------------- | ||
117 | * Definition of KHRONOS_APIENTRY | ||
118 | *------------------------------------------------------------------------- | ||
119 | * This follows the return type of the function and precedes the function | ||
120 | * name in the function prototype. | ||
121 | */ | ||
122 | #if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) | ||
123 | /* Win32 but not WinCE */ | ||
124 | # define KHRONOS_APIENTRY __stdcall | ||
125 | #else | ||
126 | # define KHRONOS_APIENTRY | ||
127 | #endif | ||
128 | |||
129 | /*------------------------------------------------------------------------- | ||
130 | * Definition of KHRONOS_APIATTRIBUTES | ||
131 | *------------------------------------------------------------------------- | ||
132 | * This follows the closing parenthesis of the function prototype arguments. | ||
133 | */ | ||
134 | #if defined (__ARMCC_2__) | ||
135 | #define KHRONOS_APIATTRIBUTES __softfp | ||
136 | #else | ||
137 | #define KHRONOS_APIATTRIBUTES | ||
138 | #endif | ||
139 | |||
140 | /*------------------------------------------------------------------------- | ||
141 | * basic type definitions | ||
142 | *-----------------------------------------------------------------------*/ | ||
143 | #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) | ||
144 | |||
145 | |||
146 | /* | ||
147 | * Using <stdint.h> | ||
148 | */ | ||
149 | #include <stdint.h> | ||
150 | typedef int32_t khronos_int32_t; | ||
151 | typedef uint32_t khronos_uint32_t; | ||
152 | typedef int64_t khronos_int64_t; | ||
153 | typedef uint64_t khronos_uint64_t; | ||
154 | #define KHRONOS_SUPPORT_INT64 1 | ||
155 | #define KHRONOS_SUPPORT_FLOAT 1 | ||
156 | |||
157 | #elif defined(__VMS ) || defined(__sgi) | ||
158 | |||
159 | /* | ||
160 | * Using <inttypes.h> | ||
161 | */ | ||
162 | #include <inttypes.h> | ||
163 | typedef int32_t khronos_int32_t; | ||
164 | typedef uint32_t khronos_uint32_t; | ||
165 | typedef int64_t khronos_int64_t; | ||
166 | typedef uint64_t khronos_uint64_t; | ||
167 | #define KHRONOS_SUPPORT_INT64 1 | ||
168 | #define KHRONOS_SUPPORT_FLOAT 1 | ||
169 | |||
170 | #elif defined(_WIN32) && !defined(__SCITECH_SNAP__) | ||
171 | |||
172 | /* | ||
173 | * Win32 | ||
174 | */ | ||
175 | typedef __int32 khronos_int32_t; | ||
176 | typedef unsigned __int32 khronos_uint32_t; | ||
177 | typedef __int64 khronos_int64_t; | ||
178 | typedef unsigned __int64 khronos_uint64_t; | ||
179 | #define KHRONOS_SUPPORT_INT64 1 | ||
180 | #define KHRONOS_SUPPORT_FLOAT 1 | ||
181 | |||
182 | #elif defined(__sun__) || defined(__digital__) | ||
183 | |||
184 | /* | ||
185 | * Sun or Digital | ||
186 | */ | ||
187 | typedef int khronos_int32_t; | ||
188 | typedef unsigned int khronos_uint32_t; | ||
189 | #if defined(__arch64__) || defined(_LP64) | ||
190 | typedef long int khronos_int64_t; | ||
191 | typedef unsigned long int khronos_uint64_t; | ||
192 | #else | ||
193 | typedef long long int khronos_int64_t; | ||
194 | typedef unsigned long long int khronos_uint64_t; | ||
195 | #endif /* __arch64__ */ | ||
196 | #define KHRONOS_SUPPORT_INT64 1 | ||
197 | #define KHRONOS_SUPPORT_FLOAT 1 | ||
198 | |||
199 | #elif 0 | ||
200 | |||
201 | /* | ||
202 | * Hypothetical platform with no float or int64 support | ||
203 | */ | ||
204 | typedef int khronos_int32_t; | ||
205 | typedef unsigned int khronos_uint32_t; | ||
206 | #define KHRONOS_SUPPORT_INT64 0 | ||
207 | #define KHRONOS_SUPPORT_FLOAT 0 | ||
208 | |||
209 | #else | ||
210 | |||
211 | /* | ||
212 | * Generic fallback | ||
213 | */ | ||
214 | #include <stdint.h> | ||
215 | typedef int32_t khronos_int32_t; | ||
216 | typedef uint32_t khronos_uint32_t; | ||
217 | typedef int64_t khronos_int64_t; | ||
218 | typedef uint64_t khronos_uint64_t; | ||
219 | #define KHRONOS_SUPPORT_INT64 1 | ||
220 | #define KHRONOS_SUPPORT_FLOAT 1 | ||
221 | |||
222 | #endif | ||
223 | |||
224 | |||
225 | /* | ||
226 | * Types that are (so far) the same on all platforms | ||
227 | */ | ||
228 | typedef signed char khronos_int8_t; | ||
229 | typedef unsigned char khronos_uint8_t; | ||
230 | typedef signed short int khronos_int16_t; | ||
231 | typedef unsigned short int khronos_uint16_t; | ||
232 | |||
233 | /* | ||
234 | * Types that differ between LLP64 and LP64 architectures - in LLP64, | ||
235 | * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears | ||
236 | * to be the only LLP64 architecture in current use. | ||
237 | */ | ||
238 | #ifdef _WIN64 | ||
239 | typedef signed long long int khronos_intptr_t; | ||
240 | typedef unsigned long long int khronos_uintptr_t; | ||
241 | typedef signed long long int khronos_ssize_t; | ||
242 | typedef unsigned long long int khronos_usize_t; | ||
243 | #else | ||
244 | typedef signed long int khronos_intptr_t; | ||
245 | typedef unsigned long int khronos_uintptr_t; | ||
246 | typedef signed long int khronos_ssize_t; | ||
247 | typedef unsigned long int khronos_usize_t; | ||
248 | #endif | ||
249 | |||
250 | #if KHRONOS_SUPPORT_FLOAT | ||
251 | /* | ||
252 | * Float type | ||
253 | */ | ||
254 | typedef float khronos_float_t; | ||
255 | #endif | ||
256 | |||
257 | #if KHRONOS_SUPPORT_INT64 | ||
258 | /* Time types | ||
259 | * | ||
260 | * These types can be used to represent a time interval in nanoseconds or | ||
261 | * an absolute Unadjusted System Time. Unadjusted System Time is the number | ||
262 | * of nanoseconds since some arbitrary system event (e.g. since the last | ||
263 | * time the system booted). The Unadjusted System Time is an unsigned | ||
264 | * 64 bit value that wraps back to 0 every 584 years. Time intervals | ||
265 | * may be either signed or unsigned. | ||
266 | */ | ||
267 | typedef khronos_uint64_t khronos_utime_nanoseconds_t; | ||
268 | typedef khronos_int64_t khronos_stime_nanoseconds_t; | ||
269 | #endif | ||
270 | |||
271 | /* | ||
272 | * Dummy value used to pad enum types to 32 bits. | ||
273 | */ | ||
274 | #ifndef KHRONOS_MAX_ENUM | ||
275 | #define KHRONOS_MAX_ENUM 0x7FFFFFFF | ||
276 | #endif | ||
277 | |||
278 | /* | ||
279 | * Enumerated boolean type | ||
280 | * | ||
281 | * Values other than zero should be considered to be true. Therefore | ||
282 | * comparisons should not be made against KHRONOS_TRUE. | ||
283 | */ | ||
284 | typedef enum { | ||
285 | KHRONOS_FALSE = 0, | ||
286 | KHRONOS_TRUE = 1, | ||
287 | KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM | ||
288 | } khronos_boolean_enum_t; | ||
289 | |||
290 | #endif /* __khrplatform_h_ */ | ||
diff --git a/gfx/contrib/glad/include/glad/glad.h b/gfx/contrib/glad/include/glad/glad.h new file mode 100644 index 0000000..0556552 --- /dev/null +++ b/gfx/contrib/glad/include/glad/glad.h | |||
@@ -0,0 +1,3773 @@ | |||
1 | /* | ||
2 | |||
3 | OpenGL, OpenGL ES loader generated by glad 0.1.33 on Sun Aug 30 00:22:38 2020. | ||
4 | |||
5 | Language/Generator: C/C++ | ||
6 | Specification: gl | ||
7 | APIs: gl=4.6, gles2=3.2 | ||
8 | Profile: core | ||
9 | Extensions: | ||
10 | |||
11 | Loader: True | ||
12 | Local files: False | ||
13 | Omit khrplatform: False | ||
14 | Reproducible: False | ||
15 | |||
16 | Commandline: | ||
17 | --profile="core" --api="gl=4.6,gles2=3.2" --generator="c" --spec="gl" --extensions="" | ||
18 | Online: | ||
19 | https://glad.dav1d.de/#profile=core&language=c&specification=gl&loader=on&api=gl%3D4.6&api=gles2%3D3.2 | ||
20 | */ | ||
21 | |||
22 | |||
23 | #ifndef __glad_h_ | ||
24 | #define __glad_h_ | ||
25 | |||
26 | #ifdef __gl_h_ | ||
27 | #error OpenGL header already included, remove this include, glad already provides it | ||
28 | #endif | ||
29 | #define __gl_h_ | ||
30 | |||
31 | #ifdef __gl2_h_ | ||
32 | #error OpenGL ES 2 header already included, remove this include, glad already provides it | ||
33 | #endif | ||
34 | #define __gl2_h_ | ||
35 | |||
36 | #ifdef __gl3_h_ | ||
37 | #error OpenGL ES 3 header already included, remove this include, glad already provides it | ||
38 | #endif | ||
39 | #define __gl3_h_ | ||
40 | |||
41 | #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) | ||
42 | #define APIENTRY __stdcall | ||
43 | #endif | ||
44 | |||
45 | #ifndef APIENTRY | ||
46 | #define APIENTRY | ||
47 | #endif | ||
48 | #ifndef APIENTRYP | ||
49 | #define APIENTRYP APIENTRY * | ||
50 | #endif | ||
51 | |||
52 | #ifndef GLAPIENTRY | ||
53 | #define GLAPIENTRY APIENTRY | ||
54 | #endif | ||
55 | |||
56 | #ifdef __cplusplus | ||
57 | extern "C" { | ||
58 | #endif | ||
59 | |||
60 | struct gladGLversionStruct { | ||
61 | int major; | ||
62 | int minor; | ||
63 | }; | ||
64 | |||
65 | typedef void* (* GLADloadproc)(const char *name); | ||
66 | |||
67 | #ifndef GLAPI | ||
68 | # if defined(GLAD_GLAPI_EXPORT) | ||
69 | # if defined(_WIN32) || defined(__CYGWIN__) | ||
70 | # if defined(GLAD_GLAPI_EXPORT_BUILD) | ||
71 | # if defined(__GNUC__) | ||
72 | # define GLAPI __attribute__ ((dllexport)) extern | ||
73 | # else | ||
74 | # define GLAPI __declspec(dllexport) extern | ||
75 | # endif | ||
76 | # else | ||
77 | # if defined(__GNUC__) | ||
78 | # define GLAPI __attribute__ ((dllimport)) extern | ||
79 | # else | ||
80 | # define GLAPI __declspec(dllimport) extern | ||
81 | # endif | ||
82 | # endif | ||
83 | # elif defined(__GNUC__) && defined(GLAD_GLAPI_EXPORT_BUILD) | ||
84 | # define GLAPI __attribute__ ((visibility ("default"))) extern | ||
85 | # else | ||
86 | # define GLAPI extern | ||
87 | # endif | ||
88 | # else | ||
89 | # define GLAPI extern | ||
90 | # endif | ||
91 | #endif | ||
92 | |||
93 | GLAPI struct gladGLversionStruct GLVersion; | ||
94 | |||
95 | GLAPI int gladLoadGL(void); | ||
96 | |||
97 | GLAPI int gladLoadGLLoader(GLADloadproc); | ||
98 | |||
99 | GLAPI int gladLoadGLES2Loader(GLADloadproc); | ||
100 | |||
101 | #include <KHR/khrplatform.h> | ||
102 | typedef unsigned int GLenum; | ||
103 | typedef unsigned char GLboolean; | ||
104 | typedef unsigned int GLbitfield; | ||
105 | typedef void GLvoid; | ||
106 | typedef khronos_int8_t GLbyte; | ||
107 | typedef khronos_uint8_t GLubyte; | ||
108 | typedef khronos_int16_t GLshort; | ||
109 | typedef khronos_uint16_t GLushort; | ||
110 | typedef int GLint; | ||
111 | typedef unsigned int GLuint; | ||
112 | typedef khronos_int32_t GLclampx; | ||
113 | typedef int GLsizei; | ||
114 | typedef khronos_float_t GLfloat; | ||
115 | typedef khronos_float_t GLclampf; | ||
116 | typedef double GLdouble; | ||
117 | typedef double GLclampd; | ||
118 | typedef void *GLeglClientBufferEXT; | ||
119 | typedef void *GLeglImageOES; | ||
120 | typedef char GLchar; | ||
121 | typedef char GLcharARB; | ||
122 | #ifdef __APPLE__ | ||
123 | typedef void *GLhandleARB; | ||
124 | #else | ||
125 | typedef unsigned int GLhandleARB; | ||
126 | #endif | ||
127 | typedef khronos_uint16_t GLhalf; | ||
128 | typedef khronos_uint16_t GLhalfARB; | ||
129 | typedef khronos_int32_t GLfixed; | ||
130 | typedef khronos_intptr_t GLintptr; | ||
131 | typedef khronos_intptr_t GLintptrARB; | ||
132 | typedef khronos_ssize_t GLsizeiptr; | ||
133 | typedef khronos_ssize_t GLsizeiptrARB; | ||
134 | typedef khronos_int64_t GLint64; | ||
135 | typedef khronos_int64_t GLint64EXT; | ||
136 | typedef khronos_uint64_t GLuint64; | ||
137 | typedef khronos_uint64_t GLuint64EXT; | ||
138 | typedef struct __GLsync *GLsync; | ||
139 | struct _cl_context; | ||
140 | struct _cl_event; | ||
141 | typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); | ||
142 | typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); | ||
143 | typedef void (APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); | ||
144 | typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); | ||
145 | typedef unsigned short GLhalfNV; | ||
146 | typedef GLintptr GLvdpauSurfaceNV; | ||
147 | typedef void (APIENTRY *GLVULKANPROCNV)(void); | ||
148 | #define GL_DEPTH_BUFFER_BIT 0x00000100 | ||
149 | #define GL_STENCIL_BUFFER_BIT 0x00000400 | ||
150 | #define GL_COLOR_BUFFER_BIT 0x00004000 | ||
151 | #define GL_FALSE 0 | ||
152 | #define GL_TRUE 1 | ||
153 | #define GL_POINTS 0x0000 | ||
154 | #define GL_LINES 0x0001 | ||
155 | #define GL_LINE_LOOP 0x0002 | ||
156 | #define GL_LINE_STRIP 0x0003 | ||
157 | #define GL_TRIANGLES 0x0004 | ||
158 | #define GL_TRIANGLE_STRIP 0x0005 | ||
159 | #define GL_TRIANGLE_FAN 0x0006 | ||
160 | #define GL_NEVER 0x0200 | ||
161 | #define GL_LESS 0x0201 | ||
162 | #define GL_EQUAL 0x0202 | ||
163 | #define GL_LEQUAL 0x0203 | ||
164 | #define GL_GREATER 0x0204 | ||
165 | #define GL_NOTEQUAL 0x0205 | ||
166 | #define GL_GEQUAL 0x0206 | ||
167 | #define GL_ALWAYS 0x0207 | ||
168 | #define GL_ZERO 0 | ||
169 | #define GL_ONE 1 | ||
170 | #define GL_SRC_COLOR 0x0300 | ||
171 | #define GL_ONE_MINUS_SRC_COLOR 0x0301 | ||
172 | #define GL_SRC_ALPHA 0x0302 | ||
173 | #define GL_ONE_MINUS_SRC_ALPHA 0x0303 | ||
174 | #define GL_DST_ALPHA 0x0304 | ||
175 | #define GL_ONE_MINUS_DST_ALPHA 0x0305 | ||
176 | #define GL_DST_COLOR 0x0306 | ||
177 | #define GL_ONE_MINUS_DST_COLOR 0x0307 | ||
178 | #define GL_SRC_ALPHA_SATURATE 0x0308 | ||
179 | #define GL_NONE 0 | ||
180 | #define GL_FRONT_LEFT 0x0400 | ||
181 | #define GL_FRONT_RIGHT 0x0401 | ||
182 | #define GL_BACK_LEFT 0x0402 | ||
183 | #define GL_BACK_RIGHT 0x0403 | ||
184 | #define GL_FRONT 0x0404 | ||
185 | #define GL_BACK 0x0405 | ||
186 | #define GL_LEFT 0x0406 | ||
187 | #define GL_RIGHT 0x0407 | ||
188 | #define GL_FRONT_AND_BACK 0x0408 | ||
189 | #define GL_NO_ERROR 0 | ||
190 | #define GL_INVALID_ENUM 0x0500 | ||
191 | #define GL_INVALID_VALUE 0x0501 | ||
192 | #define GL_INVALID_OPERATION 0x0502 | ||
193 | #define GL_OUT_OF_MEMORY 0x0505 | ||
194 | #define GL_CW 0x0900 | ||
195 | #define GL_CCW 0x0901 | ||
196 | #define GL_POINT_SIZE 0x0B11 | ||
197 | #define GL_POINT_SIZE_RANGE 0x0B12 | ||
198 | #define GL_POINT_SIZE_GRANULARITY 0x0B13 | ||
199 | #define GL_LINE_SMOOTH 0x0B20 | ||
200 | #define GL_LINE_WIDTH 0x0B21 | ||
201 | #define GL_LINE_WIDTH_RANGE 0x0B22 | ||
202 | #define GL_LINE_WIDTH_GRANULARITY 0x0B23 | ||
203 | #define GL_POLYGON_MODE 0x0B40 | ||
204 | #define GL_POLYGON_SMOOTH 0x0B41 | ||
205 | #define GL_CULL_FACE 0x0B44 | ||
206 | #define GL_CULL_FACE_MODE 0x0B45 | ||
207 | #define GL_FRONT_FACE 0x0B46 | ||
208 | #define GL_DEPTH_RANGE 0x0B70 | ||
209 | #define GL_DEPTH_TEST 0x0B71 | ||
210 | #define GL_DEPTH_WRITEMASK 0x0B72 | ||
211 | #define GL_DEPTH_CLEAR_VALUE 0x0B73 | ||
212 | #define GL_DEPTH_FUNC 0x0B74 | ||
213 | #define GL_STENCIL_TEST 0x0B90 | ||
214 | #define GL_STENCIL_CLEAR_VALUE 0x0B91 | ||
215 | #define GL_STENCIL_FUNC 0x0B92 | ||
216 | #define GL_STENCIL_VALUE_MASK 0x0B93 | ||
217 | #define GL_STENCIL_FAIL 0x0B94 | ||
218 | #define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 | ||
219 | #define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 | ||
220 | #define GL_STENCIL_REF 0x0B97 | ||
221 | #define GL_STENCIL_WRITEMASK 0x0B98 | ||
222 | #define GL_VIEWPORT 0x0BA2 | ||
223 | #define GL_DITHER 0x0BD0 | ||
224 | #define GL_BLEND_DST 0x0BE0 | ||
225 | #define GL_BLEND_SRC 0x0BE1 | ||
226 | #define GL_BLEND 0x0BE2 | ||
227 | #define GL_LOGIC_OP_MODE 0x0BF0 | ||
228 | #define GL_DRAW_BUFFER 0x0C01 | ||
229 | #define GL_READ_BUFFER 0x0C02 | ||
230 | #define GL_SCISSOR_BOX 0x0C10 | ||
231 | #define GL_SCISSOR_TEST 0x0C11 | ||
232 | #define GL_COLOR_CLEAR_VALUE 0x0C22 | ||
233 | #define GL_COLOR_WRITEMASK 0x0C23 | ||
234 | #define GL_DOUBLEBUFFER 0x0C32 | ||
235 | #define GL_STEREO 0x0C33 | ||
236 | #define GL_LINE_SMOOTH_HINT 0x0C52 | ||
237 | #define GL_POLYGON_SMOOTH_HINT 0x0C53 | ||
238 | #define GL_UNPACK_SWAP_BYTES 0x0CF0 | ||
239 | #define GL_UNPACK_LSB_FIRST 0x0CF1 | ||
240 | #define GL_UNPACK_ROW_LENGTH 0x0CF2 | ||
241 | #define GL_UNPACK_SKIP_ROWS 0x0CF3 | ||
242 | #define GL_UNPACK_SKIP_PIXELS 0x0CF4 | ||
243 | #define GL_UNPACK_ALIGNMENT 0x0CF5 | ||
244 | #define GL_PACK_SWAP_BYTES 0x0D00 | ||
245 | #define GL_PACK_LSB_FIRST 0x0D01 | ||
246 | #define GL_PACK_ROW_LENGTH 0x0D02 | ||
247 | #define GL_PACK_SKIP_ROWS 0x0D03 | ||
248 | #define GL_PACK_SKIP_PIXELS 0x0D04 | ||
249 | #define GL_PACK_ALIGNMENT 0x0D05 | ||
250 | #define GL_MAX_TEXTURE_SIZE 0x0D33 | ||
251 | #define GL_MAX_VIEWPORT_DIMS 0x0D3A | ||
252 | #define GL_SUBPIXEL_BITS 0x0D50 | ||
253 | #define GL_TEXTURE_1D 0x0DE0 | ||
254 | #define GL_TEXTURE_2D 0x0DE1 | ||
255 | #define GL_TEXTURE_WIDTH 0x1000 | ||
256 | #define GL_TEXTURE_HEIGHT 0x1001 | ||
257 | #define GL_TEXTURE_BORDER_COLOR 0x1004 | ||
258 | #define GL_DONT_CARE 0x1100 | ||
259 | #define GL_FASTEST 0x1101 | ||
260 | #define GL_NICEST 0x1102 | ||
261 | #define GL_BYTE 0x1400 | ||
262 | #define GL_UNSIGNED_BYTE 0x1401 | ||
263 | #define GL_SHORT 0x1402 | ||
264 | #define GL_UNSIGNED_SHORT 0x1403 | ||
265 | #define GL_INT 0x1404 | ||
266 | #define GL_UNSIGNED_INT 0x1405 | ||
267 | #define GL_FLOAT 0x1406 | ||
268 | #define GL_CLEAR 0x1500 | ||
269 | #define GL_AND 0x1501 | ||
270 | #define GL_AND_REVERSE 0x1502 | ||
271 | #define GL_COPY 0x1503 | ||
272 | #define GL_AND_INVERTED 0x1504 | ||
273 | #define GL_NOOP 0x1505 | ||
274 | #define GL_XOR 0x1506 | ||
275 | #define GL_OR 0x1507 | ||
276 | #define GL_NOR 0x1508 | ||
277 | #define GL_EQUIV 0x1509 | ||
278 | #define GL_INVERT 0x150A | ||
279 | #define GL_OR_REVERSE 0x150B | ||
280 | #define GL_COPY_INVERTED 0x150C | ||
281 | #define GL_OR_INVERTED 0x150D | ||
282 | #define GL_NAND 0x150E | ||
283 | #define GL_SET 0x150F | ||
284 | #define GL_TEXTURE 0x1702 | ||
285 | #define GL_COLOR 0x1800 | ||
286 | #define GL_DEPTH 0x1801 | ||
287 | #define GL_STENCIL 0x1802 | ||
288 | #define GL_STENCIL_INDEX 0x1901 | ||
289 | #define GL_DEPTH_COMPONENT 0x1902 | ||
290 | #define GL_RED 0x1903 | ||
291 | #define GL_GREEN 0x1904 | ||
292 | #define GL_BLUE 0x1905 | ||
293 | #define GL_ALPHA 0x1906 | ||
294 | #define GL_RGB 0x1907 | ||
295 | #define GL_RGBA 0x1908 | ||
296 | #define GL_POINT 0x1B00 | ||
297 | #define GL_LINE 0x1B01 | ||
298 | #define GL_FILL 0x1B02 | ||
299 | #define GL_KEEP 0x1E00 | ||
300 | #define GL_REPLACE 0x1E01 | ||
301 | #define GL_INCR 0x1E02 | ||
302 | #define GL_DECR 0x1E03 | ||
303 | #define GL_VENDOR 0x1F00 | ||
304 | #define GL_RENDERER 0x1F01 | ||
305 | #define GL_VERSION 0x1F02 | ||
306 | #define GL_EXTENSIONS 0x1F03 | ||
307 | #define GL_NEAREST 0x2600 | ||
308 | #define GL_LINEAR 0x2601 | ||
309 | #define GL_NEAREST_MIPMAP_NEAREST 0x2700 | ||
310 | #define GL_LINEAR_MIPMAP_NEAREST 0x2701 | ||
311 | #define GL_NEAREST_MIPMAP_LINEAR 0x2702 | ||
312 | #define GL_LINEAR_MIPMAP_LINEAR 0x2703 | ||
313 | #define GL_TEXTURE_MAG_FILTER 0x2800 | ||
314 | #define GL_TEXTURE_MIN_FILTER 0x2801 | ||
315 | #define GL_TEXTURE_WRAP_S 0x2802 | ||
316 | #define GL_TEXTURE_WRAP_T 0x2803 | ||
317 | #define GL_REPEAT 0x2901 | ||
318 | #define GL_COLOR_LOGIC_OP 0x0BF2 | ||
319 | #define GL_POLYGON_OFFSET_UNITS 0x2A00 | ||
320 | #define GL_POLYGON_OFFSET_POINT 0x2A01 | ||
321 | #define GL_POLYGON_OFFSET_LINE 0x2A02 | ||
322 | #define GL_POLYGON_OFFSET_FILL 0x8037 | ||
323 | #define GL_POLYGON_OFFSET_FACTOR 0x8038 | ||
324 | #define GL_TEXTURE_BINDING_1D 0x8068 | ||
325 | #define GL_TEXTURE_BINDING_2D 0x8069 | ||
326 | #define GL_TEXTURE_INTERNAL_FORMAT 0x1003 | ||
327 | #define GL_TEXTURE_RED_SIZE 0x805C | ||
328 | #define GL_TEXTURE_GREEN_SIZE 0x805D | ||
329 | #define GL_TEXTURE_BLUE_SIZE 0x805E | ||
330 | #define GL_TEXTURE_ALPHA_SIZE 0x805F | ||
331 | #define GL_DOUBLE 0x140A | ||
332 | #define GL_PROXY_TEXTURE_1D 0x8063 | ||
333 | #define GL_PROXY_TEXTURE_2D 0x8064 | ||
334 | #define GL_R3_G3_B2 0x2A10 | ||
335 | #define GL_RGB4 0x804F | ||
336 | #define GL_RGB5 0x8050 | ||
337 | #define GL_RGB8 0x8051 | ||
338 | #define GL_RGB10 0x8052 | ||
339 | #define GL_RGB12 0x8053 | ||
340 | #define GL_RGB16 0x8054 | ||
341 | #define GL_RGBA2 0x8055 | ||
342 | #define GL_RGBA4 0x8056 | ||
343 | #define GL_RGB5_A1 0x8057 | ||
344 | #define GL_RGBA8 0x8058 | ||
345 | #define GL_RGB10_A2 0x8059 | ||
346 | #define GL_RGBA12 0x805A | ||
347 | #define GL_RGBA16 0x805B | ||
348 | #define GL_UNSIGNED_BYTE_3_3_2 0x8032 | ||
349 | #define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 | ||
350 | #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 | ||
351 | #define GL_UNSIGNED_INT_8_8_8_8 0x8035 | ||
352 | #define GL_UNSIGNED_INT_10_10_10_2 0x8036 | ||
353 | #define GL_TEXTURE_BINDING_3D 0x806A | ||
354 | #define GL_PACK_SKIP_IMAGES 0x806B | ||
355 | #define GL_PACK_IMAGE_HEIGHT 0x806C | ||
356 | #define GL_UNPACK_SKIP_IMAGES 0x806D | ||
357 | #define GL_UNPACK_IMAGE_HEIGHT 0x806E | ||
358 | #define GL_TEXTURE_3D 0x806F | ||
359 | #define GL_PROXY_TEXTURE_3D 0x8070 | ||
360 | #define GL_TEXTURE_DEPTH 0x8071 | ||
361 | #define GL_TEXTURE_WRAP_R 0x8072 | ||
362 | #define GL_MAX_3D_TEXTURE_SIZE 0x8073 | ||
363 | #define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 | ||
364 | #define GL_UNSIGNED_SHORT_5_6_5 0x8363 | ||
365 | #define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 | ||
366 | #define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 | ||
367 | #define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 | ||
368 | #define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 | ||
369 | #define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 | ||
370 | #define GL_BGR 0x80E0 | ||
371 | #define GL_BGRA 0x80E1 | ||
372 | #define GL_MAX_ELEMENTS_VERTICES 0x80E8 | ||
373 | #define GL_MAX_ELEMENTS_INDICES 0x80E9 | ||
374 | #define GL_CLAMP_TO_EDGE 0x812F | ||
375 | #define GL_TEXTURE_MIN_LOD 0x813A | ||
376 | #define GL_TEXTURE_MAX_LOD 0x813B | ||
377 | #define GL_TEXTURE_BASE_LEVEL 0x813C | ||
378 | #define GL_TEXTURE_MAX_LEVEL 0x813D | ||
379 | #define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 | ||
380 | #define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 | ||
381 | #define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 | ||
382 | #define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 | ||
383 | #define GL_ALIASED_LINE_WIDTH_RANGE 0x846E | ||
384 | #define GL_TEXTURE0 0x84C0 | ||
385 | #define GL_TEXTURE1 0x84C1 | ||
386 | #define GL_TEXTURE2 0x84C2 | ||
387 | #define GL_TEXTURE3 0x84C3 | ||
388 | #define GL_TEXTURE4 0x84C4 | ||
389 | #define GL_TEXTURE5 0x84C5 | ||
390 | #define GL_TEXTURE6 0x84C6 | ||
391 | #define GL_TEXTURE7 0x84C7 | ||
392 | #define GL_TEXTURE8 0x84C8 | ||
393 | #define GL_TEXTURE9 0x84C9 | ||
394 | #define GL_TEXTURE10 0x84CA | ||
395 | #define GL_TEXTURE11 0x84CB | ||
396 | #define GL_TEXTURE12 0x84CC | ||
397 | #define GL_TEXTURE13 0x84CD | ||
398 | #define GL_TEXTURE14 0x84CE | ||
399 | #define GL_TEXTURE15 0x84CF | ||
400 | #define GL_TEXTURE16 0x84D0 | ||
401 | #define GL_TEXTURE17 0x84D1 | ||
402 | #define GL_TEXTURE18 0x84D2 | ||
403 | #define GL_TEXTURE19 0x84D3 | ||
404 | #define GL_TEXTURE20 0x84D4 | ||
405 | #define GL_TEXTURE21 0x84D5 | ||
406 | #define GL_TEXTURE22 0x84D6 | ||
407 | #define GL_TEXTURE23 0x84D7 | ||
408 | #define GL_TEXTURE24 0x84D8 | ||
409 | #define GL_TEXTURE25 0x84D9 | ||
410 | #define GL_TEXTURE26 0x84DA | ||
411 | #define GL_TEXTURE27 0x84DB | ||
412 | #define GL_TEXTURE28 0x84DC | ||
413 | #define GL_TEXTURE29 0x84DD | ||
414 | #define GL_TEXTURE30 0x84DE | ||
415 | #define GL_TEXTURE31 0x84DF | ||
416 | #define GL_ACTIVE_TEXTURE 0x84E0 | ||
417 | #define GL_MULTISAMPLE 0x809D | ||
418 | #define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E | ||
419 | #define GL_SAMPLE_ALPHA_TO_ONE 0x809F | ||
420 | #define GL_SAMPLE_COVERAGE 0x80A0 | ||
421 | #define GL_SAMPLE_BUFFERS 0x80A8 | ||
422 | #define GL_SAMPLES 0x80A9 | ||
423 | #define GL_SAMPLE_COVERAGE_VALUE 0x80AA | ||
424 | #define GL_SAMPLE_COVERAGE_INVERT 0x80AB | ||
425 | #define GL_TEXTURE_CUBE_MAP 0x8513 | ||
426 | #define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 | ||
427 | #define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 | ||
428 | #define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 | ||
429 | #define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 | ||
430 | #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 | ||
431 | #define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 | ||
432 | #define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A | ||
433 | #define GL_PROXY_TEXTURE_CUBE_MAP 0x851B | ||
434 | #define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C | ||
435 | #define GL_COMPRESSED_RGB 0x84ED | ||
436 | #define GL_COMPRESSED_RGBA 0x84EE | ||
437 | #define GL_TEXTURE_COMPRESSION_HINT 0x84EF | ||
438 | #define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 | ||
439 | #define GL_TEXTURE_COMPRESSED 0x86A1 | ||
440 | #define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 | ||
441 | #define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 | ||
442 | #define GL_CLAMP_TO_BORDER 0x812D | ||
443 | #define GL_BLEND_DST_RGB 0x80C8 | ||
444 | #define GL_BLEND_SRC_RGB 0x80C9 | ||
445 | #define GL_BLEND_DST_ALPHA 0x80CA | ||
446 | #define GL_BLEND_SRC_ALPHA 0x80CB | ||
447 | #define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 | ||
448 | #define GL_DEPTH_COMPONENT16 0x81A5 | ||
449 | #define GL_DEPTH_COMPONENT24 0x81A6 | ||
450 | #define GL_DEPTH_COMPONENT32 0x81A7 | ||
451 | #define GL_MIRRORED_REPEAT 0x8370 | ||
452 | #define GL_MAX_TEXTURE_LOD_BIAS 0x84FD | ||
453 | #define GL_TEXTURE_LOD_BIAS 0x8501 | ||
454 | #define GL_INCR_WRAP 0x8507 | ||
455 | #define GL_DECR_WRAP 0x8508 | ||
456 | #define GL_TEXTURE_DEPTH_SIZE 0x884A | ||
457 | #define GL_TEXTURE_COMPARE_MODE 0x884C | ||
458 | #define GL_TEXTURE_COMPARE_FUNC 0x884D | ||
459 | #define GL_BLEND_COLOR 0x8005 | ||
460 | #define GL_BLEND_EQUATION 0x8009 | ||
461 | #define GL_CONSTANT_COLOR 0x8001 | ||
462 | #define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 | ||
463 | #define GL_CONSTANT_ALPHA 0x8003 | ||
464 | #define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 | ||
465 | #define GL_FUNC_ADD 0x8006 | ||
466 | #define GL_FUNC_REVERSE_SUBTRACT 0x800B | ||
467 | #define GL_FUNC_SUBTRACT 0x800A | ||
468 | #define GL_MIN 0x8007 | ||
469 | #define GL_MAX 0x8008 | ||
470 | #define GL_BUFFER_SIZE 0x8764 | ||
471 | #define GL_BUFFER_USAGE 0x8765 | ||
472 | #define GL_QUERY_COUNTER_BITS 0x8864 | ||
473 | #define GL_CURRENT_QUERY 0x8865 | ||
474 | #define GL_QUERY_RESULT 0x8866 | ||
475 | #define GL_QUERY_RESULT_AVAILABLE 0x8867 | ||
476 | #define GL_ARRAY_BUFFER 0x8892 | ||
477 | #define GL_ELEMENT_ARRAY_BUFFER 0x8893 | ||
478 | #define GL_ARRAY_BUFFER_BINDING 0x8894 | ||
479 | #define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 | ||
480 | #define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F | ||
481 | #define GL_READ_ONLY 0x88B8 | ||
482 | #define GL_WRITE_ONLY 0x88B9 | ||
483 | #define GL_READ_WRITE 0x88BA | ||
484 | #define GL_BUFFER_ACCESS 0x88BB | ||
485 | #define GL_BUFFER_MAPPED 0x88BC | ||
486 | #define GL_BUFFER_MAP_POINTER 0x88BD | ||
487 | #define GL_STREAM_DRAW 0x88E0 | ||
488 | #define GL_STREAM_READ 0x88E1 | ||
489 | #define GL_STREAM_COPY 0x88E2 | ||
490 | #define GL_STATIC_DRAW 0x88E4 | ||
491 | #define GL_STATIC_READ 0x88E5 | ||
492 | #define GL_STATIC_COPY 0x88E6 | ||
493 | #define GL_DYNAMIC_DRAW 0x88E8 | ||
494 | #define GL_DYNAMIC_READ 0x88E9 | ||
495 | #define GL_DYNAMIC_COPY 0x88EA | ||
496 | #define GL_SAMPLES_PASSED 0x8914 | ||
497 | #define GL_SRC1_ALPHA 0x8589 | ||
498 | #define GL_BLEND_EQUATION_RGB 0x8009 | ||
499 | #define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 | ||
500 | #define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 | ||
501 | #define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 | ||
502 | #define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 | ||
503 | #define GL_CURRENT_VERTEX_ATTRIB 0x8626 | ||
504 | #define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 | ||
505 | #define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 | ||
506 | #define GL_STENCIL_BACK_FUNC 0x8800 | ||
507 | #define GL_STENCIL_BACK_FAIL 0x8801 | ||
508 | #define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 | ||
509 | #define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 | ||
510 | #define GL_MAX_DRAW_BUFFERS 0x8824 | ||
511 | #define GL_DRAW_BUFFER0 0x8825 | ||
512 | #define GL_DRAW_BUFFER1 0x8826 | ||
513 | #define GL_DRAW_BUFFER2 0x8827 | ||
514 | #define GL_DRAW_BUFFER3 0x8828 | ||
515 | #define GL_DRAW_BUFFER4 0x8829 | ||
516 | #define GL_DRAW_BUFFER5 0x882A | ||
517 | #define GL_DRAW_BUFFER6 0x882B | ||
518 | #define GL_DRAW_BUFFER7 0x882C | ||
519 | #define GL_DRAW_BUFFER8 0x882D | ||
520 | #define GL_DRAW_BUFFER9 0x882E | ||
521 | #define GL_DRAW_BUFFER10 0x882F | ||
522 | #define GL_DRAW_BUFFER11 0x8830 | ||
523 | #define GL_DRAW_BUFFER12 0x8831 | ||
524 | #define GL_DRAW_BUFFER13 0x8832 | ||
525 | #define GL_DRAW_BUFFER14 0x8833 | ||
526 | #define GL_DRAW_BUFFER15 0x8834 | ||
527 | #define GL_BLEND_EQUATION_ALPHA 0x883D | ||
528 | #define GL_MAX_VERTEX_ATTRIBS 0x8869 | ||
529 | #define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A | ||
530 | #define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 | ||
531 | #define GL_FRAGMENT_SHADER 0x8B30 | ||
532 | #define GL_VERTEX_SHADER 0x8B31 | ||
533 | #define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 | ||
534 | #define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A | ||
535 | #define GL_MAX_VARYING_FLOATS 0x8B4B | ||
536 | #define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C | ||
537 | #define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D | ||
538 | #define GL_SHADER_TYPE 0x8B4F | ||
539 | #define GL_FLOAT_VEC2 0x8B50 | ||
540 | #define GL_FLOAT_VEC3 0x8B51 | ||
541 | #define GL_FLOAT_VEC4 0x8B52 | ||
542 | #define GL_INT_VEC2 0x8B53 | ||
543 | #define GL_INT_VEC3 0x8B54 | ||
544 | #define GL_INT_VEC4 0x8B55 | ||
545 | #define GL_BOOL 0x8B56 | ||
546 | #define GL_BOOL_VEC2 0x8B57 | ||
547 | #define GL_BOOL_VEC3 0x8B58 | ||
548 | #define GL_BOOL_VEC4 0x8B59 | ||
549 | #define GL_FLOAT_MAT2 0x8B5A | ||
550 | #define GL_FLOAT_MAT3 0x8B5B | ||
551 | #define GL_FLOAT_MAT4 0x8B5C | ||
552 | #define GL_SAMPLER_1D 0x8B5D | ||
553 | #define GL_SAMPLER_2D 0x8B5E | ||
554 | #define GL_SAMPLER_3D 0x8B5F | ||
555 | #define GL_SAMPLER_CUBE 0x8B60 | ||
556 | #define GL_SAMPLER_1D_SHADOW 0x8B61 | ||
557 | #define GL_SAMPLER_2D_SHADOW 0x8B62 | ||
558 | #define GL_DELETE_STATUS 0x8B80 | ||
559 | #define GL_COMPILE_STATUS 0x8B81 | ||
560 | #define GL_LINK_STATUS 0x8B82 | ||
561 | #define GL_VALIDATE_STATUS 0x8B83 | ||
562 | #define GL_INFO_LOG_LENGTH 0x8B84 | ||
563 | #define GL_ATTACHED_SHADERS 0x8B85 | ||
564 | #define GL_ACTIVE_UNIFORMS 0x8B86 | ||
565 | #define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 | ||
566 | #define GL_SHADER_SOURCE_LENGTH 0x8B88 | ||
567 | #define GL_ACTIVE_ATTRIBUTES 0x8B89 | ||
568 | #define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A | ||
569 | #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B | ||
570 | #define GL_SHADING_LANGUAGE_VERSION 0x8B8C | ||
571 | #define GL_CURRENT_PROGRAM 0x8B8D | ||
572 | #define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 | ||
573 | #define GL_LOWER_LEFT 0x8CA1 | ||
574 | #define GL_UPPER_LEFT 0x8CA2 | ||
575 | #define GL_STENCIL_BACK_REF 0x8CA3 | ||
576 | #define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 | ||
577 | #define GL_STENCIL_BACK_WRITEMASK 0x8CA5 | ||
578 | #define GL_PIXEL_PACK_BUFFER 0x88EB | ||
579 | #define GL_PIXEL_UNPACK_BUFFER 0x88EC | ||
580 | #define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED | ||
581 | #define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF | ||
582 | #define GL_FLOAT_MAT2x3 0x8B65 | ||
583 | #define GL_FLOAT_MAT2x4 0x8B66 | ||
584 | #define GL_FLOAT_MAT3x2 0x8B67 | ||
585 | #define GL_FLOAT_MAT3x4 0x8B68 | ||
586 | #define GL_FLOAT_MAT4x2 0x8B69 | ||
587 | #define GL_FLOAT_MAT4x3 0x8B6A | ||
588 | #define GL_SRGB 0x8C40 | ||
589 | #define GL_SRGB8 0x8C41 | ||
590 | #define GL_SRGB_ALPHA 0x8C42 | ||
591 | #define GL_SRGB8_ALPHA8 0x8C43 | ||
592 | #define GL_COMPRESSED_SRGB 0x8C48 | ||
593 | #define GL_COMPRESSED_SRGB_ALPHA 0x8C49 | ||
594 | #define GL_COMPARE_REF_TO_TEXTURE 0x884E | ||
595 | #define GL_CLIP_DISTANCE0 0x3000 | ||
596 | #define GL_CLIP_DISTANCE1 0x3001 | ||
597 | #define GL_CLIP_DISTANCE2 0x3002 | ||
598 | #define GL_CLIP_DISTANCE3 0x3003 | ||
599 | #define GL_CLIP_DISTANCE4 0x3004 | ||
600 | #define GL_CLIP_DISTANCE5 0x3005 | ||
601 | #define GL_CLIP_DISTANCE6 0x3006 | ||
602 | #define GL_CLIP_DISTANCE7 0x3007 | ||
603 | #define GL_MAX_CLIP_DISTANCES 0x0D32 | ||
604 | #define GL_MAJOR_VERSION 0x821B | ||
605 | #define GL_MINOR_VERSION 0x821C | ||
606 | #define GL_NUM_EXTENSIONS 0x821D | ||
607 | #define GL_CONTEXT_FLAGS 0x821E | ||
608 | #define GL_COMPRESSED_RED 0x8225 | ||
609 | #define GL_COMPRESSED_RG 0x8226 | ||
610 | #define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 | ||
611 | #define GL_RGBA32F 0x8814 | ||
612 | #define GL_RGB32F 0x8815 | ||
613 | #define GL_RGBA16F 0x881A | ||
614 | #define GL_RGB16F 0x881B | ||
615 | #define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD | ||
616 | #define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF | ||
617 | #define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 | ||
618 | #define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 | ||
619 | #define GL_CLAMP_READ_COLOR 0x891C | ||
620 | #define GL_FIXED_ONLY 0x891D | ||
621 | #define GL_MAX_VARYING_COMPONENTS 0x8B4B | ||
622 | #define GL_TEXTURE_1D_ARRAY 0x8C18 | ||
623 | #define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 | ||
624 | #define GL_TEXTURE_2D_ARRAY 0x8C1A | ||
625 | #define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B | ||
626 | #define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C | ||
627 | #define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D | ||
628 | #define GL_R11F_G11F_B10F 0x8C3A | ||
629 | #define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B | ||
630 | #define GL_RGB9_E5 0x8C3D | ||
631 | #define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E | ||
632 | #define GL_TEXTURE_SHARED_SIZE 0x8C3F | ||
633 | #define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 | ||
634 | #define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F | ||
635 | #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 | ||
636 | #define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 | ||
637 | #define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 | ||
638 | #define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 | ||
639 | #define GL_PRIMITIVES_GENERATED 0x8C87 | ||
640 | #define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 | ||
641 | #define GL_RASTERIZER_DISCARD 0x8C89 | ||
642 | #define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A | ||
643 | #define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B | ||
644 | #define GL_INTERLEAVED_ATTRIBS 0x8C8C | ||
645 | #define GL_SEPARATE_ATTRIBS 0x8C8D | ||
646 | #define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E | ||
647 | #define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F | ||
648 | #define GL_RGBA32UI 0x8D70 | ||
649 | #define GL_RGB32UI 0x8D71 | ||
650 | #define GL_RGBA16UI 0x8D76 | ||
651 | #define GL_RGB16UI 0x8D77 | ||
652 | #define GL_RGBA8UI 0x8D7C | ||
653 | #define GL_RGB8UI 0x8D7D | ||
654 | #define GL_RGBA32I 0x8D82 | ||
655 | #define GL_RGB32I 0x8D83 | ||
656 | #define GL_RGBA16I 0x8D88 | ||
657 | #define GL_RGB16I 0x8D89 | ||
658 | #define GL_RGBA8I 0x8D8E | ||
659 | #define GL_RGB8I 0x8D8F | ||
660 | #define GL_RED_INTEGER 0x8D94 | ||
661 | #define GL_GREEN_INTEGER 0x8D95 | ||
662 | #define GL_BLUE_INTEGER 0x8D96 | ||
663 | #define GL_RGB_INTEGER 0x8D98 | ||
664 | #define GL_RGBA_INTEGER 0x8D99 | ||
665 | #define GL_BGR_INTEGER 0x8D9A | ||
666 | #define GL_BGRA_INTEGER 0x8D9B | ||
667 | #define GL_SAMPLER_1D_ARRAY 0x8DC0 | ||
668 | #define GL_SAMPLER_2D_ARRAY 0x8DC1 | ||
669 | #define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 | ||
670 | #define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 | ||
671 | #define GL_SAMPLER_CUBE_SHADOW 0x8DC5 | ||
672 | #define GL_UNSIGNED_INT_VEC2 0x8DC6 | ||
673 | #define GL_UNSIGNED_INT_VEC3 0x8DC7 | ||
674 | #define GL_UNSIGNED_INT_VEC4 0x8DC8 | ||
675 | #define GL_INT_SAMPLER_1D 0x8DC9 | ||
676 | #define GL_INT_SAMPLER_2D 0x8DCA | ||
677 | #define GL_INT_SAMPLER_3D 0x8DCB | ||
678 | #define GL_INT_SAMPLER_CUBE 0x8DCC | ||
679 | #define GL_INT_SAMPLER_1D_ARRAY 0x8DCE | ||
680 | #define GL_INT_SAMPLER_2D_ARRAY 0x8DCF | ||
681 | #define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 | ||
682 | #define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 | ||
683 | #define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 | ||
684 | #define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 | ||
685 | #define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 | ||
686 | #define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 | ||
687 | #define GL_QUERY_WAIT 0x8E13 | ||
688 | #define GL_QUERY_NO_WAIT 0x8E14 | ||
689 | #define GL_QUERY_BY_REGION_WAIT 0x8E15 | ||
690 | #define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 | ||
691 | #define GL_BUFFER_ACCESS_FLAGS 0x911F | ||
692 | #define GL_BUFFER_MAP_LENGTH 0x9120 | ||
693 | #define GL_BUFFER_MAP_OFFSET 0x9121 | ||
694 | #define GL_DEPTH_COMPONENT32F 0x8CAC | ||
695 | #define GL_DEPTH32F_STENCIL8 0x8CAD | ||
696 | #define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD | ||
697 | #define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 | ||
698 | #define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 | ||
699 | #define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 | ||
700 | #define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 | ||
701 | #define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 | ||
702 | #define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 | ||
703 | #define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 | ||
704 | #define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 | ||
705 | #define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 | ||
706 | #define GL_FRAMEBUFFER_DEFAULT 0x8218 | ||
707 | #define GL_FRAMEBUFFER_UNDEFINED 0x8219 | ||
708 | #define GL_DEPTH_STENCIL_ATTACHMENT 0x821A | ||
709 | #define GL_MAX_RENDERBUFFER_SIZE 0x84E8 | ||
710 | #define GL_DEPTH_STENCIL 0x84F9 | ||
711 | #define GL_UNSIGNED_INT_24_8 0x84FA | ||
712 | #define GL_DEPTH24_STENCIL8 0x88F0 | ||
713 | #define GL_TEXTURE_STENCIL_SIZE 0x88F1 | ||
714 | #define GL_TEXTURE_RED_TYPE 0x8C10 | ||
715 | #define GL_TEXTURE_GREEN_TYPE 0x8C11 | ||
716 | #define GL_TEXTURE_BLUE_TYPE 0x8C12 | ||
717 | #define GL_TEXTURE_ALPHA_TYPE 0x8C13 | ||
718 | #define GL_TEXTURE_DEPTH_TYPE 0x8C16 | ||
719 | #define GL_UNSIGNED_NORMALIZED 0x8C17 | ||
720 | #define GL_FRAMEBUFFER_BINDING 0x8CA6 | ||
721 | #define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 | ||
722 | #define GL_RENDERBUFFER_BINDING 0x8CA7 | ||
723 | #define GL_READ_FRAMEBUFFER 0x8CA8 | ||
724 | #define GL_DRAW_FRAMEBUFFER 0x8CA9 | ||
725 | #define GL_READ_FRAMEBUFFER_BINDING 0x8CAA | ||
726 | #define GL_RENDERBUFFER_SAMPLES 0x8CAB | ||
727 | #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 | ||
728 | #define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 | ||
729 | #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 | ||
730 | #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 | ||
731 | #define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 | ||
732 | #define GL_FRAMEBUFFER_COMPLETE 0x8CD5 | ||
733 | #define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 | ||
734 | #define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 | ||
735 | #define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB | ||
736 | #define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC | ||
737 | #define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD | ||
738 | #define GL_MAX_COLOR_ATTACHMENTS 0x8CDF | ||
739 | #define GL_COLOR_ATTACHMENT0 0x8CE0 | ||
740 | #define GL_COLOR_ATTACHMENT1 0x8CE1 | ||
741 | #define GL_COLOR_ATTACHMENT2 0x8CE2 | ||
742 | #define GL_COLOR_ATTACHMENT3 0x8CE3 | ||
743 | #define GL_COLOR_ATTACHMENT4 0x8CE4 | ||
744 | #define GL_COLOR_ATTACHMENT5 0x8CE5 | ||
745 | #define GL_COLOR_ATTACHMENT6 0x8CE6 | ||
746 | #define GL_COLOR_ATTACHMENT7 0x8CE7 | ||
747 | #define GL_COLOR_ATTACHMENT8 0x8CE8 | ||
748 | #define GL_COLOR_ATTACHMENT9 0x8CE9 | ||
749 | #define GL_COLOR_ATTACHMENT10 0x8CEA | ||
750 | #define GL_COLOR_ATTACHMENT11 0x8CEB | ||
751 | #define GL_COLOR_ATTACHMENT12 0x8CEC | ||
752 | #define GL_COLOR_ATTACHMENT13 0x8CED | ||
753 | #define GL_COLOR_ATTACHMENT14 0x8CEE | ||
754 | #define GL_COLOR_ATTACHMENT15 0x8CEF | ||
755 | #define GL_COLOR_ATTACHMENT16 0x8CF0 | ||
756 | #define GL_COLOR_ATTACHMENT17 0x8CF1 | ||
757 | #define GL_COLOR_ATTACHMENT18 0x8CF2 | ||
758 | #define GL_COLOR_ATTACHMENT19 0x8CF3 | ||
759 | #define GL_COLOR_ATTACHMENT20 0x8CF4 | ||
760 | #define GL_COLOR_ATTACHMENT21 0x8CF5 | ||
761 | #define GL_COLOR_ATTACHMENT22 0x8CF6 | ||
762 | #define GL_COLOR_ATTACHMENT23 0x8CF7 | ||
763 | #define GL_COLOR_ATTACHMENT24 0x8CF8 | ||
764 | #define GL_COLOR_ATTACHMENT25 0x8CF9 | ||
765 | #define GL_COLOR_ATTACHMENT26 0x8CFA | ||
766 | #define GL_COLOR_ATTACHMENT27 0x8CFB | ||
767 | #define GL_COLOR_ATTACHMENT28 0x8CFC | ||
768 | #define GL_COLOR_ATTACHMENT29 0x8CFD | ||
769 | #define GL_COLOR_ATTACHMENT30 0x8CFE | ||
770 | #define GL_COLOR_ATTACHMENT31 0x8CFF | ||
771 | #define GL_DEPTH_ATTACHMENT 0x8D00 | ||
772 | #define GL_STENCIL_ATTACHMENT 0x8D20 | ||
773 | #define GL_FRAMEBUFFER 0x8D40 | ||
774 | #define GL_RENDERBUFFER 0x8D41 | ||
775 | #define GL_RENDERBUFFER_WIDTH 0x8D42 | ||
776 | #define GL_RENDERBUFFER_HEIGHT 0x8D43 | ||
777 | #define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 | ||
778 | #define GL_STENCIL_INDEX1 0x8D46 | ||
779 | #define GL_STENCIL_INDEX4 0x8D47 | ||
780 | #define GL_STENCIL_INDEX8 0x8D48 | ||
781 | #define GL_STENCIL_INDEX16 0x8D49 | ||
782 | #define GL_RENDERBUFFER_RED_SIZE 0x8D50 | ||
783 | #define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 | ||
784 | #define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 | ||
785 | #define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 | ||
786 | #define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 | ||
787 | #define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 | ||
788 | #define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 | ||
789 | #define GL_MAX_SAMPLES 0x8D57 | ||
790 | #define GL_FRAMEBUFFER_SRGB 0x8DB9 | ||
791 | #define GL_HALF_FLOAT 0x140B | ||
792 | #define GL_MAP_READ_BIT 0x0001 | ||
793 | #define GL_MAP_WRITE_BIT 0x0002 | ||
794 | #define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 | ||
795 | #define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 | ||
796 | #define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 | ||
797 | #define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 | ||
798 | #define GL_COMPRESSED_RED_RGTC1 0x8DBB | ||
799 | #define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC | ||
800 | #define GL_COMPRESSED_RG_RGTC2 0x8DBD | ||
801 | #define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE | ||
802 | #define GL_RG 0x8227 | ||
803 | #define GL_RG_INTEGER 0x8228 | ||
804 | #define GL_R8 0x8229 | ||
805 | #define GL_R16 0x822A | ||
806 | #define GL_RG8 0x822B | ||
807 | #define GL_RG16 0x822C | ||
808 | #define GL_R16F 0x822D | ||
809 | #define GL_R32F 0x822E | ||
810 | #define GL_RG16F 0x822F | ||
811 | #define GL_RG32F 0x8230 | ||
812 | #define GL_R8I 0x8231 | ||
813 | #define GL_R8UI 0x8232 | ||
814 | #define GL_R16I 0x8233 | ||
815 | #define GL_R16UI 0x8234 | ||
816 | #define GL_R32I 0x8235 | ||
817 | #define GL_R32UI 0x8236 | ||
818 | #define GL_RG8I 0x8237 | ||
819 | #define GL_RG8UI 0x8238 | ||
820 | #define GL_RG16I 0x8239 | ||
821 | #define GL_RG16UI 0x823A | ||
822 | #define GL_RG32I 0x823B | ||
823 | #define GL_RG32UI 0x823C | ||
824 | #define GL_VERTEX_ARRAY_BINDING 0x85B5 | ||
825 | #define GL_SAMPLER_2D_RECT 0x8B63 | ||
826 | #define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 | ||
827 | #define GL_SAMPLER_BUFFER 0x8DC2 | ||
828 | #define GL_INT_SAMPLER_2D_RECT 0x8DCD | ||
829 | #define GL_INT_SAMPLER_BUFFER 0x8DD0 | ||
830 | #define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 | ||
831 | #define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 | ||
832 | #define GL_TEXTURE_BUFFER 0x8C2A | ||
833 | #define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B | ||
834 | #define GL_TEXTURE_BINDING_BUFFER 0x8C2C | ||
835 | #define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D | ||
836 | #define GL_TEXTURE_RECTANGLE 0x84F5 | ||
837 | #define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 | ||
838 | #define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 | ||
839 | #define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 | ||
840 | #define GL_R8_SNORM 0x8F94 | ||
841 | #define GL_RG8_SNORM 0x8F95 | ||
842 | #define GL_RGB8_SNORM 0x8F96 | ||
843 | #define GL_RGBA8_SNORM 0x8F97 | ||
844 | #define GL_R16_SNORM 0x8F98 | ||
845 | #define GL_RG16_SNORM 0x8F99 | ||
846 | #define GL_RGB16_SNORM 0x8F9A | ||
847 | #define GL_RGBA16_SNORM 0x8F9B | ||
848 | #define GL_SIGNED_NORMALIZED 0x8F9C | ||
849 | #define GL_PRIMITIVE_RESTART 0x8F9D | ||
850 | #define GL_PRIMITIVE_RESTART_INDEX 0x8F9E | ||
851 | #define GL_COPY_READ_BUFFER 0x8F36 | ||
852 | #define GL_COPY_WRITE_BUFFER 0x8F37 | ||
853 | #define GL_UNIFORM_BUFFER 0x8A11 | ||
854 | #define GL_UNIFORM_BUFFER_BINDING 0x8A28 | ||
855 | #define GL_UNIFORM_BUFFER_START 0x8A29 | ||
856 | #define GL_UNIFORM_BUFFER_SIZE 0x8A2A | ||
857 | #define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B | ||
858 | #define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C | ||
859 | #define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D | ||
860 | #define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E | ||
861 | #define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F | ||
862 | #define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 | ||
863 | #define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 | ||
864 | #define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 | ||
865 | #define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 | ||
866 | #define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 | ||
867 | #define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 | ||
868 | #define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 | ||
869 | #define GL_UNIFORM_TYPE 0x8A37 | ||
870 | #define GL_UNIFORM_SIZE 0x8A38 | ||
871 | #define GL_UNIFORM_NAME_LENGTH 0x8A39 | ||
872 | #define GL_UNIFORM_BLOCK_INDEX 0x8A3A | ||
873 | #define GL_UNIFORM_OFFSET 0x8A3B | ||
874 | #define GL_UNIFORM_ARRAY_STRIDE 0x8A3C | ||
875 | #define GL_UNIFORM_MATRIX_STRIDE 0x8A3D | ||
876 | #define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E | ||
877 | #define GL_UNIFORM_BLOCK_BINDING 0x8A3F | ||
878 | #define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 | ||
879 | #define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 | ||
880 | #define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 | ||
881 | #define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 | ||
882 | #define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 | ||
883 | #define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 | ||
884 | #define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 | ||
885 | #define GL_INVALID_INDEX 0xFFFFFFFF | ||
886 | #define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 | ||
887 | #define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 | ||
888 | #define GL_LINES_ADJACENCY 0x000A | ||
889 | #define GL_LINE_STRIP_ADJACENCY 0x000B | ||
890 | #define GL_TRIANGLES_ADJACENCY 0x000C | ||
891 | #define GL_TRIANGLE_STRIP_ADJACENCY 0x000D | ||
892 | #define GL_PROGRAM_POINT_SIZE 0x8642 | ||
893 | #define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 | ||
894 | #define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 | ||
895 | #define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 | ||
896 | #define GL_GEOMETRY_SHADER 0x8DD9 | ||
897 | #define GL_GEOMETRY_VERTICES_OUT 0x8916 | ||
898 | #define GL_GEOMETRY_INPUT_TYPE 0x8917 | ||
899 | #define GL_GEOMETRY_OUTPUT_TYPE 0x8918 | ||
900 | #define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF | ||
901 | #define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 | ||
902 | #define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 | ||
903 | #define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 | ||
904 | #define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 | ||
905 | #define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 | ||
906 | #define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 | ||
907 | #define GL_CONTEXT_PROFILE_MASK 0x9126 | ||
908 | #define GL_DEPTH_CLAMP 0x864F | ||
909 | #define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C | ||
910 | #define GL_FIRST_VERTEX_CONVENTION 0x8E4D | ||
911 | #define GL_LAST_VERTEX_CONVENTION 0x8E4E | ||
912 | #define GL_PROVOKING_VERTEX 0x8E4F | ||
913 | #define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F | ||
914 | #define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 | ||
915 | #define GL_OBJECT_TYPE 0x9112 | ||
916 | #define GL_SYNC_CONDITION 0x9113 | ||
917 | #define GL_SYNC_STATUS 0x9114 | ||
918 | #define GL_SYNC_FLAGS 0x9115 | ||
919 | #define GL_SYNC_FENCE 0x9116 | ||
920 | #define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 | ||
921 | #define GL_UNSIGNALED 0x9118 | ||
922 | #define GL_SIGNALED 0x9119 | ||
923 | #define GL_ALREADY_SIGNALED 0x911A | ||
924 | #define GL_TIMEOUT_EXPIRED 0x911B | ||
925 | #define GL_CONDITION_SATISFIED 0x911C | ||
926 | #define GL_WAIT_FAILED 0x911D | ||
927 | #define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFF | ||
928 | #define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 | ||
929 | #define GL_SAMPLE_POSITION 0x8E50 | ||
930 | #define GL_SAMPLE_MASK 0x8E51 | ||
931 | #define GL_SAMPLE_MASK_VALUE 0x8E52 | ||
932 | #define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 | ||
933 | #define GL_TEXTURE_2D_MULTISAMPLE 0x9100 | ||
934 | #define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 | ||
935 | #define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 | ||
936 | #define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 | ||
937 | #define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 | ||
938 | #define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 | ||
939 | #define GL_TEXTURE_SAMPLES 0x9106 | ||
940 | #define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 | ||
941 | #define GL_SAMPLER_2D_MULTISAMPLE 0x9108 | ||
942 | #define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 | ||
943 | #define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A | ||
944 | #define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B | ||
945 | #define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C | ||
946 | #define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D | ||
947 | #define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E | ||
948 | #define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F | ||
949 | #define GL_MAX_INTEGER_SAMPLES 0x9110 | ||
950 | #define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE | ||
951 | #define GL_SRC1_COLOR 0x88F9 | ||
952 | #define GL_ONE_MINUS_SRC1_COLOR 0x88FA | ||
953 | #define GL_ONE_MINUS_SRC1_ALPHA 0x88FB | ||
954 | #define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC | ||
955 | #define GL_ANY_SAMPLES_PASSED 0x8C2F | ||
956 | #define GL_SAMPLER_BINDING 0x8919 | ||
957 | #define GL_RGB10_A2UI 0x906F | ||
958 | #define GL_TEXTURE_SWIZZLE_R 0x8E42 | ||
959 | #define GL_TEXTURE_SWIZZLE_G 0x8E43 | ||
960 | #define GL_TEXTURE_SWIZZLE_B 0x8E44 | ||
961 | #define GL_TEXTURE_SWIZZLE_A 0x8E45 | ||
962 | #define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 | ||
963 | #define GL_TIME_ELAPSED 0x88BF | ||
964 | #define GL_TIMESTAMP 0x8E28 | ||
965 | #define GL_INT_2_10_10_10_REV 0x8D9F | ||
966 | #define GL_SAMPLE_SHADING 0x8C36 | ||
967 | #define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 | ||
968 | #define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E | ||
969 | #define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F | ||
970 | #define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 | ||
971 | #define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A | ||
972 | #define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B | ||
973 | #define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C | ||
974 | #define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D | ||
975 | #define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E | ||
976 | #define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F | ||
977 | #define GL_DRAW_INDIRECT_BUFFER 0x8F3F | ||
978 | #define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 | ||
979 | #define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F | ||
980 | #define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A | ||
981 | #define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B | ||
982 | #define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C | ||
983 | #define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D | ||
984 | #define GL_MAX_VERTEX_STREAMS 0x8E71 | ||
985 | #define GL_DOUBLE_VEC2 0x8FFC | ||
986 | #define GL_DOUBLE_VEC3 0x8FFD | ||
987 | #define GL_DOUBLE_VEC4 0x8FFE | ||
988 | #define GL_DOUBLE_MAT2 0x8F46 | ||
989 | #define GL_DOUBLE_MAT3 0x8F47 | ||
990 | #define GL_DOUBLE_MAT4 0x8F48 | ||
991 | #define GL_DOUBLE_MAT2x3 0x8F49 | ||
992 | #define GL_DOUBLE_MAT2x4 0x8F4A | ||
993 | #define GL_DOUBLE_MAT3x2 0x8F4B | ||
994 | #define GL_DOUBLE_MAT3x4 0x8F4C | ||
995 | #define GL_DOUBLE_MAT4x2 0x8F4D | ||
996 | #define GL_DOUBLE_MAT4x3 0x8F4E | ||
997 | #define GL_ACTIVE_SUBROUTINES 0x8DE5 | ||
998 | #define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 | ||
999 | #define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 | ||
1000 | #define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 | ||
1001 | #define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 | ||
1002 | #define GL_MAX_SUBROUTINES 0x8DE7 | ||
1003 | #define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 | ||
1004 | #define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A | ||
1005 | #define GL_COMPATIBLE_SUBROUTINES 0x8E4B | ||
1006 | #define GL_PATCHES 0x000E | ||
1007 | #define GL_PATCH_VERTICES 0x8E72 | ||
1008 | #define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 | ||
1009 | #define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 | ||
1010 | #define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 | ||
1011 | #define GL_TESS_GEN_MODE 0x8E76 | ||
1012 | #define GL_TESS_GEN_SPACING 0x8E77 | ||
1013 | #define GL_TESS_GEN_VERTEX_ORDER 0x8E78 | ||
1014 | #define GL_TESS_GEN_POINT_MODE 0x8E79 | ||
1015 | #define GL_ISOLINES 0x8E7A | ||
1016 | #define GL_QUADS 0x0007 | ||
1017 | #define GL_FRACTIONAL_ODD 0x8E7B | ||
1018 | #define GL_FRACTIONAL_EVEN 0x8E7C | ||
1019 | #define GL_MAX_PATCH_VERTICES 0x8E7D | ||
1020 | #define GL_MAX_TESS_GEN_LEVEL 0x8E7E | ||
1021 | #define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F | ||
1022 | #define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 | ||
1023 | #define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 | ||
1024 | #define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 | ||
1025 | #define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 | ||
1026 | #define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 | ||
1027 | #define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 | ||
1028 | #define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 | ||
1029 | #define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 | ||
1030 | #define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A | ||
1031 | #define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C | ||
1032 | #define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D | ||
1033 | #define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E | ||
1034 | #define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F | ||
1035 | #define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 | ||
1036 | #define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 | ||
1037 | #define GL_TESS_EVALUATION_SHADER 0x8E87 | ||
1038 | #define GL_TESS_CONTROL_SHADER 0x8E88 | ||
1039 | #define GL_TRANSFORM_FEEDBACK 0x8E22 | ||
1040 | #define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 | ||
1041 | #define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 | ||
1042 | #define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 | ||
1043 | #define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 | ||
1044 | #define GL_FIXED 0x140C | ||
1045 | #define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A | ||
1046 | #define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B | ||
1047 | #define GL_LOW_FLOAT 0x8DF0 | ||
1048 | #define GL_MEDIUM_FLOAT 0x8DF1 | ||
1049 | #define GL_HIGH_FLOAT 0x8DF2 | ||
1050 | #define GL_LOW_INT 0x8DF3 | ||
1051 | #define GL_MEDIUM_INT 0x8DF4 | ||
1052 | #define GL_HIGH_INT 0x8DF5 | ||
1053 | #define GL_SHADER_COMPILER 0x8DFA | ||
1054 | #define GL_SHADER_BINARY_FORMATS 0x8DF8 | ||
1055 | #define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 | ||
1056 | #define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB | ||
1057 | #define GL_MAX_VARYING_VECTORS 0x8DFC | ||
1058 | #define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD | ||
1059 | #define GL_RGB565 0x8D62 | ||
1060 | #define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 | ||
1061 | #define GL_PROGRAM_BINARY_LENGTH 0x8741 | ||
1062 | #define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE | ||
1063 | #define GL_PROGRAM_BINARY_FORMATS 0x87FF | ||
1064 | #define GL_VERTEX_SHADER_BIT 0x00000001 | ||
1065 | #define GL_FRAGMENT_SHADER_BIT 0x00000002 | ||
1066 | #define GL_GEOMETRY_SHADER_BIT 0x00000004 | ||
1067 | #define GL_TESS_CONTROL_SHADER_BIT 0x00000008 | ||
1068 | #define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 | ||
1069 | #define GL_ALL_SHADER_BITS 0xFFFFFFFF | ||
1070 | #define GL_PROGRAM_SEPARABLE 0x8258 | ||
1071 | #define GL_ACTIVE_PROGRAM 0x8259 | ||
1072 | #define GL_PROGRAM_PIPELINE_BINDING 0x825A | ||
1073 | #define GL_MAX_VIEWPORTS 0x825B | ||
1074 | #define GL_VIEWPORT_SUBPIXEL_BITS 0x825C | ||
1075 | #define GL_VIEWPORT_BOUNDS_RANGE 0x825D | ||
1076 | #define GL_LAYER_PROVOKING_VERTEX 0x825E | ||
1077 | #define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F | ||
1078 | #define GL_UNDEFINED_VERTEX 0x8260 | ||
1079 | #define GL_COPY_READ_BUFFER_BINDING 0x8F36 | ||
1080 | #define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 | ||
1081 | #define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 | ||
1082 | #define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 | ||
1083 | #define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 | ||
1084 | #define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 | ||
1085 | #define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 | ||
1086 | #define GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A | ||
1087 | #define GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B | ||
1088 | #define GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C | ||
1089 | #define GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D | ||
1090 | #define GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E | ||
1091 | #define GL_NUM_SAMPLE_COUNTS 0x9380 | ||
1092 | #define GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC | ||
1093 | #define GL_ATOMIC_COUNTER_BUFFER 0x92C0 | ||
1094 | #define GL_ATOMIC_COUNTER_BUFFER_BINDING 0x92C1 | ||
1095 | #define GL_ATOMIC_COUNTER_BUFFER_START 0x92C2 | ||
1096 | #define GL_ATOMIC_COUNTER_BUFFER_SIZE 0x92C3 | ||
1097 | #define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE 0x92C4 | ||
1098 | #define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS 0x92C5 | ||
1099 | #define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES 0x92C6 | ||
1100 | #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER 0x92C7 | ||
1101 | #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER 0x92C8 | ||
1102 | #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER 0x92C9 | ||
1103 | #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER 0x92CA | ||
1104 | #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER 0x92CB | ||
1105 | #define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS 0x92CC | ||
1106 | #define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS 0x92CD | ||
1107 | #define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS 0x92CE | ||
1108 | #define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS 0x92CF | ||
1109 | #define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS 0x92D0 | ||
1110 | #define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS 0x92D1 | ||
1111 | #define GL_MAX_VERTEX_ATOMIC_COUNTERS 0x92D2 | ||
1112 | #define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS 0x92D3 | ||
1113 | #define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS 0x92D4 | ||
1114 | #define GL_MAX_GEOMETRY_ATOMIC_COUNTERS 0x92D5 | ||
1115 | #define GL_MAX_FRAGMENT_ATOMIC_COUNTERS 0x92D6 | ||
1116 | #define GL_MAX_COMBINED_ATOMIC_COUNTERS 0x92D7 | ||
1117 | #define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE 0x92D8 | ||
1118 | #define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS 0x92DC | ||
1119 | #define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS 0x92D9 | ||
1120 | #define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX 0x92DA | ||
1121 | #define GL_UNSIGNED_INT_ATOMIC_COUNTER 0x92DB | ||
1122 | #define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT 0x00000001 | ||
1123 | #define GL_ELEMENT_ARRAY_BARRIER_BIT 0x00000002 | ||
1124 | #define GL_UNIFORM_BARRIER_BIT 0x00000004 | ||
1125 | #define GL_TEXTURE_FETCH_BARRIER_BIT 0x00000008 | ||
1126 | #define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT 0x00000020 | ||
1127 | #define GL_COMMAND_BARRIER_BIT 0x00000040 | ||
1128 | #define GL_PIXEL_BUFFER_BARRIER_BIT 0x00000080 | ||
1129 | #define GL_TEXTURE_UPDATE_BARRIER_BIT 0x00000100 | ||
1130 | #define GL_BUFFER_UPDATE_BARRIER_BIT 0x00000200 | ||
1131 | #define GL_FRAMEBUFFER_BARRIER_BIT 0x00000400 | ||
1132 | #define GL_TRANSFORM_FEEDBACK_BARRIER_BIT 0x00000800 | ||
1133 | #define GL_ATOMIC_COUNTER_BARRIER_BIT 0x00001000 | ||
1134 | #define GL_ALL_BARRIER_BITS 0xFFFFFFFF | ||
1135 | #define GL_MAX_IMAGE_UNITS 0x8F38 | ||
1136 | #define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS 0x8F39 | ||
1137 | #define GL_IMAGE_BINDING_NAME 0x8F3A | ||
1138 | #define GL_IMAGE_BINDING_LEVEL 0x8F3B | ||
1139 | #define GL_IMAGE_BINDING_LAYERED 0x8F3C | ||
1140 | #define GL_IMAGE_BINDING_LAYER 0x8F3D | ||
1141 | #define GL_IMAGE_BINDING_ACCESS 0x8F3E | ||
1142 | #define GL_IMAGE_1D 0x904C | ||
1143 | #define GL_IMAGE_2D 0x904D | ||
1144 | #define GL_IMAGE_3D 0x904E | ||
1145 | #define GL_IMAGE_2D_RECT 0x904F | ||
1146 | #define GL_IMAGE_CUBE 0x9050 | ||
1147 | #define GL_IMAGE_BUFFER 0x9051 | ||
1148 | #define GL_IMAGE_1D_ARRAY 0x9052 | ||
1149 | #define GL_IMAGE_2D_ARRAY 0x9053 | ||
1150 | #define GL_IMAGE_CUBE_MAP_ARRAY 0x9054 | ||
1151 | #define GL_IMAGE_2D_MULTISAMPLE 0x9055 | ||
1152 | #define GL_IMAGE_2D_MULTISAMPLE_ARRAY 0x9056 | ||
1153 | #define GL_INT_IMAGE_1D 0x9057 | ||
1154 | #define GL_INT_IMAGE_2D 0x9058 | ||
1155 | #define GL_INT_IMAGE_3D 0x9059 | ||
1156 | #define GL_INT_IMAGE_2D_RECT 0x905A | ||
1157 | #define GL_INT_IMAGE_CUBE 0x905B | ||
1158 | #define GL_INT_IMAGE_BUFFER 0x905C | ||
1159 | #define GL_INT_IMAGE_1D_ARRAY 0x905D | ||
1160 | #define GL_INT_IMAGE_2D_ARRAY 0x905E | ||
1161 | #define GL_INT_IMAGE_CUBE_MAP_ARRAY 0x905F | ||
1162 | #define GL_INT_IMAGE_2D_MULTISAMPLE 0x9060 | ||
1163 | #define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x9061 | ||
1164 | #define GL_UNSIGNED_INT_IMAGE_1D 0x9062 | ||
1165 | #define GL_UNSIGNED_INT_IMAGE_2D 0x9063 | ||
1166 | #define GL_UNSIGNED_INT_IMAGE_3D 0x9064 | ||
1167 | #define GL_UNSIGNED_INT_IMAGE_2D_RECT 0x9065 | ||
1168 | #define GL_UNSIGNED_INT_IMAGE_CUBE 0x9066 | ||
1169 | #define GL_UNSIGNED_INT_IMAGE_BUFFER 0x9067 | ||
1170 | #define GL_UNSIGNED_INT_IMAGE_1D_ARRAY 0x9068 | ||
1171 | #define GL_UNSIGNED_INT_IMAGE_2D_ARRAY 0x9069 | ||
1172 | #define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY 0x906A | ||
1173 | #define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE 0x906B | ||
1174 | #define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x906C | ||
1175 | #define GL_MAX_IMAGE_SAMPLES 0x906D | ||
1176 | #define GL_IMAGE_BINDING_FORMAT 0x906E | ||
1177 | #define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE 0x90C7 | ||
1178 | #define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE 0x90C8 | ||
1179 | #define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS 0x90C9 | ||
1180 | #define GL_MAX_VERTEX_IMAGE_UNIFORMS 0x90CA | ||
1181 | #define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS 0x90CB | ||
1182 | #define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS 0x90CC | ||
1183 | #define GL_MAX_GEOMETRY_IMAGE_UNIFORMS 0x90CD | ||
1184 | #define GL_MAX_FRAGMENT_IMAGE_UNIFORMS 0x90CE | ||
1185 | #define GL_MAX_COMBINED_IMAGE_UNIFORMS 0x90CF | ||
1186 | #define GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C | ||
1187 | #define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D | ||
1188 | #define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E | ||
1189 | #define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F | ||
1190 | #define GL_TEXTURE_IMMUTABLE_FORMAT 0x912F | ||
1191 | #define GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 | ||
1192 | #define GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E | ||
1193 | #define GL_COMPRESSED_RGB8_ETC2 0x9274 | ||
1194 | #define GL_COMPRESSED_SRGB8_ETC2 0x9275 | ||
1195 | #define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9276 | ||
1196 | #define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9277 | ||
1197 | #define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278 | ||
1198 | #define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC 0x9279 | ||
1199 | #define GL_COMPRESSED_R11_EAC 0x9270 | ||
1200 | #define GL_COMPRESSED_SIGNED_R11_EAC 0x9271 | ||
1201 | #define GL_COMPRESSED_RG11_EAC 0x9272 | ||
1202 | #define GL_COMPRESSED_SIGNED_RG11_EAC 0x9273 | ||
1203 | #define GL_PRIMITIVE_RESTART_FIXED_INDEX 0x8D69 | ||
1204 | #define GL_ANY_SAMPLES_PASSED_CONSERVATIVE 0x8D6A | ||
1205 | #define GL_MAX_ELEMENT_INDEX 0x8D6B | ||
1206 | #define GL_COMPUTE_SHADER 0x91B9 | ||
1207 | #define GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB | ||
1208 | #define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC | ||
1209 | #define GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD | ||
1210 | #define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262 | ||
1211 | #define GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263 | ||
1212 | #define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264 | ||
1213 | #define GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265 | ||
1214 | #define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266 | ||
1215 | #define GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB | ||
1216 | #define GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE | ||
1217 | #define GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF | ||
1218 | #define GL_COMPUTE_WORK_GROUP_SIZE 0x8267 | ||
1219 | #define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC | ||
1220 | #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED | ||
1221 | #define GL_DISPATCH_INDIRECT_BUFFER 0x90EE | ||
1222 | #define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF | ||
1223 | #define GL_COMPUTE_SHADER_BIT 0x00000020 | ||
1224 | #define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 | ||
1225 | #define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 | ||
1226 | #define GL_DEBUG_CALLBACK_FUNCTION 0x8244 | ||
1227 | #define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 | ||
1228 | #define GL_DEBUG_SOURCE_API 0x8246 | ||
1229 | #define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 | ||
1230 | #define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 | ||
1231 | #define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 | ||
1232 | #define GL_DEBUG_SOURCE_APPLICATION 0x824A | ||
1233 | #define GL_DEBUG_SOURCE_OTHER 0x824B | ||
1234 | #define GL_DEBUG_TYPE_ERROR 0x824C | ||
1235 | #define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D | ||
1236 | #define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E | ||
1237 | #define GL_DEBUG_TYPE_PORTABILITY 0x824F | ||
1238 | #define GL_DEBUG_TYPE_PERFORMANCE 0x8250 | ||
1239 | #define GL_DEBUG_TYPE_OTHER 0x8251 | ||
1240 | #define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 | ||
1241 | #define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 | ||
1242 | #define GL_DEBUG_LOGGED_MESSAGES 0x9145 | ||
1243 | #define GL_DEBUG_SEVERITY_HIGH 0x9146 | ||
1244 | #define GL_DEBUG_SEVERITY_MEDIUM 0x9147 | ||
1245 | #define GL_DEBUG_SEVERITY_LOW 0x9148 | ||
1246 | #define GL_DEBUG_TYPE_MARKER 0x8268 | ||
1247 | #define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 | ||
1248 | #define GL_DEBUG_TYPE_POP_GROUP 0x826A | ||
1249 | #define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B | ||
1250 | #define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C | ||
1251 | #define GL_DEBUG_GROUP_STACK_DEPTH 0x826D | ||
1252 | #define GL_BUFFER 0x82E0 | ||
1253 | #define GL_SHADER 0x82E1 | ||
1254 | #define GL_PROGRAM 0x82E2 | ||
1255 | #define GL_VERTEX_ARRAY 0x8074 | ||
1256 | #define GL_QUERY 0x82E3 | ||
1257 | #define GL_PROGRAM_PIPELINE 0x82E4 | ||
1258 | #define GL_SAMPLER 0x82E6 | ||
1259 | #define GL_MAX_LABEL_LENGTH 0x82E8 | ||
1260 | #define GL_DEBUG_OUTPUT 0x92E0 | ||
1261 | #define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 | ||
1262 | #define GL_MAX_UNIFORM_LOCATIONS 0x826E | ||
1263 | #define GL_FRAMEBUFFER_DEFAULT_WIDTH 0x9310 | ||
1264 | #define GL_FRAMEBUFFER_DEFAULT_HEIGHT 0x9311 | ||
1265 | #define GL_FRAMEBUFFER_DEFAULT_LAYERS 0x9312 | ||
1266 | #define GL_FRAMEBUFFER_DEFAULT_SAMPLES 0x9313 | ||
1267 | #define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS 0x9314 | ||
1268 | #define GL_MAX_FRAMEBUFFER_WIDTH 0x9315 | ||
1269 | #define GL_MAX_FRAMEBUFFER_HEIGHT 0x9316 | ||
1270 | #define GL_MAX_FRAMEBUFFER_LAYERS 0x9317 | ||
1271 | #define GL_MAX_FRAMEBUFFER_SAMPLES 0x9318 | ||
1272 | #define GL_INTERNALFORMAT_SUPPORTED 0x826F | ||
1273 | #define GL_INTERNALFORMAT_PREFERRED 0x8270 | ||
1274 | #define GL_INTERNALFORMAT_RED_SIZE 0x8271 | ||
1275 | #define GL_INTERNALFORMAT_GREEN_SIZE 0x8272 | ||
1276 | #define GL_INTERNALFORMAT_BLUE_SIZE 0x8273 | ||
1277 | #define GL_INTERNALFORMAT_ALPHA_SIZE 0x8274 | ||
1278 | #define GL_INTERNALFORMAT_DEPTH_SIZE 0x8275 | ||
1279 | #define GL_INTERNALFORMAT_STENCIL_SIZE 0x8276 | ||
1280 | #define GL_INTERNALFORMAT_SHARED_SIZE 0x8277 | ||
1281 | #define GL_INTERNALFORMAT_RED_TYPE 0x8278 | ||
1282 | #define GL_INTERNALFORMAT_GREEN_TYPE 0x8279 | ||
1283 | #define GL_INTERNALFORMAT_BLUE_TYPE 0x827A | ||
1284 | #define GL_INTERNALFORMAT_ALPHA_TYPE 0x827B | ||
1285 | #define GL_INTERNALFORMAT_DEPTH_TYPE 0x827C | ||
1286 | #define GL_INTERNALFORMAT_STENCIL_TYPE 0x827D | ||
1287 | #define GL_MAX_WIDTH 0x827E | ||
1288 | #define GL_MAX_HEIGHT 0x827F | ||
1289 | #define GL_MAX_DEPTH 0x8280 | ||
1290 | #define GL_MAX_LAYERS 0x8281 | ||
1291 | #define GL_MAX_COMBINED_DIMENSIONS 0x8282 | ||
1292 | #define GL_COLOR_COMPONENTS 0x8283 | ||
1293 | #define GL_DEPTH_COMPONENTS 0x8284 | ||
1294 | #define GL_STENCIL_COMPONENTS 0x8285 | ||
1295 | #define GL_COLOR_RENDERABLE 0x8286 | ||
1296 | #define GL_DEPTH_RENDERABLE 0x8287 | ||
1297 | #define GL_STENCIL_RENDERABLE 0x8288 | ||
1298 | #define GL_FRAMEBUFFER_RENDERABLE 0x8289 | ||
1299 | #define GL_FRAMEBUFFER_RENDERABLE_LAYERED 0x828A | ||
1300 | #define GL_FRAMEBUFFER_BLEND 0x828B | ||
1301 | #define GL_READ_PIXELS 0x828C | ||
1302 | #define GL_READ_PIXELS_FORMAT 0x828D | ||
1303 | #define GL_READ_PIXELS_TYPE 0x828E | ||
1304 | #define GL_TEXTURE_IMAGE_FORMAT 0x828F | ||
1305 | #define GL_TEXTURE_IMAGE_TYPE 0x8290 | ||
1306 | #define GL_GET_TEXTURE_IMAGE_FORMAT 0x8291 | ||
1307 | #define GL_GET_TEXTURE_IMAGE_TYPE 0x8292 | ||
1308 | #define GL_MIPMAP 0x8293 | ||
1309 | #define GL_MANUAL_GENERATE_MIPMAP 0x8294 | ||
1310 | #define GL_AUTO_GENERATE_MIPMAP 0x8295 | ||
1311 | #define GL_COLOR_ENCODING 0x8296 | ||
1312 | #define GL_SRGB_READ 0x8297 | ||
1313 | #define GL_SRGB_WRITE 0x8298 | ||
1314 | #define GL_FILTER 0x829A | ||
1315 | #define GL_VERTEX_TEXTURE 0x829B | ||
1316 | #define GL_TESS_CONTROL_TEXTURE 0x829C | ||
1317 | #define GL_TESS_EVALUATION_TEXTURE 0x829D | ||
1318 | #define GL_GEOMETRY_TEXTURE 0x829E | ||
1319 | #define GL_FRAGMENT_TEXTURE 0x829F | ||
1320 | #define GL_COMPUTE_TEXTURE 0x82A0 | ||
1321 | #define GL_TEXTURE_SHADOW 0x82A1 | ||
1322 | #define GL_TEXTURE_GATHER 0x82A2 | ||
1323 | #define GL_TEXTURE_GATHER_SHADOW 0x82A3 | ||
1324 | #define GL_SHADER_IMAGE_LOAD 0x82A4 | ||
1325 | #define GL_SHADER_IMAGE_STORE 0x82A5 | ||
1326 | #define GL_SHADER_IMAGE_ATOMIC 0x82A6 | ||
1327 | #define GL_IMAGE_TEXEL_SIZE 0x82A7 | ||
1328 | #define GL_IMAGE_COMPATIBILITY_CLASS 0x82A8 | ||
1329 | #define GL_IMAGE_PIXEL_FORMAT 0x82A9 | ||
1330 | #define GL_IMAGE_PIXEL_TYPE 0x82AA | ||
1331 | #define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST 0x82AC | ||
1332 | #define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST 0x82AD | ||
1333 | #define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE 0x82AE | ||
1334 | #define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE 0x82AF | ||
1335 | #define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH 0x82B1 | ||
1336 | #define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT 0x82B2 | ||
1337 | #define GL_TEXTURE_COMPRESSED_BLOCK_SIZE 0x82B3 | ||
1338 | #define GL_CLEAR_BUFFER 0x82B4 | ||
1339 | #define GL_TEXTURE_VIEW 0x82B5 | ||
1340 | #define GL_VIEW_COMPATIBILITY_CLASS 0x82B6 | ||
1341 | #define GL_FULL_SUPPORT 0x82B7 | ||
1342 | #define GL_CAVEAT_SUPPORT 0x82B8 | ||
1343 | #define GL_IMAGE_CLASS_4_X_32 0x82B9 | ||
1344 | #define GL_IMAGE_CLASS_2_X_32 0x82BA | ||
1345 | #define GL_IMAGE_CLASS_1_X_32 0x82BB | ||
1346 | #define GL_IMAGE_CLASS_4_X_16 0x82BC | ||
1347 | #define GL_IMAGE_CLASS_2_X_16 0x82BD | ||
1348 | #define GL_IMAGE_CLASS_1_X_16 0x82BE | ||
1349 | #define GL_IMAGE_CLASS_4_X_8 0x82BF | ||
1350 | #define GL_IMAGE_CLASS_2_X_8 0x82C0 | ||
1351 | #define GL_IMAGE_CLASS_1_X_8 0x82C1 | ||
1352 | #define GL_IMAGE_CLASS_11_11_10 0x82C2 | ||
1353 | #define GL_IMAGE_CLASS_10_10_10_2 0x82C3 | ||
1354 | #define GL_VIEW_CLASS_128_BITS 0x82C4 | ||
1355 | #define GL_VIEW_CLASS_96_BITS 0x82C5 | ||
1356 | #define GL_VIEW_CLASS_64_BITS 0x82C6 | ||
1357 | #define GL_VIEW_CLASS_48_BITS 0x82C7 | ||
1358 | #define GL_VIEW_CLASS_32_BITS 0x82C8 | ||
1359 | #define GL_VIEW_CLASS_24_BITS 0x82C9 | ||
1360 | #define GL_VIEW_CLASS_16_BITS 0x82CA | ||
1361 | #define GL_VIEW_CLASS_8_BITS 0x82CB | ||
1362 | #define GL_VIEW_CLASS_S3TC_DXT1_RGB 0x82CC | ||
1363 | #define GL_VIEW_CLASS_S3TC_DXT1_RGBA 0x82CD | ||
1364 | #define GL_VIEW_CLASS_S3TC_DXT3_RGBA 0x82CE | ||
1365 | #define GL_VIEW_CLASS_S3TC_DXT5_RGBA 0x82CF | ||
1366 | #define GL_VIEW_CLASS_RGTC1_RED 0x82D0 | ||
1367 | #define GL_VIEW_CLASS_RGTC2_RG 0x82D1 | ||
1368 | #define GL_VIEW_CLASS_BPTC_UNORM 0x82D2 | ||
1369 | #define GL_VIEW_CLASS_BPTC_FLOAT 0x82D3 | ||
1370 | #define GL_UNIFORM 0x92E1 | ||
1371 | #define GL_UNIFORM_BLOCK 0x92E2 | ||
1372 | #define GL_PROGRAM_INPUT 0x92E3 | ||
1373 | #define GL_PROGRAM_OUTPUT 0x92E4 | ||
1374 | #define GL_BUFFER_VARIABLE 0x92E5 | ||
1375 | #define GL_SHADER_STORAGE_BLOCK 0x92E6 | ||
1376 | #define GL_VERTEX_SUBROUTINE 0x92E8 | ||
1377 | #define GL_TESS_CONTROL_SUBROUTINE 0x92E9 | ||
1378 | #define GL_TESS_EVALUATION_SUBROUTINE 0x92EA | ||
1379 | #define GL_GEOMETRY_SUBROUTINE 0x92EB | ||
1380 | #define GL_FRAGMENT_SUBROUTINE 0x92EC | ||
1381 | #define GL_COMPUTE_SUBROUTINE 0x92ED | ||
1382 | #define GL_VERTEX_SUBROUTINE_UNIFORM 0x92EE | ||
1383 | #define GL_TESS_CONTROL_SUBROUTINE_UNIFORM 0x92EF | ||
1384 | #define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM 0x92F0 | ||
1385 | #define GL_GEOMETRY_SUBROUTINE_UNIFORM 0x92F1 | ||
1386 | #define GL_FRAGMENT_SUBROUTINE_UNIFORM 0x92F2 | ||
1387 | #define GL_COMPUTE_SUBROUTINE_UNIFORM 0x92F3 | ||
1388 | #define GL_TRANSFORM_FEEDBACK_VARYING 0x92F4 | ||
1389 | #define GL_ACTIVE_RESOURCES 0x92F5 | ||
1390 | #define GL_MAX_NAME_LENGTH 0x92F6 | ||
1391 | #define GL_MAX_NUM_ACTIVE_VARIABLES 0x92F7 | ||
1392 | #define GL_MAX_NUM_COMPATIBLE_SUBROUTINES 0x92F8 | ||
1393 | #define GL_NAME_LENGTH 0x92F9 | ||
1394 | #define GL_TYPE 0x92FA | ||
1395 | #define GL_ARRAY_SIZE 0x92FB | ||
1396 | #define GL_OFFSET 0x92FC | ||
1397 | #define GL_BLOCK_INDEX 0x92FD | ||
1398 | #define GL_ARRAY_STRIDE 0x92FE | ||
1399 | #define GL_MATRIX_STRIDE 0x92FF | ||
1400 | #define GL_IS_ROW_MAJOR 0x9300 | ||
1401 | #define GL_ATOMIC_COUNTER_BUFFER_INDEX 0x9301 | ||
1402 | #define GL_BUFFER_BINDING 0x9302 | ||
1403 | #define GL_BUFFER_DATA_SIZE 0x9303 | ||
1404 | #define GL_NUM_ACTIVE_VARIABLES 0x9304 | ||
1405 | #define GL_ACTIVE_VARIABLES 0x9305 | ||
1406 | #define GL_REFERENCED_BY_VERTEX_SHADER 0x9306 | ||
1407 | #define GL_REFERENCED_BY_TESS_CONTROL_SHADER 0x9307 | ||
1408 | #define GL_REFERENCED_BY_TESS_EVALUATION_SHADER 0x9308 | ||
1409 | #define GL_REFERENCED_BY_GEOMETRY_SHADER 0x9309 | ||
1410 | #define GL_REFERENCED_BY_FRAGMENT_SHADER 0x930A | ||
1411 | #define GL_REFERENCED_BY_COMPUTE_SHADER 0x930B | ||
1412 | #define GL_TOP_LEVEL_ARRAY_SIZE 0x930C | ||
1413 | #define GL_TOP_LEVEL_ARRAY_STRIDE 0x930D | ||
1414 | #define GL_LOCATION 0x930E | ||
1415 | #define GL_LOCATION_INDEX 0x930F | ||
1416 | #define GL_IS_PER_PATCH 0x92E7 | ||
1417 | #define GL_SHADER_STORAGE_BUFFER 0x90D2 | ||
1418 | #define GL_SHADER_STORAGE_BUFFER_BINDING 0x90D3 | ||
1419 | #define GL_SHADER_STORAGE_BUFFER_START 0x90D4 | ||
1420 | #define GL_SHADER_STORAGE_BUFFER_SIZE 0x90D5 | ||
1421 | #define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS 0x90D6 | ||
1422 | #define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS 0x90D7 | ||
1423 | #define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS 0x90D8 | ||
1424 | #define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS 0x90D9 | ||
1425 | #define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS 0x90DA | ||
1426 | #define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS 0x90DB | ||
1427 | #define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS 0x90DC | ||
1428 | #define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS 0x90DD | ||
1429 | #define GL_MAX_SHADER_STORAGE_BLOCK_SIZE 0x90DE | ||
1430 | #define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT 0x90DF | ||
1431 | #define GL_SHADER_STORAGE_BARRIER_BIT 0x00002000 | ||
1432 | #define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES 0x8F39 | ||
1433 | #define GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA | ||
1434 | #define GL_TEXTURE_BUFFER_OFFSET 0x919D | ||
1435 | #define GL_TEXTURE_BUFFER_SIZE 0x919E | ||
1436 | #define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F | ||
1437 | #define GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB | ||
1438 | #define GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC | ||
1439 | #define GL_TEXTURE_VIEW_MIN_LAYER 0x82DD | ||
1440 | #define GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE | ||
1441 | #define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF | ||
1442 | #define GL_VERTEX_ATTRIB_BINDING 0x82D4 | ||
1443 | #define GL_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D5 | ||
1444 | #define GL_VERTEX_BINDING_DIVISOR 0x82D6 | ||
1445 | #define GL_VERTEX_BINDING_OFFSET 0x82D7 | ||
1446 | #define GL_VERTEX_BINDING_STRIDE 0x82D8 | ||
1447 | #define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D9 | ||
1448 | #define GL_MAX_VERTEX_ATTRIB_BINDINGS 0x82DA | ||
1449 | #define GL_VERTEX_BINDING_BUFFER 0x8F4F | ||
1450 | #define GL_DISPLAY_LIST 0x82E7 | ||
1451 | #define GL_STACK_UNDERFLOW 0x0504 | ||
1452 | #define GL_STACK_OVERFLOW 0x0503 | ||
1453 | #define GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 | ||
1454 | #define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 | ||
1455 | #define GL_TEXTURE_BUFFER_BINDING 0x8C2A | ||
1456 | #define GL_MAP_PERSISTENT_BIT 0x0040 | ||
1457 | #define GL_MAP_COHERENT_BIT 0x0080 | ||
1458 | #define GL_DYNAMIC_STORAGE_BIT 0x0100 | ||
1459 | #define GL_CLIENT_STORAGE_BIT 0x0200 | ||
1460 | #define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT 0x00004000 | ||
1461 | #define GL_BUFFER_IMMUTABLE_STORAGE 0x821F | ||
1462 | #define GL_BUFFER_STORAGE_FLAGS 0x8220 | ||
1463 | #define GL_CLEAR_TEXTURE 0x9365 | ||
1464 | #define GL_LOCATION_COMPONENT 0x934A | ||
1465 | #define GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B | ||
1466 | #define GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C | ||
1467 | #define GL_QUERY_BUFFER 0x9192 | ||
1468 | #define GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 | ||
1469 | #define GL_QUERY_BUFFER_BINDING 0x9193 | ||
1470 | #define GL_QUERY_RESULT_NO_WAIT 0x9194 | ||
1471 | #define GL_MIRROR_CLAMP_TO_EDGE 0x8743 | ||
1472 | #define GL_CONTEXT_LOST 0x0507 | ||
1473 | #define GL_NEGATIVE_ONE_TO_ONE 0x935E | ||
1474 | #define GL_ZERO_TO_ONE 0x935F | ||
1475 | #define GL_CLIP_ORIGIN 0x935C | ||
1476 | #define GL_CLIP_DEPTH_MODE 0x935D | ||
1477 | #define GL_QUERY_WAIT_INVERTED 0x8E17 | ||
1478 | #define GL_QUERY_NO_WAIT_INVERTED 0x8E18 | ||
1479 | #define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 | ||
1480 | #define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A | ||
1481 | #define GL_MAX_CULL_DISTANCES 0x82F9 | ||
1482 | #define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA | ||
1483 | #define GL_TEXTURE_TARGET 0x1006 | ||
1484 | #define GL_QUERY_TARGET 0x82EA | ||
1485 | #define GL_GUILTY_CONTEXT_RESET 0x8253 | ||
1486 | #define GL_INNOCENT_CONTEXT_RESET 0x8254 | ||
1487 | #define GL_UNKNOWN_CONTEXT_RESET 0x8255 | ||
1488 | #define GL_RESET_NOTIFICATION_STRATEGY 0x8256 | ||
1489 | #define GL_LOSE_CONTEXT_ON_RESET 0x8252 | ||
1490 | #define GL_NO_RESET_NOTIFICATION 0x8261 | ||
1491 | #define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 | ||
1492 | #define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB | ||
1493 | #define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC | ||
1494 | #define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 | ||
1495 | #define GL_SPIR_V_BINARY 0x9552 | ||
1496 | #define GL_PARAMETER_BUFFER 0x80EE | ||
1497 | #define GL_PARAMETER_BUFFER_BINDING 0x80EF | ||
1498 | #define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 | ||
1499 | #define GL_VERTICES_SUBMITTED 0x82EE | ||
1500 | #define GL_PRIMITIVES_SUBMITTED 0x82EF | ||
1501 | #define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 | ||
1502 | #define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 | ||
1503 | #define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 | ||
1504 | #define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 | ||
1505 | #define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 | ||
1506 | #define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 | ||
1507 | #define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 | ||
1508 | #define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 | ||
1509 | #define GL_POLYGON_OFFSET_CLAMP 0x8E1B | ||
1510 | #define GL_SPIR_V_EXTENSIONS 0x9553 | ||
1511 | #define GL_NUM_SPIR_V_EXTENSIONS 0x9554 | ||
1512 | #define GL_TEXTURE_MAX_ANISOTROPY 0x84FE | ||
1513 | #define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF | ||
1514 | #define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC | ||
1515 | #define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED | ||
1516 | #define GL_ALIASED_POINT_SIZE_RANGE 0x846D | ||
1517 | #define GL_RED_BITS 0x0D52 | ||
1518 | #define GL_GREEN_BITS 0x0D53 | ||
1519 | #define GL_BLUE_BITS 0x0D54 | ||
1520 | #define GL_ALPHA_BITS 0x0D55 | ||
1521 | #define GL_DEPTH_BITS 0x0D56 | ||
1522 | #define GL_STENCIL_BITS 0x0D57 | ||
1523 | #define GL_GENERATE_MIPMAP_HINT 0x8192 | ||
1524 | #define GL_LUMINANCE 0x1909 | ||
1525 | #define GL_LUMINANCE_ALPHA 0x190A | ||
1526 | #define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 | ||
1527 | #define GL_MULTISAMPLE_LINE_WIDTH_RANGE 0x9381 | ||
1528 | #define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY 0x9382 | ||
1529 | #define GL_MULTIPLY 0x9294 | ||
1530 | #define GL_SCREEN 0x9295 | ||
1531 | #define GL_OVERLAY 0x9296 | ||
1532 | #define GL_DARKEN 0x9297 | ||
1533 | #define GL_LIGHTEN 0x9298 | ||
1534 | #define GL_COLORDODGE 0x9299 | ||
1535 | #define GL_COLORBURN 0x929A | ||
1536 | #define GL_HARDLIGHT 0x929B | ||
1537 | #define GL_SOFTLIGHT 0x929C | ||
1538 | #define GL_DIFFERENCE 0x929E | ||
1539 | #define GL_EXCLUSION 0x92A0 | ||
1540 | #define GL_HSL_HUE 0x92AD | ||
1541 | #define GL_HSL_SATURATION 0x92AE | ||
1542 | #define GL_HSL_COLOR 0x92AF | ||
1543 | #define GL_HSL_LUMINOSITY 0x92B0 | ||
1544 | #define GL_PRIMITIVE_BOUNDING_BOX 0x92BE | ||
1545 | #define GL_COMPRESSED_RGBA_ASTC_4x4 0x93B0 | ||
1546 | #define GL_COMPRESSED_RGBA_ASTC_5x4 0x93B1 | ||
1547 | #define GL_COMPRESSED_RGBA_ASTC_5x5 0x93B2 | ||
1548 | #define GL_COMPRESSED_RGBA_ASTC_6x5 0x93B3 | ||
1549 | #define GL_COMPRESSED_RGBA_ASTC_6x6 0x93B4 | ||
1550 | #define GL_COMPRESSED_RGBA_ASTC_8x5 0x93B5 | ||
1551 | #define GL_COMPRESSED_RGBA_ASTC_8x6 0x93B6 | ||
1552 | #define GL_COMPRESSED_RGBA_ASTC_8x8 0x93B7 | ||
1553 | #define GL_COMPRESSED_RGBA_ASTC_10x5 0x93B8 | ||
1554 | #define GL_COMPRESSED_RGBA_ASTC_10x6 0x93B9 | ||
1555 | #define GL_COMPRESSED_RGBA_ASTC_10x8 0x93BA | ||
1556 | #define GL_COMPRESSED_RGBA_ASTC_10x10 0x93BB | ||
1557 | #define GL_COMPRESSED_RGBA_ASTC_12x10 0x93BC | ||
1558 | #define GL_COMPRESSED_RGBA_ASTC_12x12 0x93BD | ||
1559 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4 0x93D0 | ||
1560 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4 0x93D1 | ||
1561 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5 0x93D2 | ||
1562 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5 0x93D3 | ||
1563 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6 0x93D4 | ||
1564 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5 0x93D5 | ||
1565 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6 0x93D6 | ||
1566 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8 0x93D7 | ||
1567 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5 0x93D8 | ||
1568 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6 0x93D9 | ||
1569 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8 0x93DA | ||
1570 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10 0x93DB | ||
1571 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10 0x93DC | ||
1572 | #define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12 0x93DD | ||
1573 | #ifndef GL_VERSION_1_0 | ||
1574 | #define GL_VERSION_1_0 1 | ||
1575 | GLAPI int GLAD_GL_VERSION_1_0; | ||
1576 | typedef void (APIENTRYP PFNGLCULLFACEPROC)(GLenum mode); | ||
1577 | GLAPI PFNGLCULLFACEPROC glad_glCullFace; | ||
1578 | #define glCullFace glad_glCullFace | ||
1579 | typedef void (APIENTRYP PFNGLFRONTFACEPROC)(GLenum mode); | ||
1580 | GLAPI PFNGLFRONTFACEPROC glad_glFrontFace; | ||
1581 | #define glFrontFace glad_glFrontFace | ||
1582 | typedef void (APIENTRYP PFNGLHINTPROC)(GLenum target, GLenum mode); | ||
1583 | GLAPI PFNGLHINTPROC glad_glHint; | ||
1584 | #define glHint glad_glHint | ||
1585 | typedef void (APIENTRYP PFNGLLINEWIDTHPROC)(GLfloat width); | ||
1586 | GLAPI PFNGLLINEWIDTHPROC glad_glLineWidth; | ||
1587 | #define glLineWidth glad_glLineWidth | ||
1588 | typedef void (APIENTRYP PFNGLPOINTSIZEPROC)(GLfloat size); | ||
1589 | GLAPI PFNGLPOINTSIZEPROC glad_glPointSize; | ||
1590 | #define glPointSize glad_glPointSize | ||
1591 | typedef void (APIENTRYP PFNGLPOLYGONMODEPROC)(GLenum face, GLenum mode); | ||
1592 | GLAPI PFNGLPOLYGONMODEPROC glad_glPolygonMode; | ||
1593 | #define glPolygonMode glad_glPolygonMode | ||
1594 | typedef void (APIENTRYP PFNGLSCISSORPROC)(GLint x, GLint y, GLsizei width, GLsizei height); | ||
1595 | GLAPI PFNGLSCISSORPROC glad_glScissor; | ||
1596 | #define glScissor glad_glScissor | ||
1597 | typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC)(GLenum target, GLenum pname, GLfloat param); | ||
1598 | GLAPI PFNGLTEXPARAMETERFPROC glad_glTexParameterf; | ||
1599 | #define glTexParameterf glad_glTexParameterf | ||
1600 | typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC)(GLenum target, GLenum pname, const GLfloat *params); | ||
1601 | GLAPI PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv; | ||
1602 | #define glTexParameterfv glad_glTexParameterfv | ||
1603 | typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC)(GLenum target, GLenum pname, GLint param); | ||
1604 | GLAPI PFNGLTEXPARAMETERIPROC glad_glTexParameteri; | ||
1605 | #define glTexParameteri glad_glTexParameteri | ||
1606 | typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC)(GLenum target, GLenum pname, const GLint *params); | ||
1607 | GLAPI PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv; | ||
1608 | #define glTexParameteriv glad_glTexParameteriv | ||
1609 | typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); | ||
1610 | GLAPI PFNGLTEXIMAGE1DPROC glad_glTexImage1D; | ||
1611 | #define glTexImage1D glad_glTexImage1D | ||
1612 | typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); | ||
1613 | GLAPI PFNGLTEXIMAGE2DPROC glad_glTexImage2D; | ||
1614 | #define glTexImage2D glad_glTexImage2D | ||
1615 | typedef void (APIENTRYP PFNGLDRAWBUFFERPROC)(GLenum buf); | ||
1616 | GLAPI PFNGLDRAWBUFFERPROC glad_glDrawBuffer; | ||
1617 | #define glDrawBuffer glad_glDrawBuffer | ||
1618 | typedef void (APIENTRYP PFNGLCLEARPROC)(GLbitfield mask); | ||
1619 | GLAPI PFNGLCLEARPROC glad_glClear; | ||
1620 | #define glClear glad_glClear | ||
1621 | typedef void (APIENTRYP PFNGLCLEARCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); | ||
1622 | GLAPI PFNGLCLEARCOLORPROC glad_glClearColor; | ||
1623 | #define glClearColor glad_glClearColor | ||
1624 | typedef void (APIENTRYP PFNGLCLEARSTENCILPROC)(GLint s); | ||
1625 | GLAPI PFNGLCLEARSTENCILPROC glad_glClearStencil; | ||
1626 | #define glClearStencil glad_glClearStencil | ||
1627 | typedef void (APIENTRYP PFNGLCLEARDEPTHPROC)(GLdouble depth); | ||
1628 | GLAPI PFNGLCLEARDEPTHPROC glad_glClearDepth; | ||
1629 | #define glClearDepth glad_glClearDepth | ||
1630 | typedef void (APIENTRYP PFNGLSTENCILMASKPROC)(GLuint mask); | ||
1631 | GLAPI PFNGLSTENCILMASKPROC glad_glStencilMask; | ||
1632 | #define glStencilMask glad_glStencilMask | ||
1633 | typedef void (APIENTRYP PFNGLCOLORMASKPROC)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); | ||
1634 | GLAPI PFNGLCOLORMASKPROC glad_glColorMask; | ||
1635 | #define glColorMask glad_glColorMask | ||
1636 | typedef void (APIENTRYP PFNGLDEPTHMASKPROC)(GLboolean flag); | ||
1637 | GLAPI PFNGLDEPTHMASKPROC glad_glDepthMask; | ||
1638 | #define glDepthMask glad_glDepthMask | ||
1639 | typedef void (APIENTRYP PFNGLDISABLEPROC)(GLenum cap); | ||
1640 | GLAPI PFNGLDISABLEPROC glad_glDisable; | ||
1641 | #define glDisable glad_glDisable | ||
1642 | typedef void (APIENTRYP PFNGLENABLEPROC)(GLenum cap); | ||
1643 | GLAPI PFNGLENABLEPROC glad_glEnable; | ||
1644 | #define glEnable glad_glEnable | ||
1645 | typedef void (APIENTRYP PFNGLFINISHPROC)(void); | ||
1646 | GLAPI PFNGLFINISHPROC glad_glFinish; | ||
1647 | #define glFinish glad_glFinish | ||
1648 | typedef void (APIENTRYP PFNGLFLUSHPROC)(void); | ||
1649 | GLAPI PFNGLFLUSHPROC glad_glFlush; | ||
1650 | #define glFlush glad_glFlush | ||
1651 | typedef void (APIENTRYP PFNGLBLENDFUNCPROC)(GLenum sfactor, GLenum dfactor); | ||
1652 | GLAPI PFNGLBLENDFUNCPROC glad_glBlendFunc; | ||
1653 | #define glBlendFunc glad_glBlendFunc | ||
1654 | typedef void (APIENTRYP PFNGLLOGICOPPROC)(GLenum opcode); | ||
1655 | GLAPI PFNGLLOGICOPPROC glad_glLogicOp; | ||
1656 | #define glLogicOp glad_glLogicOp | ||
1657 | typedef void (APIENTRYP PFNGLSTENCILFUNCPROC)(GLenum func, GLint ref, GLuint mask); | ||
1658 | GLAPI PFNGLSTENCILFUNCPROC glad_glStencilFunc; | ||
1659 | #define glStencilFunc glad_glStencilFunc | ||
1660 | typedef void (APIENTRYP PFNGLSTENCILOPPROC)(GLenum fail, GLenum zfail, GLenum zpass); | ||
1661 | GLAPI PFNGLSTENCILOPPROC glad_glStencilOp; | ||
1662 | #define glStencilOp glad_glStencilOp | ||
1663 | typedef void (APIENTRYP PFNGLDEPTHFUNCPROC)(GLenum func); | ||
1664 | GLAPI PFNGLDEPTHFUNCPROC glad_glDepthFunc; | ||
1665 | #define glDepthFunc glad_glDepthFunc | ||
1666 | typedef void (APIENTRYP PFNGLPIXELSTOREFPROC)(GLenum pname, GLfloat param); | ||
1667 | GLAPI PFNGLPIXELSTOREFPROC glad_glPixelStoref; | ||
1668 | #define glPixelStoref glad_glPixelStoref | ||
1669 | typedef void (APIENTRYP PFNGLPIXELSTOREIPROC)(GLenum pname, GLint param); | ||
1670 | GLAPI PFNGLPIXELSTOREIPROC glad_glPixelStorei; | ||
1671 | #define glPixelStorei glad_glPixelStorei | ||
1672 | typedef void (APIENTRYP PFNGLREADBUFFERPROC)(GLenum src); | ||
1673 | GLAPI PFNGLREADBUFFERPROC glad_glReadBuffer; | ||
1674 | #define glReadBuffer glad_glReadBuffer | ||
1675 | typedef void (APIENTRYP PFNGLREADPIXELSPROC)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); | ||
1676 | GLAPI PFNGLREADPIXELSPROC glad_glReadPixels; | ||
1677 | #define glReadPixels glad_glReadPixels | ||
1678 | typedef void (APIENTRYP PFNGLGETBOOLEANVPROC)(GLenum pname, GLboolean *data); | ||
1679 | GLAPI PFNGLGETBOOLEANVPROC glad_glGetBooleanv; | ||
1680 | #define glGetBooleanv glad_glGetBooleanv | ||
1681 | typedef void (APIENTRYP PFNGLGETDOUBLEVPROC)(GLenum pname, GLdouble *data); | ||
1682 | GLAPI PFNGLGETDOUBLEVPROC glad_glGetDoublev; | ||
1683 | #define glGetDoublev glad_glGetDoublev | ||
1684 | typedef GLenum (APIENTRYP PFNGLGETERRORPROC)(void); | ||
1685 | GLAPI PFNGLGETERRORPROC glad_glGetError; | ||
1686 | #define glGetError glad_glGetError | ||
1687 | typedef void (APIENTRYP PFNGLGETFLOATVPROC)(GLenum pname, GLfloat *data); | ||
1688 | GLAPI PFNGLGETFLOATVPROC glad_glGetFloatv; | ||
1689 | #define glGetFloatv glad_glGetFloatv | ||
1690 | typedef void (APIENTRYP PFNGLGETINTEGERVPROC)(GLenum pname, GLint *data); | ||
1691 | GLAPI PFNGLGETINTEGERVPROC glad_glGetIntegerv; | ||
1692 | #define glGetIntegerv glad_glGetIntegerv | ||
1693 | typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC)(GLenum name); | ||
1694 | GLAPI PFNGLGETSTRINGPROC glad_glGetString; | ||
1695 | #define glGetString glad_glGetString | ||
1696 | typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC)(GLenum target, GLint level, GLenum format, GLenum type, void *pixels); | ||
1697 | GLAPI PFNGLGETTEXIMAGEPROC glad_glGetTexImage; | ||
1698 | #define glGetTexImage glad_glGetTexImage | ||
1699 | typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC)(GLenum target, GLenum pname, GLfloat *params); | ||
1700 | GLAPI PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv; | ||
1701 | #define glGetTexParameterfv glad_glGetTexParameterfv | ||
1702 | typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); | ||
1703 | GLAPI PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv; | ||
1704 | #define glGetTexParameteriv glad_glGetTexParameteriv | ||
1705 | typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC)(GLenum target, GLint level, GLenum pname, GLfloat *params); | ||
1706 | GLAPI PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv; | ||
1707 | #define glGetTexLevelParameterfv glad_glGetTexLevelParameterfv | ||
1708 | typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC)(GLenum target, GLint level, GLenum pname, GLint *params); | ||
1709 | GLAPI PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv; | ||
1710 | #define glGetTexLevelParameteriv glad_glGetTexLevelParameteriv | ||
1711 | typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC)(GLenum cap); | ||
1712 | GLAPI PFNGLISENABLEDPROC glad_glIsEnabled; | ||
1713 | #define glIsEnabled glad_glIsEnabled | ||
1714 | typedef void (APIENTRYP PFNGLDEPTHRANGEPROC)(GLdouble n, GLdouble f); | ||
1715 | GLAPI PFNGLDEPTHRANGEPROC glad_glDepthRange; | ||
1716 | #define glDepthRange glad_glDepthRange | ||
1717 | typedef void (APIENTRYP PFNGLVIEWPORTPROC)(GLint x, GLint y, GLsizei width, GLsizei height); | ||
1718 | GLAPI PFNGLVIEWPORTPROC glad_glViewport; | ||
1719 | #define glViewport glad_glViewport | ||
1720 | #endif | ||
1721 | #ifndef GL_VERSION_1_1 | ||
1722 | #define GL_VERSION_1_1 1 | ||
1723 | GLAPI int GLAD_GL_VERSION_1_1; | ||
1724 | typedef void (APIENTRYP PFNGLDRAWARRAYSPROC)(GLenum mode, GLint first, GLsizei count); | ||
1725 | GLAPI PFNGLDRAWARRAYSPROC glad_glDrawArrays; | ||
1726 | #define glDrawArrays glad_glDrawArrays | ||
1727 | typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices); | ||
1728 | GLAPI PFNGLDRAWELEMENTSPROC glad_glDrawElements; | ||
1729 | #define glDrawElements glad_glDrawElements | ||
1730 | typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC)(GLfloat factor, GLfloat units); | ||
1731 | GLAPI PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset; | ||
1732 | #define glPolygonOffset glad_glPolygonOffset | ||
1733 | typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); | ||
1734 | GLAPI PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D; | ||
1735 | #define glCopyTexImage1D glad_glCopyTexImage1D | ||
1736 | typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); | ||
1737 | GLAPI PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D; | ||
1738 | #define glCopyTexImage2D glad_glCopyTexImage2D | ||
1739 | typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); | ||
1740 | GLAPI PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D; | ||
1741 | #define glCopyTexSubImage1D glad_glCopyTexSubImage1D | ||
1742 | typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); | ||
1743 | GLAPI PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D; | ||
1744 | #define glCopyTexSubImage2D glad_glCopyTexSubImage2D | ||
1745 | typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); | ||
1746 | GLAPI PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D; | ||
1747 | #define glTexSubImage1D glad_glTexSubImage1D | ||
1748 | typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); | ||
1749 | GLAPI PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D; | ||
1750 | #define glTexSubImage2D glad_glTexSubImage2D | ||
1751 | typedef void (APIENTRYP PFNGLBINDTEXTUREPROC)(GLenum target, GLuint texture); | ||
1752 | GLAPI PFNGLBINDTEXTUREPROC glad_glBindTexture; | ||
1753 | #define glBindTexture glad_glBindTexture | ||
1754 | typedef void (APIENTRYP PFNGLDELETETEXTURESPROC)(GLsizei n, const GLuint *textures); | ||
1755 | GLAPI PFNGLDELETETEXTURESPROC glad_glDeleteTextures; | ||
1756 | #define glDeleteTextures glad_glDeleteTextures | ||
1757 | typedef void (APIENTRYP PFNGLGENTEXTURESPROC)(GLsizei n, GLuint *textures); | ||
1758 | GLAPI PFNGLGENTEXTURESPROC glad_glGenTextures; | ||
1759 | #define glGenTextures glad_glGenTextures | ||
1760 | typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC)(GLuint texture); | ||
1761 | GLAPI PFNGLISTEXTUREPROC glad_glIsTexture; | ||
1762 | #define glIsTexture glad_glIsTexture | ||
1763 | #endif | ||
1764 | #ifndef GL_VERSION_1_2 | ||
1765 | #define GL_VERSION_1_2 1 | ||
1766 | GLAPI int GLAD_GL_VERSION_1_2; | ||
1767 | typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); | ||
1768 | GLAPI PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements; | ||
1769 | #define glDrawRangeElements glad_glDrawRangeElements | ||
1770 | typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); | ||
1771 | GLAPI PFNGLTEXIMAGE3DPROC glad_glTexImage3D; | ||
1772 | #define glTexImage3D glad_glTexImage3D | ||
1773 | typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); | ||
1774 | GLAPI PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D; | ||
1775 | #define glTexSubImage3D glad_glTexSubImage3D | ||
1776 | typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); | ||
1777 | GLAPI PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D; | ||
1778 | #define glCopyTexSubImage3D glad_glCopyTexSubImage3D | ||
1779 | #endif | ||
1780 | #ifndef GL_VERSION_1_3 | ||
1781 | #define GL_VERSION_1_3 1 | ||
1782 | GLAPI int GLAD_GL_VERSION_1_3; | ||
1783 | typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC)(GLenum texture); | ||
1784 | GLAPI PFNGLACTIVETEXTUREPROC glad_glActiveTexture; | ||
1785 | #define glActiveTexture glad_glActiveTexture | ||
1786 | typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC)(GLfloat value, GLboolean invert); | ||
1787 | GLAPI PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage; | ||
1788 | #define glSampleCoverage glad_glSampleCoverage | ||
1789 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); | ||
1790 | GLAPI PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D; | ||
1791 | #define glCompressedTexImage3D glad_glCompressedTexImage3D | ||
1792 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); | ||
1793 | GLAPI PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D; | ||
1794 | #define glCompressedTexImage2D glad_glCompressedTexImage2D | ||
1795 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); | ||
1796 | GLAPI PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D; | ||
1797 | #define glCompressedTexImage1D glad_glCompressedTexImage1D | ||
1798 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); | ||
1799 | GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D; | ||
1800 | #define glCompressedTexSubImage3D glad_glCompressedTexSubImage3D | ||
1801 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); | ||
1802 | GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D; | ||
1803 | #define glCompressedTexSubImage2D glad_glCompressedTexSubImage2D | ||
1804 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); | ||
1805 | GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D; | ||
1806 | #define glCompressedTexSubImage1D glad_glCompressedTexSubImage1D | ||
1807 | typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC)(GLenum target, GLint level, void *img); | ||
1808 | GLAPI PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage; | ||
1809 | #define glGetCompressedTexImage glad_glGetCompressedTexImage | ||
1810 | #endif | ||
1811 | #ifndef GL_VERSION_1_4 | ||
1812 | #define GL_VERSION_1_4 1 | ||
1813 | GLAPI int GLAD_GL_VERSION_1_4; | ||
1814 | typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); | ||
1815 | GLAPI PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate; | ||
1816 | #define glBlendFuncSeparate glad_glBlendFuncSeparate | ||
1817 | typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); | ||
1818 | GLAPI PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays; | ||
1819 | #define glMultiDrawArrays glad_glMultiDrawArrays | ||
1820 | typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); | ||
1821 | GLAPI PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements; | ||
1822 | #define glMultiDrawElements glad_glMultiDrawElements | ||
1823 | typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC)(GLenum pname, GLfloat param); | ||
1824 | GLAPI PFNGLPOINTPARAMETERFPROC glad_glPointParameterf; | ||
1825 | #define glPointParameterf glad_glPointParameterf | ||
1826 | typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC)(GLenum pname, const GLfloat *params); | ||
1827 | GLAPI PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv; | ||
1828 | #define glPointParameterfv glad_glPointParameterfv | ||
1829 | typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC)(GLenum pname, GLint param); | ||
1830 | GLAPI PFNGLPOINTPARAMETERIPROC glad_glPointParameteri; | ||
1831 | #define glPointParameteri glad_glPointParameteri | ||
1832 | typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC)(GLenum pname, const GLint *params); | ||
1833 | GLAPI PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv; | ||
1834 | #define glPointParameteriv glad_glPointParameteriv | ||
1835 | typedef void (APIENTRYP PFNGLBLENDCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); | ||
1836 | GLAPI PFNGLBLENDCOLORPROC glad_glBlendColor; | ||
1837 | #define glBlendColor glad_glBlendColor | ||
1838 | typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC)(GLenum mode); | ||
1839 | GLAPI PFNGLBLENDEQUATIONPROC glad_glBlendEquation; | ||
1840 | #define glBlendEquation glad_glBlendEquation | ||
1841 | #endif | ||
1842 | #ifndef GL_VERSION_1_5 | ||
1843 | #define GL_VERSION_1_5 1 | ||
1844 | GLAPI int GLAD_GL_VERSION_1_5; | ||
1845 | typedef void (APIENTRYP PFNGLGENQUERIESPROC)(GLsizei n, GLuint *ids); | ||
1846 | GLAPI PFNGLGENQUERIESPROC glad_glGenQueries; | ||
1847 | #define glGenQueries glad_glGenQueries | ||
1848 | typedef void (APIENTRYP PFNGLDELETEQUERIESPROC)(GLsizei n, const GLuint *ids); | ||
1849 | GLAPI PFNGLDELETEQUERIESPROC glad_glDeleteQueries; | ||
1850 | #define glDeleteQueries glad_glDeleteQueries | ||
1851 | typedef GLboolean (APIENTRYP PFNGLISQUERYPROC)(GLuint id); | ||
1852 | GLAPI PFNGLISQUERYPROC glad_glIsQuery; | ||
1853 | #define glIsQuery glad_glIsQuery | ||
1854 | typedef void (APIENTRYP PFNGLBEGINQUERYPROC)(GLenum target, GLuint id); | ||
1855 | GLAPI PFNGLBEGINQUERYPROC glad_glBeginQuery; | ||
1856 | #define glBeginQuery glad_glBeginQuery | ||
1857 | typedef void (APIENTRYP PFNGLENDQUERYPROC)(GLenum target); | ||
1858 | GLAPI PFNGLENDQUERYPROC glad_glEndQuery; | ||
1859 | #define glEndQuery glad_glEndQuery | ||
1860 | typedef void (APIENTRYP PFNGLGETQUERYIVPROC)(GLenum target, GLenum pname, GLint *params); | ||
1861 | GLAPI PFNGLGETQUERYIVPROC glad_glGetQueryiv; | ||
1862 | #define glGetQueryiv glad_glGetQueryiv | ||
1863 | typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC)(GLuint id, GLenum pname, GLint *params); | ||
1864 | GLAPI PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv; | ||
1865 | #define glGetQueryObjectiv glad_glGetQueryObjectiv | ||
1866 | typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC)(GLuint id, GLenum pname, GLuint *params); | ||
1867 | GLAPI PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv; | ||
1868 | #define glGetQueryObjectuiv glad_glGetQueryObjectuiv | ||
1869 | typedef void (APIENTRYP PFNGLBINDBUFFERPROC)(GLenum target, GLuint buffer); | ||
1870 | GLAPI PFNGLBINDBUFFERPROC glad_glBindBuffer; | ||
1871 | #define glBindBuffer glad_glBindBuffer | ||
1872 | typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC)(GLsizei n, const GLuint *buffers); | ||
1873 | GLAPI PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers; | ||
1874 | #define glDeleteBuffers glad_glDeleteBuffers | ||
1875 | typedef void (APIENTRYP PFNGLGENBUFFERSPROC)(GLsizei n, GLuint *buffers); | ||
1876 | GLAPI PFNGLGENBUFFERSPROC glad_glGenBuffers; | ||
1877 | #define glGenBuffers glad_glGenBuffers | ||
1878 | typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC)(GLuint buffer); | ||
1879 | GLAPI PFNGLISBUFFERPROC glad_glIsBuffer; | ||
1880 | #define glIsBuffer glad_glIsBuffer | ||
1881 | typedef void (APIENTRYP PFNGLBUFFERDATAPROC)(GLenum target, GLsizeiptr size, const void *data, GLenum usage); | ||
1882 | GLAPI PFNGLBUFFERDATAPROC glad_glBufferData; | ||
1883 | #define glBufferData glad_glBufferData | ||
1884 | typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, const void *data); | ||
1885 | GLAPI PFNGLBUFFERSUBDATAPROC glad_glBufferSubData; | ||
1886 | #define glBufferSubData glad_glBufferSubData | ||
1887 | typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, void *data); | ||
1888 | GLAPI PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData; | ||
1889 | #define glGetBufferSubData glad_glGetBufferSubData | ||
1890 | typedef void * (APIENTRYP PFNGLMAPBUFFERPROC)(GLenum target, GLenum access); | ||
1891 | GLAPI PFNGLMAPBUFFERPROC glad_glMapBuffer; | ||
1892 | #define glMapBuffer glad_glMapBuffer | ||
1893 | typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC)(GLenum target); | ||
1894 | GLAPI PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer; | ||
1895 | #define glUnmapBuffer glad_glUnmapBuffer | ||
1896 | typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); | ||
1897 | GLAPI PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv; | ||
1898 | #define glGetBufferParameteriv glad_glGetBufferParameteriv | ||
1899 | typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC)(GLenum target, GLenum pname, void **params); | ||
1900 | GLAPI PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv; | ||
1901 | #define glGetBufferPointerv glad_glGetBufferPointerv | ||
1902 | #endif | ||
1903 | #ifndef GL_VERSION_2_0 | ||
1904 | #define GL_VERSION_2_0 1 | ||
1905 | GLAPI int GLAD_GL_VERSION_2_0; | ||
1906 | typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC)(GLenum modeRGB, GLenum modeAlpha); | ||
1907 | GLAPI PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate; | ||
1908 | #define glBlendEquationSeparate glad_glBlendEquationSeparate | ||
1909 | typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC)(GLsizei n, const GLenum *bufs); | ||
1910 | GLAPI PFNGLDRAWBUFFERSPROC glad_glDrawBuffers; | ||
1911 | #define glDrawBuffers glad_glDrawBuffers | ||
1912 | typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); | ||
1913 | GLAPI PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate; | ||
1914 | #define glStencilOpSeparate glad_glStencilOpSeparate | ||
1915 | typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC)(GLenum face, GLenum func, GLint ref, GLuint mask); | ||
1916 | GLAPI PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate; | ||
1917 | #define glStencilFuncSeparate glad_glStencilFuncSeparate | ||
1918 | typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC)(GLenum face, GLuint mask); | ||
1919 | GLAPI PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate; | ||
1920 | #define glStencilMaskSeparate glad_glStencilMaskSeparate | ||
1921 | typedef void (APIENTRYP PFNGLATTACHSHADERPROC)(GLuint program, GLuint shader); | ||
1922 | GLAPI PFNGLATTACHSHADERPROC glad_glAttachShader; | ||
1923 | #define glAttachShader glad_glAttachShader | ||
1924 | typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC)(GLuint program, GLuint index, const GLchar *name); | ||
1925 | GLAPI PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation; | ||
1926 | #define glBindAttribLocation glad_glBindAttribLocation | ||
1927 | typedef void (APIENTRYP PFNGLCOMPILESHADERPROC)(GLuint shader); | ||
1928 | GLAPI PFNGLCOMPILESHADERPROC glad_glCompileShader; | ||
1929 | #define glCompileShader glad_glCompileShader | ||
1930 | typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC)(void); | ||
1931 | GLAPI PFNGLCREATEPROGRAMPROC glad_glCreateProgram; | ||
1932 | #define glCreateProgram glad_glCreateProgram | ||
1933 | typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC)(GLenum type); | ||
1934 | GLAPI PFNGLCREATESHADERPROC glad_glCreateShader; | ||
1935 | #define glCreateShader glad_glCreateShader | ||
1936 | typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC)(GLuint program); | ||
1937 | GLAPI PFNGLDELETEPROGRAMPROC glad_glDeleteProgram; | ||
1938 | #define glDeleteProgram glad_glDeleteProgram | ||
1939 | typedef void (APIENTRYP PFNGLDELETESHADERPROC)(GLuint shader); | ||
1940 | GLAPI PFNGLDELETESHADERPROC glad_glDeleteShader; | ||
1941 | #define glDeleteShader glad_glDeleteShader | ||
1942 | typedef void (APIENTRYP PFNGLDETACHSHADERPROC)(GLuint program, GLuint shader); | ||
1943 | GLAPI PFNGLDETACHSHADERPROC glad_glDetachShader; | ||
1944 | #define glDetachShader glad_glDetachShader | ||
1945 | typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC)(GLuint index); | ||
1946 | GLAPI PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray; | ||
1947 | #define glDisableVertexAttribArray glad_glDisableVertexAttribArray | ||
1948 | typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC)(GLuint index); | ||
1949 | GLAPI PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray; | ||
1950 | #define glEnableVertexAttribArray glad_glEnableVertexAttribArray | ||
1951 | typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); | ||
1952 | GLAPI PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib; | ||
1953 | #define glGetActiveAttrib glad_glGetActiveAttrib | ||
1954 | typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); | ||
1955 | GLAPI PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform; | ||
1956 | #define glGetActiveUniform glad_glGetActiveUniform | ||
1957 | typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC)(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); | ||
1958 | GLAPI PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders; | ||
1959 | #define glGetAttachedShaders glad_glGetAttachedShaders | ||
1960 | typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC)(GLuint program, const GLchar *name); | ||
1961 | GLAPI PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation; | ||
1962 | #define glGetAttribLocation glad_glGetAttribLocation | ||
1963 | typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC)(GLuint program, GLenum pname, GLint *params); | ||
1964 | GLAPI PFNGLGETPROGRAMIVPROC glad_glGetProgramiv; | ||
1965 | #define glGetProgramiv glad_glGetProgramiv | ||
1966 | typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC)(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); | ||
1967 | GLAPI PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog; | ||
1968 | #define glGetProgramInfoLog glad_glGetProgramInfoLog | ||
1969 | typedef void (APIENTRYP PFNGLGETSHADERIVPROC)(GLuint shader, GLenum pname, GLint *params); | ||
1970 | GLAPI PFNGLGETSHADERIVPROC glad_glGetShaderiv; | ||
1971 | #define glGetShaderiv glad_glGetShaderiv | ||
1972 | typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); | ||
1973 | GLAPI PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog; | ||
1974 | #define glGetShaderInfoLog glad_glGetShaderInfoLog | ||
1975 | typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); | ||
1976 | GLAPI PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource; | ||
1977 | #define glGetShaderSource glad_glGetShaderSource | ||
1978 | typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC)(GLuint program, const GLchar *name); | ||
1979 | GLAPI PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation; | ||
1980 | #define glGetUniformLocation glad_glGetUniformLocation | ||
1981 | typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC)(GLuint program, GLint location, GLfloat *params); | ||
1982 | GLAPI PFNGLGETUNIFORMFVPROC glad_glGetUniformfv; | ||
1983 | #define glGetUniformfv glad_glGetUniformfv | ||
1984 | typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC)(GLuint program, GLint location, GLint *params); | ||
1985 | GLAPI PFNGLGETUNIFORMIVPROC glad_glGetUniformiv; | ||
1986 | #define glGetUniformiv glad_glGetUniformiv | ||
1987 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC)(GLuint index, GLenum pname, GLdouble *params); | ||
1988 | GLAPI PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv; | ||
1989 | #define glGetVertexAttribdv glad_glGetVertexAttribdv | ||
1990 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC)(GLuint index, GLenum pname, GLfloat *params); | ||
1991 | GLAPI PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv; | ||
1992 | #define glGetVertexAttribfv glad_glGetVertexAttribfv | ||
1993 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC)(GLuint index, GLenum pname, GLint *params); | ||
1994 | GLAPI PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv; | ||
1995 | #define glGetVertexAttribiv glad_glGetVertexAttribiv | ||
1996 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC)(GLuint index, GLenum pname, void **pointer); | ||
1997 | GLAPI PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv; | ||
1998 | #define glGetVertexAttribPointerv glad_glGetVertexAttribPointerv | ||
1999 | typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC)(GLuint program); | ||
2000 | GLAPI PFNGLISPROGRAMPROC glad_glIsProgram; | ||
2001 | #define glIsProgram glad_glIsProgram | ||
2002 | typedef GLboolean (APIENTRYP PFNGLISSHADERPROC)(GLuint shader); | ||
2003 | GLAPI PFNGLISSHADERPROC glad_glIsShader; | ||
2004 | #define glIsShader glad_glIsShader | ||
2005 | typedef void (APIENTRYP PFNGLLINKPROGRAMPROC)(GLuint program); | ||
2006 | GLAPI PFNGLLINKPROGRAMPROC glad_glLinkProgram; | ||
2007 | #define glLinkProgram glad_glLinkProgram | ||
2008 | typedef void (APIENTRYP PFNGLSHADERSOURCEPROC)(GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); | ||
2009 | GLAPI PFNGLSHADERSOURCEPROC glad_glShaderSource; | ||
2010 | #define glShaderSource glad_glShaderSource | ||
2011 | typedef void (APIENTRYP PFNGLUSEPROGRAMPROC)(GLuint program); | ||
2012 | GLAPI PFNGLUSEPROGRAMPROC glad_glUseProgram; | ||
2013 | #define glUseProgram glad_glUseProgram | ||
2014 | typedef void (APIENTRYP PFNGLUNIFORM1FPROC)(GLint location, GLfloat v0); | ||
2015 | GLAPI PFNGLUNIFORM1FPROC glad_glUniform1f; | ||
2016 | #define glUniform1f glad_glUniform1f | ||
2017 | typedef void (APIENTRYP PFNGLUNIFORM2FPROC)(GLint location, GLfloat v0, GLfloat v1); | ||
2018 | GLAPI PFNGLUNIFORM2FPROC glad_glUniform2f; | ||
2019 | #define glUniform2f glad_glUniform2f | ||
2020 | typedef void (APIENTRYP PFNGLUNIFORM3FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2); | ||
2021 | GLAPI PFNGLUNIFORM3FPROC glad_glUniform3f; | ||
2022 | #define glUniform3f glad_glUniform3f | ||
2023 | typedef void (APIENTRYP PFNGLUNIFORM4FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); | ||
2024 | GLAPI PFNGLUNIFORM4FPROC glad_glUniform4f; | ||
2025 | #define glUniform4f glad_glUniform4f | ||
2026 | typedef void (APIENTRYP PFNGLUNIFORM1IPROC)(GLint location, GLint v0); | ||
2027 | GLAPI PFNGLUNIFORM1IPROC glad_glUniform1i; | ||
2028 | #define glUniform1i glad_glUniform1i | ||
2029 | typedef void (APIENTRYP PFNGLUNIFORM2IPROC)(GLint location, GLint v0, GLint v1); | ||
2030 | GLAPI PFNGLUNIFORM2IPROC glad_glUniform2i; | ||
2031 | #define glUniform2i glad_glUniform2i | ||
2032 | typedef void (APIENTRYP PFNGLUNIFORM3IPROC)(GLint location, GLint v0, GLint v1, GLint v2); | ||
2033 | GLAPI PFNGLUNIFORM3IPROC glad_glUniform3i; | ||
2034 | #define glUniform3i glad_glUniform3i | ||
2035 | typedef void (APIENTRYP PFNGLUNIFORM4IPROC)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3); | ||
2036 | GLAPI PFNGLUNIFORM4IPROC glad_glUniform4i; | ||
2037 | #define glUniform4i glad_glUniform4i | ||
2038 | typedef void (APIENTRYP PFNGLUNIFORM1FVPROC)(GLint location, GLsizei count, const GLfloat *value); | ||
2039 | GLAPI PFNGLUNIFORM1FVPROC glad_glUniform1fv; | ||
2040 | #define glUniform1fv glad_glUniform1fv | ||
2041 | typedef void (APIENTRYP PFNGLUNIFORM2FVPROC)(GLint location, GLsizei count, const GLfloat *value); | ||
2042 | GLAPI PFNGLUNIFORM2FVPROC glad_glUniform2fv; | ||
2043 | #define glUniform2fv glad_glUniform2fv | ||
2044 | typedef void (APIENTRYP PFNGLUNIFORM3FVPROC)(GLint location, GLsizei count, const GLfloat *value); | ||
2045 | GLAPI PFNGLUNIFORM3FVPROC glad_glUniform3fv; | ||
2046 | #define glUniform3fv glad_glUniform3fv | ||
2047 | typedef void (APIENTRYP PFNGLUNIFORM4FVPROC)(GLint location, GLsizei count, const GLfloat *value); | ||
2048 | GLAPI PFNGLUNIFORM4FVPROC glad_glUniform4fv; | ||
2049 | #define glUniform4fv glad_glUniform4fv | ||
2050 | typedef void (APIENTRYP PFNGLUNIFORM1IVPROC)(GLint location, GLsizei count, const GLint *value); | ||
2051 | GLAPI PFNGLUNIFORM1IVPROC glad_glUniform1iv; | ||
2052 | #define glUniform1iv glad_glUniform1iv | ||
2053 | typedef void (APIENTRYP PFNGLUNIFORM2IVPROC)(GLint location, GLsizei count, const GLint *value); | ||
2054 | GLAPI PFNGLUNIFORM2IVPROC glad_glUniform2iv; | ||
2055 | #define glUniform2iv glad_glUniform2iv | ||
2056 | typedef void (APIENTRYP PFNGLUNIFORM3IVPROC)(GLint location, GLsizei count, const GLint *value); | ||
2057 | GLAPI PFNGLUNIFORM3IVPROC glad_glUniform3iv; | ||
2058 | #define glUniform3iv glad_glUniform3iv | ||
2059 | typedef void (APIENTRYP PFNGLUNIFORM4IVPROC)(GLint location, GLsizei count, const GLint *value); | ||
2060 | GLAPI PFNGLUNIFORM4IVPROC glad_glUniform4iv; | ||
2061 | #define glUniform4iv glad_glUniform4iv | ||
2062 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2063 | GLAPI PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv; | ||
2064 | #define glUniformMatrix2fv glad_glUniformMatrix2fv | ||
2065 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2066 | GLAPI PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv; | ||
2067 | #define glUniformMatrix3fv glad_glUniformMatrix3fv | ||
2068 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2069 | GLAPI PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv; | ||
2070 | #define glUniformMatrix4fv glad_glUniformMatrix4fv | ||
2071 | typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC)(GLuint program); | ||
2072 | GLAPI PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram; | ||
2073 | #define glValidateProgram glad_glValidateProgram | ||
2074 | typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC)(GLuint index, GLdouble x); | ||
2075 | GLAPI PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d; | ||
2076 | #define glVertexAttrib1d glad_glVertexAttrib1d | ||
2077 | typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC)(GLuint index, const GLdouble *v); | ||
2078 | GLAPI PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv; | ||
2079 | #define glVertexAttrib1dv glad_glVertexAttrib1dv | ||
2080 | typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC)(GLuint index, GLfloat x); | ||
2081 | GLAPI PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f; | ||
2082 | #define glVertexAttrib1f glad_glVertexAttrib1f | ||
2083 | typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC)(GLuint index, const GLfloat *v); | ||
2084 | GLAPI PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv; | ||
2085 | #define glVertexAttrib1fv glad_glVertexAttrib1fv | ||
2086 | typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC)(GLuint index, GLshort x); | ||
2087 | GLAPI PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s; | ||
2088 | #define glVertexAttrib1s glad_glVertexAttrib1s | ||
2089 | typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC)(GLuint index, const GLshort *v); | ||
2090 | GLAPI PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv; | ||
2091 | #define glVertexAttrib1sv glad_glVertexAttrib1sv | ||
2092 | typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC)(GLuint index, GLdouble x, GLdouble y); | ||
2093 | GLAPI PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d; | ||
2094 | #define glVertexAttrib2d glad_glVertexAttrib2d | ||
2095 | typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC)(GLuint index, const GLdouble *v); | ||
2096 | GLAPI PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv; | ||
2097 | #define glVertexAttrib2dv glad_glVertexAttrib2dv | ||
2098 | typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC)(GLuint index, GLfloat x, GLfloat y); | ||
2099 | GLAPI PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f; | ||
2100 | #define glVertexAttrib2f glad_glVertexAttrib2f | ||
2101 | typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC)(GLuint index, const GLfloat *v); | ||
2102 | GLAPI PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv; | ||
2103 | #define glVertexAttrib2fv glad_glVertexAttrib2fv | ||
2104 | typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC)(GLuint index, GLshort x, GLshort y); | ||
2105 | GLAPI PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s; | ||
2106 | #define glVertexAttrib2s glad_glVertexAttrib2s | ||
2107 | typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC)(GLuint index, const GLshort *v); | ||
2108 | GLAPI PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv; | ||
2109 | #define glVertexAttrib2sv glad_glVertexAttrib2sv | ||
2110 | typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z); | ||
2111 | GLAPI PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d; | ||
2112 | #define glVertexAttrib3d glad_glVertexAttrib3d | ||
2113 | typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC)(GLuint index, const GLdouble *v); | ||
2114 | GLAPI PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv; | ||
2115 | #define glVertexAttrib3dv glad_glVertexAttrib3dv | ||
2116 | typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z); | ||
2117 | GLAPI PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f; | ||
2118 | #define glVertexAttrib3f glad_glVertexAttrib3f | ||
2119 | typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC)(GLuint index, const GLfloat *v); | ||
2120 | GLAPI PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv; | ||
2121 | #define glVertexAttrib3fv glad_glVertexAttrib3fv | ||
2122 | typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC)(GLuint index, GLshort x, GLshort y, GLshort z); | ||
2123 | GLAPI PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s; | ||
2124 | #define glVertexAttrib3s glad_glVertexAttrib3s | ||
2125 | typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC)(GLuint index, const GLshort *v); | ||
2126 | GLAPI PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv; | ||
2127 | #define glVertexAttrib3sv glad_glVertexAttrib3sv | ||
2128 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC)(GLuint index, const GLbyte *v); | ||
2129 | GLAPI PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv; | ||
2130 | #define glVertexAttrib4Nbv glad_glVertexAttrib4Nbv | ||
2131 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC)(GLuint index, const GLint *v); | ||
2132 | GLAPI PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv; | ||
2133 | #define glVertexAttrib4Niv glad_glVertexAttrib4Niv | ||
2134 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC)(GLuint index, const GLshort *v); | ||
2135 | GLAPI PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv; | ||
2136 | #define glVertexAttrib4Nsv glad_glVertexAttrib4Nsv | ||
2137 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); | ||
2138 | GLAPI PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub; | ||
2139 | #define glVertexAttrib4Nub glad_glVertexAttrib4Nub | ||
2140 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC)(GLuint index, const GLubyte *v); | ||
2141 | GLAPI PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv; | ||
2142 | #define glVertexAttrib4Nubv glad_glVertexAttrib4Nubv | ||
2143 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC)(GLuint index, const GLuint *v); | ||
2144 | GLAPI PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv; | ||
2145 | #define glVertexAttrib4Nuiv glad_glVertexAttrib4Nuiv | ||
2146 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC)(GLuint index, const GLushort *v); | ||
2147 | GLAPI PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv; | ||
2148 | #define glVertexAttrib4Nusv glad_glVertexAttrib4Nusv | ||
2149 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC)(GLuint index, const GLbyte *v); | ||
2150 | GLAPI PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv; | ||
2151 | #define glVertexAttrib4bv glad_glVertexAttrib4bv | ||
2152 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); | ||
2153 | GLAPI PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d; | ||
2154 | #define glVertexAttrib4d glad_glVertexAttrib4d | ||
2155 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC)(GLuint index, const GLdouble *v); | ||
2156 | GLAPI PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv; | ||
2157 | #define glVertexAttrib4dv glad_glVertexAttrib4dv | ||
2158 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); | ||
2159 | GLAPI PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f; | ||
2160 | #define glVertexAttrib4f glad_glVertexAttrib4f | ||
2161 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC)(GLuint index, const GLfloat *v); | ||
2162 | GLAPI PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv; | ||
2163 | #define glVertexAttrib4fv glad_glVertexAttrib4fv | ||
2164 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC)(GLuint index, const GLint *v); | ||
2165 | GLAPI PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv; | ||
2166 | #define glVertexAttrib4iv glad_glVertexAttrib4iv | ||
2167 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); | ||
2168 | GLAPI PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s; | ||
2169 | #define glVertexAttrib4s glad_glVertexAttrib4s | ||
2170 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC)(GLuint index, const GLshort *v); | ||
2171 | GLAPI PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv; | ||
2172 | #define glVertexAttrib4sv glad_glVertexAttrib4sv | ||
2173 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC)(GLuint index, const GLubyte *v); | ||
2174 | GLAPI PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv; | ||
2175 | #define glVertexAttrib4ubv glad_glVertexAttrib4ubv | ||
2176 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC)(GLuint index, const GLuint *v); | ||
2177 | GLAPI PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv; | ||
2178 | #define glVertexAttrib4uiv glad_glVertexAttrib4uiv | ||
2179 | typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC)(GLuint index, const GLushort *v); | ||
2180 | GLAPI PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv; | ||
2181 | #define glVertexAttrib4usv glad_glVertexAttrib4usv | ||
2182 | typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); | ||
2183 | GLAPI PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer; | ||
2184 | #define glVertexAttribPointer glad_glVertexAttribPointer | ||
2185 | #endif | ||
2186 | #ifndef GL_VERSION_2_1 | ||
2187 | #define GL_VERSION_2_1 1 | ||
2188 | GLAPI int GLAD_GL_VERSION_2_1; | ||
2189 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2190 | GLAPI PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv; | ||
2191 | #define glUniformMatrix2x3fv glad_glUniformMatrix2x3fv | ||
2192 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2193 | GLAPI PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv; | ||
2194 | #define glUniformMatrix3x2fv glad_glUniformMatrix3x2fv | ||
2195 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2196 | GLAPI PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv; | ||
2197 | #define glUniformMatrix2x4fv glad_glUniformMatrix2x4fv | ||
2198 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2199 | GLAPI PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv; | ||
2200 | #define glUniformMatrix4x2fv glad_glUniformMatrix4x2fv | ||
2201 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2202 | GLAPI PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv; | ||
2203 | #define glUniformMatrix3x4fv glad_glUniformMatrix3x4fv | ||
2204 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
2205 | GLAPI PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv; | ||
2206 | #define glUniformMatrix4x3fv glad_glUniformMatrix4x3fv | ||
2207 | #endif | ||
2208 | #ifndef GL_VERSION_3_0 | ||
2209 | #define GL_VERSION_3_0 1 | ||
2210 | GLAPI int GLAD_GL_VERSION_3_0; | ||
2211 | typedef void (APIENTRYP PFNGLCOLORMASKIPROC)(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); | ||
2212 | GLAPI PFNGLCOLORMASKIPROC glad_glColorMaski; | ||
2213 | #define glColorMaski glad_glColorMaski | ||
2214 | typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC)(GLenum target, GLuint index, GLboolean *data); | ||
2215 | GLAPI PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v; | ||
2216 | #define glGetBooleani_v glad_glGetBooleani_v | ||
2217 | typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC)(GLenum target, GLuint index, GLint *data); | ||
2218 | GLAPI PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v; | ||
2219 | #define glGetIntegeri_v glad_glGetIntegeri_v | ||
2220 | typedef void (APIENTRYP PFNGLENABLEIPROC)(GLenum target, GLuint index); | ||
2221 | GLAPI PFNGLENABLEIPROC glad_glEnablei; | ||
2222 | #define glEnablei glad_glEnablei | ||
2223 | typedef void (APIENTRYP PFNGLDISABLEIPROC)(GLenum target, GLuint index); | ||
2224 | GLAPI PFNGLDISABLEIPROC glad_glDisablei; | ||
2225 | #define glDisablei glad_glDisablei | ||
2226 | typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC)(GLenum target, GLuint index); | ||
2227 | GLAPI PFNGLISENABLEDIPROC glad_glIsEnabledi; | ||
2228 | #define glIsEnabledi glad_glIsEnabledi | ||
2229 | typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC)(GLenum primitiveMode); | ||
2230 | GLAPI PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback; | ||
2231 | #define glBeginTransformFeedback glad_glBeginTransformFeedback | ||
2232 | typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC)(void); | ||
2233 | GLAPI PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback; | ||
2234 | #define glEndTransformFeedback glad_glEndTransformFeedback | ||
2235 | typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); | ||
2236 | GLAPI PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange; | ||
2237 | #define glBindBufferRange glad_glBindBufferRange | ||
2238 | typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC)(GLenum target, GLuint index, GLuint buffer); | ||
2239 | GLAPI PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase; | ||
2240 | #define glBindBufferBase glad_glBindBufferBase | ||
2241 | typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC)(GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); | ||
2242 | GLAPI PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings; | ||
2243 | #define glTransformFeedbackVaryings glad_glTransformFeedbackVaryings | ||
2244 | typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); | ||
2245 | GLAPI PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying; | ||
2246 | #define glGetTransformFeedbackVarying glad_glGetTransformFeedbackVarying | ||
2247 | typedef void (APIENTRYP PFNGLCLAMPCOLORPROC)(GLenum target, GLenum clamp); | ||
2248 | GLAPI PFNGLCLAMPCOLORPROC glad_glClampColor; | ||
2249 | #define glClampColor glad_glClampColor | ||
2250 | typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC)(GLuint id, GLenum mode); | ||
2251 | GLAPI PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender; | ||
2252 | #define glBeginConditionalRender glad_glBeginConditionalRender | ||
2253 | typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC)(void); | ||
2254 | GLAPI PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender; | ||
2255 | #define glEndConditionalRender glad_glEndConditionalRender | ||
2256 | typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC)(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); | ||
2257 | GLAPI PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer; | ||
2258 | #define glVertexAttribIPointer glad_glVertexAttribIPointer | ||
2259 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC)(GLuint index, GLenum pname, GLint *params); | ||
2260 | GLAPI PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv; | ||
2261 | #define glGetVertexAttribIiv glad_glGetVertexAttribIiv | ||
2262 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC)(GLuint index, GLenum pname, GLuint *params); | ||
2263 | GLAPI PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv; | ||
2264 | #define glGetVertexAttribIuiv glad_glGetVertexAttribIuiv | ||
2265 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC)(GLuint index, GLint x); | ||
2266 | GLAPI PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i; | ||
2267 | #define glVertexAttribI1i glad_glVertexAttribI1i | ||
2268 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC)(GLuint index, GLint x, GLint y); | ||
2269 | GLAPI PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i; | ||
2270 | #define glVertexAttribI2i glad_glVertexAttribI2i | ||
2271 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC)(GLuint index, GLint x, GLint y, GLint z); | ||
2272 | GLAPI PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i; | ||
2273 | #define glVertexAttribI3i glad_glVertexAttribI3i | ||
2274 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC)(GLuint index, GLint x, GLint y, GLint z, GLint w); | ||
2275 | GLAPI PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i; | ||
2276 | #define glVertexAttribI4i glad_glVertexAttribI4i | ||
2277 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC)(GLuint index, GLuint x); | ||
2278 | GLAPI PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui; | ||
2279 | #define glVertexAttribI1ui glad_glVertexAttribI1ui | ||
2280 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC)(GLuint index, GLuint x, GLuint y); | ||
2281 | GLAPI PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui; | ||
2282 | #define glVertexAttribI2ui glad_glVertexAttribI2ui | ||
2283 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z); | ||
2284 | GLAPI PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui; | ||
2285 | #define glVertexAttribI3ui glad_glVertexAttribI3ui | ||
2286 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); | ||
2287 | GLAPI PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui; | ||
2288 | #define glVertexAttribI4ui glad_glVertexAttribI4ui | ||
2289 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC)(GLuint index, const GLint *v); | ||
2290 | GLAPI PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv; | ||
2291 | #define glVertexAttribI1iv glad_glVertexAttribI1iv | ||
2292 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC)(GLuint index, const GLint *v); | ||
2293 | GLAPI PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv; | ||
2294 | #define glVertexAttribI2iv glad_glVertexAttribI2iv | ||
2295 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC)(GLuint index, const GLint *v); | ||
2296 | GLAPI PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv; | ||
2297 | #define glVertexAttribI3iv glad_glVertexAttribI3iv | ||
2298 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC)(GLuint index, const GLint *v); | ||
2299 | GLAPI PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv; | ||
2300 | #define glVertexAttribI4iv glad_glVertexAttribI4iv | ||
2301 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC)(GLuint index, const GLuint *v); | ||
2302 | GLAPI PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv; | ||
2303 | #define glVertexAttribI1uiv glad_glVertexAttribI1uiv | ||
2304 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC)(GLuint index, const GLuint *v); | ||
2305 | GLAPI PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv; | ||
2306 | #define glVertexAttribI2uiv glad_glVertexAttribI2uiv | ||
2307 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC)(GLuint index, const GLuint *v); | ||
2308 | GLAPI PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv; | ||
2309 | #define glVertexAttribI3uiv glad_glVertexAttribI3uiv | ||
2310 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC)(GLuint index, const GLuint *v); | ||
2311 | GLAPI PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv; | ||
2312 | #define glVertexAttribI4uiv glad_glVertexAttribI4uiv | ||
2313 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC)(GLuint index, const GLbyte *v); | ||
2314 | GLAPI PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv; | ||
2315 | #define glVertexAttribI4bv glad_glVertexAttribI4bv | ||
2316 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC)(GLuint index, const GLshort *v); | ||
2317 | GLAPI PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv; | ||
2318 | #define glVertexAttribI4sv glad_glVertexAttribI4sv | ||
2319 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC)(GLuint index, const GLubyte *v); | ||
2320 | GLAPI PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv; | ||
2321 | #define glVertexAttribI4ubv glad_glVertexAttribI4ubv | ||
2322 | typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC)(GLuint index, const GLushort *v); | ||
2323 | GLAPI PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv; | ||
2324 | #define glVertexAttribI4usv glad_glVertexAttribI4usv | ||
2325 | typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC)(GLuint program, GLint location, GLuint *params); | ||
2326 | GLAPI PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv; | ||
2327 | #define glGetUniformuiv glad_glGetUniformuiv | ||
2328 | typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC)(GLuint program, GLuint color, const GLchar *name); | ||
2329 | GLAPI PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation; | ||
2330 | #define glBindFragDataLocation glad_glBindFragDataLocation | ||
2331 | typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC)(GLuint program, const GLchar *name); | ||
2332 | GLAPI PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation; | ||
2333 | #define glGetFragDataLocation glad_glGetFragDataLocation | ||
2334 | typedef void (APIENTRYP PFNGLUNIFORM1UIPROC)(GLint location, GLuint v0); | ||
2335 | GLAPI PFNGLUNIFORM1UIPROC glad_glUniform1ui; | ||
2336 | #define glUniform1ui glad_glUniform1ui | ||
2337 | typedef void (APIENTRYP PFNGLUNIFORM2UIPROC)(GLint location, GLuint v0, GLuint v1); | ||
2338 | GLAPI PFNGLUNIFORM2UIPROC glad_glUniform2ui; | ||
2339 | #define glUniform2ui glad_glUniform2ui | ||
2340 | typedef void (APIENTRYP PFNGLUNIFORM3UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2); | ||
2341 | GLAPI PFNGLUNIFORM3UIPROC glad_glUniform3ui; | ||
2342 | #define glUniform3ui glad_glUniform3ui | ||
2343 | typedef void (APIENTRYP PFNGLUNIFORM4UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); | ||
2344 | GLAPI PFNGLUNIFORM4UIPROC glad_glUniform4ui; | ||
2345 | #define glUniform4ui glad_glUniform4ui | ||
2346 | typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC)(GLint location, GLsizei count, const GLuint *value); | ||
2347 | GLAPI PFNGLUNIFORM1UIVPROC glad_glUniform1uiv; | ||
2348 | #define glUniform1uiv glad_glUniform1uiv | ||
2349 | typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC)(GLint location, GLsizei count, const GLuint *value); | ||
2350 | GLAPI PFNGLUNIFORM2UIVPROC glad_glUniform2uiv; | ||
2351 | #define glUniform2uiv glad_glUniform2uiv | ||
2352 | typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC)(GLint location, GLsizei count, const GLuint *value); | ||
2353 | GLAPI PFNGLUNIFORM3UIVPROC glad_glUniform3uiv; | ||
2354 | #define glUniform3uiv glad_glUniform3uiv | ||
2355 | typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC)(GLint location, GLsizei count, const GLuint *value); | ||
2356 | GLAPI PFNGLUNIFORM4UIVPROC glad_glUniform4uiv; | ||
2357 | #define glUniform4uiv glad_glUniform4uiv | ||
2358 | typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, const GLint *params); | ||
2359 | GLAPI PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv; | ||
2360 | #define glTexParameterIiv glad_glTexParameterIiv | ||
2361 | typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, const GLuint *params); | ||
2362 | GLAPI PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv; | ||
2363 | #define glTexParameterIuiv glad_glTexParameterIuiv | ||
2364 | typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, GLint *params); | ||
2365 | GLAPI PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv; | ||
2366 | #define glGetTexParameterIiv glad_glGetTexParameterIiv | ||
2367 | typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, GLuint *params); | ||
2368 | GLAPI PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv; | ||
2369 | #define glGetTexParameterIuiv glad_glGetTexParameterIuiv | ||
2370 | typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC)(GLenum buffer, GLint drawbuffer, const GLint *value); | ||
2371 | GLAPI PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv; | ||
2372 | #define glClearBufferiv glad_glClearBufferiv | ||
2373 | typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC)(GLenum buffer, GLint drawbuffer, const GLuint *value); | ||
2374 | GLAPI PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv; | ||
2375 | #define glClearBufferuiv glad_glClearBufferuiv | ||
2376 | typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC)(GLenum buffer, GLint drawbuffer, const GLfloat *value); | ||
2377 | GLAPI PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv; | ||
2378 | #define glClearBufferfv glad_glClearBufferfv | ||
2379 | typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); | ||
2380 | GLAPI PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi; | ||
2381 | #define glClearBufferfi glad_glClearBufferfi | ||
2382 | typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC)(GLenum name, GLuint index); | ||
2383 | GLAPI PFNGLGETSTRINGIPROC glad_glGetStringi; | ||
2384 | #define glGetStringi glad_glGetStringi | ||
2385 | typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC)(GLuint renderbuffer); | ||
2386 | GLAPI PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer; | ||
2387 | #define glIsRenderbuffer glad_glIsRenderbuffer | ||
2388 | typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC)(GLenum target, GLuint renderbuffer); | ||
2389 | GLAPI PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer; | ||
2390 | #define glBindRenderbuffer glad_glBindRenderbuffer | ||
2391 | typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC)(GLsizei n, const GLuint *renderbuffers); | ||
2392 | GLAPI PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers; | ||
2393 | #define glDeleteRenderbuffers glad_glDeleteRenderbuffers | ||
2394 | typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC)(GLsizei n, GLuint *renderbuffers); | ||
2395 | GLAPI PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers; | ||
2396 | #define glGenRenderbuffers glad_glGenRenderbuffers | ||
2397 | typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); | ||
2398 | GLAPI PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage; | ||
2399 | #define glRenderbufferStorage glad_glRenderbufferStorage | ||
2400 | typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); | ||
2401 | GLAPI PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv; | ||
2402 | #define glGetRenderbufferParameteriv glad_glGetRenderbufferParameteriv | ||
2403 | typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC)(GLuint framebuffer); | ||
2404 | GLAPI PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer; | ||
2405 | #define glIsFramebuffer glad_glIsFramebuffer | ||
2406 | typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC)(GLenum target, GLuint framebuffer); | ||
2407 | GLAPI PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer; | ||
2408 | #define glBindFramebuffer glad_glBindFramebuffer | ||
2409 | typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC)(GLsizei n, const GLuint *framebuffers); | ||
2410 | GLAPI PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers; | ||
2411 | #define glDeleteFramebuffers glad_glDeleteFramebuffers | ||
2412 | typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC)(GLsizei n, GLuint *framebuffers); | ||
2413 | GLAPI PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers; | ||
2414 | #define glGenFramebuffers glad_glGenFramebuffers | ||
2415 | typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC)(GLenum target); | ||
2416 | GLAPI PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus; | ||
2417 | #define glCheckFramebufferStatus glad_glCheckFramebufferStatus | ||
2418 | typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); | ||
2419 | GLAPI PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D; | ||
2420 | #define glFramebufferTexture1D glad_glFramebufferTexture1D | ||
2421 | typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); | ||
2422 | GLAPI PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D; | ||
2423 | #define glFramebufferTexture2D glad_glFramebufferTexture2D | ||
2424 | typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); | ||
2425 | GLAPI PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D; | ||
2426 | #define glFramebufferTexture3D glad_glFramebufferTexture3D | ||
2427 | typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); | ||
2428 | GLAPI PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer; | ||
2429 | #define glFramebufferRenderbuffer glad_glFramebufferRenderbuffer | ||
2430 | typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)(GLenum target, GLenum attachment, GLenum pname, GLint *params); | ||
2431 | GLAPI PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv; | ||
2432 | #define glGetFramebufferAttachmentParameteriv glad_glGetFramebufferAttachmentParameteriv | ||
2433 | typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC)(GLenum target); | ||
2434 | GLAPI PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap; | ||
2435 | #define glGenerateMipmap glad_glGenerateMipmap | ||
2436 | typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); | ||
2437 | GLAPI PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer; | ||
2438 | #define glBlitFramebuffer glad_glBlitFramebuffer | ||
2439 | typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); | ||
2440 | GLAPI PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample; | ||
2441 | #define glRenderbufferStorageMultisample glad_glRenderbufferStorageMultisample | ||
2442 | typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); | ||
2443 | GLAPI PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer; | ||
2444 | #define glFramebufferTextureLayer glad_glFramebufferTextureLayer | ||
2445 | typedef void * (APIENTRYP PFNGLMAPBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); | ||
2446 | GLAPI PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange; | ||
2447 | #define glMapBufferRange glad_glMapBufferRange | ||
2448 | typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length); | ||
2449 | GLAPI PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange; | ||
2450 | #define glFlushMappedBufferRange glad_glFlushMappedBufferRange | ||
2451 | typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC)(GLuint array); | ||
2452 | GLAPI PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray; | ||
2453 | #define glBindVertexArray glad_glBindVertexArray | ||
2454 | typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC)(GLsizei n, const GLuint *arrays); | ||
2455 | GLAPI PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays; | ||
2456 | #define glDeleteVertexArrays glad_glDeleteVertexArrays | ||
2457 | typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC)(GLsizei n, GLuint *arrays); | ||
2458 | GLAPI PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays; | ||
2459 | #define glGenVertexArrays glad_glGenVertexArrays | ||
2460 | typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC)(GLuint array); | ||
2461 | GLAPI PFNGLISVERTEXARRAYPROC glad_glIsVertexArray; | ||
2462 | #define glIsVertexArray glad_glIsVertexArray | ||
2463 | #endif | ||
2464 | #ifndef GL_VERSION_3_1 | ||
2465 | #define GL_VERSION_3_1 1 | ||
2466 | GLAPI int GLAD_GL_VERSION_3_1; | ||
2467 | typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC)(GLenum mode, GLint first, GLsizei count, GLsizei instancecount); | ||
2468 | GLAPI PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced; | ||
2469 | #define glDrawArraysInstanced glad_glDrawArraysInstanced | ||
2470 | typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); | ||
2471 | GLAPI PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced; | ||
2472 | #define glDrawElementsInstanced glad_glDrawElementsInstanced | ||
2473 | typedef void (APIENTRYP PFNGLTEXBUFFERPROC)(GLenum target, GLenum internalformat, GLuint buffer); | ||
2474 | GLAPI PFNGLTEXBUFFERPROC glad_glTexBuffer; | ||
2475 | #define glTexBuffer glad_glTexBuffer | ||
2476 | typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC)(GLuint index); | ||
2477 | GLAPI PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex; | ||
2478 | #define glPrimitiveRestartIndex glad_glPrimitiveRestartIndex | ||
2479 | typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); | ||
2480 | GLAPI PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData; | ||
2481 | #define glCopyBufferSubData glad_glCopyBufferSubData | ||
2482 | typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC)(GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); | ||
2483 | GLAPI PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices; | ||
2484 | #define glGetUniformIndices glad_glGetUniformIndices | ||
2485 | typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); | ||
2486 | GLAPI PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv; | ||
2487 | #define glGetActiveUniformsiv glad_glGetActiveUniformsiv | ||
2488 | typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC)(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); | ||
2489 | GLAPI PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName; | ||
2490 | #define glGetActiveUniformName glad_glGetActiveUniformName | ||
2491 | typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC)(GLuint program, const GLchar *uniformBlockName); | ||
2492 | GLAPI PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex; | ||
2493 | #define glGetUniformBlockIndex glad_glGetUniformBlockIndex | ||
2494 | typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC)(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); | ||
2495 | GLAPI PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv; | ||
2496 | #define glGetActiveUniformBlockiv glad_glGetActiveUniformBlockiv | ||
2497 | typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); | ||
2498 | GLAPI PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName; | ||
2499 | #define glGetActiveUniformBlockName glad_glGetActiveUniformBlockName | ||
2500 | typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC)(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); | ||
2501 | GLAPI PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding; | ||
2502 | #define glUniformBlockBinding glad_glUniformBlockBinding | ||
2503 | #endif | ||
2504 | #ifndef GL_VERSION_3_2 | ||
2505 | #define GL_VERSION_3_2 1 | ||
2506 | GLAPI int GLAD_GL_VERSION_3_2; | ||
2507 | typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); | ||
2508 | GLAPI PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex; | ||
2509 | #define glDrawElementsBaseVertex glad_glDrawElementsBaseVertex | ||
2510 | typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); | ||
2511 | GLAPI PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex; | ||
2512 | #define glDrawRangeElementsBaseVertex glad_glDrawRangeElementsBaseVertex | ||
2513 | typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); | ||
2514 | GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex; | ||
2515 | #define glDrawElementsInstancedBaseVertex glad_glDrawElementsInstancedBaseVertex | ||
2516 | typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); | ||
2517 | GLAPI PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex; | ||
2518 | #define glMultiDrawElementsBaseVertex glad_glMultiDrawElementsBaseVertex | ||
2519 | typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC)(GLenum mode); | ||
2520 | GLAPI PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex; | ||
2521 | #define glProvokingVertex glad_glProvokingVertex | ||
2522 | typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC)(GLenum condition, GLbitfield flags); | ||
2523 | GLAPI PFNGLFENCESYNCPROC glad_glFenceSync; | ||
2524 | #define glFenceSync glad_glFenceSync | ||
2525 | typedef GLboolean (APIENTRYP PFNGLISSYNCPROC)(GLsync sync); | ||
2526 | GLAPI PFNGLISSYNCPROC glad_glIsSync; | ||
2527 | #define glIsSync glad_glIsSync | ||
2528 | typedef void (APIENTRYP PFNGLDELETESYNCPROC)(GLsync sync); | ||
2529 | GLAPI PFNGLDELETESYNCPROC glad_glDeleteSync; | ||
2530 | #define glDeleteSync glad_glDeleteSync | ||
2531 | typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); | ||
2532 | GLAPI PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync; | ||
2533 | #define glClientWaitSync glad_glClientWaitSync | ||
2534 | typedef void (APIENTRYP PFNGLWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); | ||
2535 | GLAPI PFNGLWAITSYNCPROC glad_glWaitSync; | ||
2536 | #define glWaitSync glad_glWaitSync | ||
2537 | typedef void (APIENTRYP PFNGLGETINTEGER64VPROC)(GLenum pname, GLint64 *data); | ||
2538 | GLAPI PFNGLGETINTEGER64VPROC glad_glGetInteger64v; | ||
2539 | #define glGetInteger64v glad_glGetInteger64v | ||
2540 | typedef void (APIENTRYP PFNGLGETSYNCIVPROC)(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); | ||
2541 | GLAPI PFNGLGETSYNCIVPROC glad_glGetSynciv; | ||
2542 | #define glGetSynciv glad_glGetSynciv | ||
2543 | typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC)(GLenum target, GLuint index, GLint64 *data); | ||
2544 | GLAPI PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v; | ||
2545 | #define glGetInteger64i_v glad_glGetInteger64i_v | ||
2546 | typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC)(GLenum target, GLenum pname, GLint64 *params); | ||
2547 | GLAPI PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v; | ||
2548 | #define glGetBufferParameteri64v glad_glGetBufferParameteri64v | ||
2549 | typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level); | ||
2550 | GLAPI PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture; | ||
2551 | #define glFramebufferTexture glad_glFramebufferTexture | ||
2552 | typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); | ||
2553 | GLAPI PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample; | ||
2554 | #define glTexImage2DMultisample glad_glTexImage2DMultisample | ||
2555 | typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); | ||
2556 | GLAPI PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample; | ||
2557 | #define glTexImage3DMultisample glad_glTexImage3DMultisample | ||
2558 | typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC)(GLenum pname, GLuint index, GLfloat *val); | ||
2559 | GLAPI PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv; | ||
2560 | #define glGetMultisamplefv glad_glGetMultisamplefv | ||
2561 | typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC)(GLuint maskNumber, GLbitfield mask); | ||
2562 | GLAPI PFNGLSAMPLEMASKIPROC glad_glSampleMaski; | ||
2563 | #define glSampleMaski glad_glSampleMaski | ||
2564 | #endif | ||
2565 | #ifndef GL_VERSION_3_3 | ||
2566 | #define GL_VERSION_3_3 1 | ||
2567 | GLAPI int GLAD_GL_VERSION_3_3; | ||
2568 | typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); | ||
2569 | GLAPI PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed; | ||
2570 | #define glBindFragDataLocationIndexed glad_glBindFragDataLocationIndexed | ||
2571 | typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC)(GLuint program, const GLchar *name); | ||
2572 | GLAPI PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex; | ||
2573 | #define glGetFragDataIndex glad_glGetFragDataIndex | ||
2574 | typedef void (APIENTRYP PFNGLGENSAMPLERSPROC)(GLsizei count, GLuint *samplers); | ||
2575 | GLAPI PFNGLGENSAMPLERSPROC glad_glGenSamplers; | ||
2576 | #define glGenSamplers glad_glGenSamplers | ||
2577 | typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC)(GLsizei count, const GLuint *samplers); | ||
2578 | GLAPI PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers; | ||
2579 | #define glDeleteSamplers glad_glDeleteSamplers | ||
2580 | typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC)(GLuint sampler); | ||
2581 | GLAPI PFNGLISSAMPLERPROC glad_glIsSampler; | ||
2582 | #define glIsSampler glad_glIsSampler | ||
2583 | typedef void (APIENTRYP PFNGLBINDSAMPLERPROC)(GLuint unit, GLuint sampler); | ||
2584 | GLAPI PFNGLBINDSAMPLERPROC glad_glBindSampler; | ||
2585 | #define glBindSampler glad_glBindSampler | ||
2586 | typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC)(GLuint sampler, GLenum pname, GLint param); | ||
2587 | GLAPI PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri; | ||
2588 | #define glSamplerParameteri glad_glSamplerParameteri | ||
2589 | typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, const GLint *param); | ||
2590 | GLAPI PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv; | ||
2591 | #define glSamplerParameteriv glad_glSamplerParameteriv | ||
2592 | typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC)(GLuint sampler, GLenum pname, GLfloat param); | ||
2593 | GLAPI PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf; | ||
2594 | #define glSamplerParameterf glad_glSamplerParameterf | ||
2595 | typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, const GLfloat *param); | ||
2596 | GLAPI PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv; | ||
2597 | #define glSamplerParameterfv glad_glSamplerParameterfv | ||
2598 | typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, const GLint *param); | ||
2599 | GLAPI PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv; | ||
2600 | #define glSamplerParameterIiv glad_glSamplerParameterIiv | ||
2601 | typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, const GLuint *param); | ||
2602 | GLAPI PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv; | ||
2603 | #define glSamplerParameterIuiv glad_glSamplerParameterIuiv | ||
2604 | typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, GLint *params); | ||
2605 | GLAPI PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv; | ||
2606 | #define glGetSamplerParameteriv glad_glGetSamplerParameteriv | ||
2607 | typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, GLint *params); | ||
2608 | GLAPI PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv; | ||
2609 | #define glGetSamplerParameterIiv glad_glGetSamplerParameterIiv | ||
2610 | typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, GLfloat *params); | ||
2611 | GLAPI PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv; | ||
2612 | #define glGetSamplerParameterfv glad_glGetSamplerParameterfv | ||
2613 | typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, GLuint *params); | ||
2614 | GLAPI PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv; | ||
2615 | #define glGetSamplerParameterIuiv glad_glGetSamplerParameterIuiv | ||
2616 | typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC)(GLuint id, GLenum target); | ||
2617 | GLAPI PFNGLQUERYCOUNTERPROC glad_glQueryCounter; | ||
2618 | #define glQueryCounter glad_glQueryCounter | ||
2619 | typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC)(GLuint id, GLenum pname, GLint64 *params); | ||
2620 | GLAPI PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v; | ||
2621 | #define glGetQueryObjecti64v glad_glGetQueryObjecti64v | ||
2622 | typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC)(GLuint id, GLenum pname, GLuint64 *params); | ||
2623 | GLAPI PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v; | ||
2624 | #define glGetQueryObjectui64v glad_glGetQueryObjectui64v | ||
2625 | typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC)(GLuint index, GLuint divisor); | ||
2626 | GLAPI PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor; | ||
2627 | #define glVertexAttribDivisor glad_glVertexAttribDivisor | ||
2628 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); | ||
2629 | GLAPI PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui; | ||
2630 | #define glVertexAttribP1ui glad_glVertexAttribP1ui | ||
2631 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); | ||
2632 | GLAPI PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv; | ||
2633 | #define glVertexAttribP1uiv glad_glVertexAttribP1uiv | ||
2634 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); | ||
2635 | GLAPI PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui; | ||
2636 | #define glVertexAttribP2ui glad_glVertexAttribP2ui | ||
2637 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); | ||
2638 | GLAPI PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv; | ||
2639 | #define glVertexAttribP2uiv glad_glVertexAttribP2uiv | ||
2640 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); | ||
2641 | GLAPI PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui; | ||
2642 | #define glVertexAttribP3ui glad_glVertexAttribP3ui | ||
2643 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); | ||
2644 | GLAPI PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv; | ||
2645 | #define glVertexAttribP3uiv glad_glVertexAttribP3uiv | ||
2646 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); | ||
2647 | GLAPI PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui; | ||
2648 | #define glVertexAttribP4ui glad_glVertexAttribP4ui | ||
2649 | typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); | ||
2650 | GLAPI PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv; | ||
2651 | #define glVertexAttribP4uiv glad_glVertexAttribP4uiv | ||
2652 | typedef void (APIENTRYP PFNGLVERTEXP2UIPROC)(GLenum type, GLuint value); | ||
2653 | GLAPI PFNGLVERTEXP2UIPROC glad_glVertexP2ui; | ||
2654 | #define glVertexP2ui glad_glVertexP2ui | ||
2655 | typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC)(GLenum type, const GLuint *value); | ||
2656 | GLAPI PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv; | ||
2657 | #define glVertexP2uiv glad_glVertexP2uiv | ||
2658 | typedef void (APIENTRYP PFNGLVERTEXP3UIPROC)(GLenum type, GLuint value); | ||
2659 | GLAPI PFNGLVERTEXP3UIPROC glad_glVertexP3ui; | ||
2660 | #define glVertexP3ui glad_glVertexP3ui | ||
2661 | typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC)(GLenum type, const GLuint *value); | ||
2662 | GLAPI PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv; | ||
2663 | #define glVertexP3uiv glad_glVertexP3uiv | ||
2664 | typedef void (APIENTRYP PFNGLVERTEXP4UIPROC)(GLenum type, GLuint value); | ||
2665 | GLAPI PFNGLVERTEXP4UIPROC glad_glVertexP4ui; | ||
2666 | #define glVertexP4ui glad_glVertexP4ui | ||
2667 | typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC)(GLenum type, const GLuint *value); | ||
2668 | GLAPI PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv; | ||
2669 | #define glVertexP4uiv glad_glVertexP4uiv | ||
2670 | typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC)(GLenum type, GLuint coords); | ||
2671 | GLAPI PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui; | ||
2672 | #define glTexCoordP1ui glad_glTexCoordP1ui | ||
2673 | typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC)(GLenum type, const GLuint *coords); | ||
2674 | GLAPI PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv; | ||
2675 | #define glTexCoordP1uiv glad_glTexCoordP1uiv | ||
2676 | typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC)(GLenum type, GLuint coords); | ||
2677 | GLAPI PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui; | ||
2678 | #define glTexCoordP2ui glad_glTexCoordP2ui | ||
2679 | typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC)(GLenum type, const GLuint *coords); | ||
2680 | GLAPI PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv; | ||
2681 | #define glTexCoordP2uiv glad_glTexCoordP2uiv | ||
2682 | typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC)(GLenum type, GLuint coords); | ||
2683 | GLAPI PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui; | ||
2684 | #define glTexCoordP3ui glad_glTexCoordP3ui | ||
2685 | typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC)(GLenum type, const GLuint *coords); | ||
2686 | GLAPI PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv; | ||
2687 | #define glTexCoordP3uiv glad_glTexCoordP3uiv | ||
2688 | typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC)(GLenum type, GLuint coords); | ||
2689 | GLAPI PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui; | ||
2690 | #define glTexCoordP4ui glad_glTexCoordP4ui | ||
2691 | typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC)(GLenum type, const GLuint *coords); | ||
2692 | GLAPI PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv; | ||
2693 | #define glTexCoordP4uiv glad_glTexCoordP4uiv | ||
2694 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC)(GLenum texture, GLenum type, GLuint coords); | ||
2695 | GLAPI PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui; | ||
2696 | #define glMultiTexCoordP1ui glad_glMultiTexCoordP1ui | ||
2697 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); | ||
2698 | GLAPI PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv; | ||
2699 | #define glMultiTexCoordP1uiv glad_glMultiTexCoordP1uiv | ||
2700 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC)(GLenum texture, GLenum type, GLuint coords); | ||
2701 | GLAPI PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui; | ||
2702 | #define glMultiTexCoordP2ui glad_glMultiTexCoordP2ui | ||
2703 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); | ||
2704 | GLAPI PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv; | ||
2705 | #define glMultiTexCoordP2uiv glad_glMultiTexCoordP2uiv | ||
2706 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC)(GLenum texture, GLenum type, GLuint coords); | ||
2707 | GLAPI PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui; | ||
2708 | #define glMultiTexCoordP3ui glad_glMultiTexCoordP3ui | ||
2709 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); | ||
2710 | GLAPI PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv; | ||
2711 | #define glMultiTexCoordP3uiv glad_glMultiTexCoordP3uiv | ||
2712 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC)(GLenum texture, GLenum type, GLuint coords); | ||
2713 | GLAPI PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui; | ||
2714 | #define glMultiTexCoordP4ui glad_glMultiTexCoordP4ui | ||
2715 | typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); | ||
2716 | GLAPI PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv; | ||
2717 | #define glMultiTexCoordP4uiv glad_glMultiTexCoordP4uiv | ||
2718 | typedef void (APIENTRYP PFNGLNORMALP3UIPROC)(GLenum type, GLuint coords); | ||
2719 | GLAPI PFNGLNORMALP3UIPROC glad_glNormalP3ui; | ||
2720 | #define glNormalP3ui glad_glNormalP3ui | ||
2721 | typedef void (APIENTRYP PFNGLNORMALP3UIVPROC)(GLenum type, const GLuint *coords); | ||
2722 | GLAPI PFNGLNORMALP3UIVPROC glad_glNormalP3uiv; | ||
2723 | #define glNormalP3uiv glad_glNormalP3uiv | ||
2724 | typedef void (APIENTRYP PFNGLCOLORP3UIPROC)(GLenum type, GLuint color); | ||
2725 | GLAPI PFNGLCOLORP3UIPROC glad_glColorP3ui; | ||
2726 | #define glColorP3ui glad_glColorP3ui | ||
2727 | typedef void (APIENTRYP PFNGLCOLORP3UIVPROC)(GLenum type, const GLuint *color); | ||
2728 | GLAPI PFNGLCOLORP3UIVPROC glad_glColorP3uiv; | ||
2729 | #define glColorP3uiv glad_glColorP3uiv | ||
2730 | typedef void (APIENTRYP PFNGLCOLORP4UIPROC)(GLenum type, GLuint color); | ||
2731 | GLAPI PFNGLCOLORP4UIPROC glad_glColorP4ui; | ||
2732 | #define glColorP4ui glad_glColorP4ui | ||
2733 | typedef void (APIENTRYP PFNGLCOLORP4UIVPROC)(GLenum type, const GLuint *color); | ||
2734 | GLAPI PFNGLCOLORP4UIVPROC glad_glColorP4uiv; | ||
2735 | #define glColorP4uiv glad_glColorP4uiv | ||
2736 | typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC)(GLenum type, GLuint color); | ||
2737 | GLAPI PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui; | ||
2738 | #define glSecondaryColorP3ui glad_glSecondaryColorP3ui | ||
2739 | typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC)(GLenum type, const GLuint *color); | ||
2740 | GLAPI PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv; | ||
2741 | #define glSecondaryColorP3uiv glad_glSecondaryColorP3uiv | ||
2742 | #endif | ||
2743 | #ifndef GL_VERSION_4_0 | ||
2744 | #define GL_VERSION_4_0 1 | ||
2745 | GLAPI int GLAD_GL_VERSION_4_0; | ||
2746 | typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC)(GLfloat value); | ||
2747 | GLAPI PFNGLMINSAMPLESHADINGPROC glad_glMinSampleShading; | ||
2748 | #define glMinSampleShading glad_glMinSampleShading | ||
2749 | typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC)(GLuint buf, GLenum mode); | ||
2750 | GLAPI PFNGLBLENDEQUATIONIPROC glad_glBlendEquationi; | ||
2751 | #define glBlendEquationi glad_glBlendEquationi | ||
2752 | typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC)(GLuint buf, GLenum modeRGB, GLenum modeAlpha); | ||
2753 | GLAPI PFNGLBLENDEQUATIONSEPARATEIPROC glad_glBlendEquationSeparatei; | ||
2754 | #define glBlendEquationSeparatei glad_glBlendEquationSeparatei | ||
2755 | typedef void (APIENTRYP PFNGLBLENDFUNCIPROC)(GLuint buf, GLenum src, GLenum dst); | ||
2756 | GLAPI PFNGLBLENDFUNCIPROC glad_glBlendFunci; | ||
2757 | #define glBlendFunci glad_glBlendFunci | ||
2758 | typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC)(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); | ||
2759 | GLAPI PFNGLBLENDFUNCSEPARATEIPROC glad_glBlendFuncSeparatei; | ||
2760 | #define glBlendFuncSeparatei glad_glBlendFuncSeparatei | ||
2761 | typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC)(GLenum mode, const void *indirect); | ||
2762 | GLAPI PFNGLDRAWARRAYSINDIRECTPROC glad_glDrawArraysIndirect; | ||
2763 | #define glDrawArraysIndirect glad_glDrawArraysIndirect | ||
2764 | typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC)(GLenum mode, GLenum type, const void *indirect); | ||
2765 | GLAPI PFNGLDRAWELEMENTSINDIRECTPROC glad_glDrawElementsIndirect; | ||
2766 | #define glDrawElementsIndirect glad_glDrawElementsIndirect | ||
2767 | typedef void (APIENTRYP PFNGLUNIFORM1DPROC)(GLint location, GLdouble x); | ||
2768 | GLAPI PFNGLUNIFORM1DPROC glad_glUniform1d; | ||
2769 | #define glUniform1d glad_glUniform1d | ||
2770 | typedef void (APIENTRYP PFNGLUNIFORM2DPROC)(GLint location, GLdouble x, GLdouble y); | ||
2771 | GLAPI PFNGLUNIFORM2DPROC glad_glUniform2d; | ||
2772 | #define glUniform2d glad_glUniform2d | ||
2773 | typedef void (APIENTRYP PFNGLUNIFORM3DPROC)(GLint location, GLdouble x, GLdouble y, GLdouble z); | ||
2774 | GLAPI PFNGLUNIFORM3DPROC glad_glUniform3d; | ||
2775 | #define glUniform3d glad_glUniform3d | ||
2776 | typedef void (APIENTRYP PFNGLUNIFORM4DPROC)(GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); | ||
2777 | GLAPI PFNGLUNIFORM4DPROC glad_glUniform4d; | ||
2778 | #define glUniform4d glad_glUniform4d | ||
2779 | typedef void (APIENTRYP PFNGLUNIFORM1DVPROC)(GLint location, GLsizei count, const GLdouble *value); | ||
2780 | GLAPI PFNGLUNIFORM1DVPROC glad_glUniform1dv; | ||
2781 | #define glUniform1dv glad_glUniform1dv | ||
2782 | typedef void (APIENTRYP PFNGLUNIFORM2DVPROC)(GLint location, GLsizei count, const GLdouble *value); | ||
2783 | GLAPI PFNGLUNIFORM2DVPROC glad_glUniform2dv; | ||
2784 | #define glUniform2dv glad_glUniform2dv | ||
2785 | typedef void (APIENTRYP PFNGLUNIFORM3DVPROC)(GLint location, GLsizei count, const GLdouble *value); | ||
2786 | GLAPI PFNGLUNIFORM3DVPROC glad_glUniform3dv; | ||
2787 | #define glUniform3dv glad_glUniform3dv | ||
2788 | typedef void (APIENTRYP PFNGLUNIFORM4DVPROC)(GLint location, GLsizei count, const GLdouble *value); | ||
2789 | GLAPI PFNGLUNIFORM4DVPROC glad_glUniform4dv; | ||
2790 | #define glUniform4dv glad_glUniform4dv | ||
2791 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2792 | GLAPI PFNGLUNIFORMMATRIX2DVPROC glad_glUniformMatrix2dv; | ||
2793 | #define glUniformMatrix2dv glad_glUniformMatrix2dv | ||
2794 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2795 | GLAPI PFNGLUNIFORMMATRIX3DVPROC glad_glUniformMatrix3dv; | ||
2796 | #define glUniformMatrix3dv glad_glUniformMatrix3dv | ||
2797 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2798 | GLAPI PFNGLUNIFORMMATRIX4DVPROC glad_glUniformMatrix4dv; | ||
2799 | #define glUniformMatrix4dv glad_glUniformMatrix4dv | ||
2800 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2801 | GLAPI PFNGLUNIFORMMATRIX2X3DVPROC glad_glUniformMatrix2x3dv; | ||
2802 | #define glUniformMatrix2x3dv glad_glUniformMatrix2x3dv | ||
2803 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2804 | GLAPI PFNGLUNIFORMMATRIX2X4DVPROC glad_glUniformMatrix2x4dv; | ||
2805 | #define glUniformMatrix2x4dv glad_glUniformMatrix2x4dv | ||
2806 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2807 | GLAPI PFNGLUNIFORMMATRIX3X2DVPROC glad_glUniformMatrix3x2dv; | ||
2808 | #define glUniformMatrix3x2dv glad_glUniformMatrix3x2dv | ||
2809 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2810 | GLAPI PFNGLUNIFORMMATRIX3X4DVPROC glad_glUniformMatrix3x4dv; | ||
2811 | #define glUniformMatrix3x4dv glad_glUniformMatrix3x4dv | ||
2812 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2813 | GLAPI PFNGLUNIFORMMATRIX4X2DVPROC glad_glUniformMatrix4x2dv; | ||
2814 | #define glUniformMatrix4x2dv glad_glUniformMatrix4x2dv | ||
2815 | typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
2816 | GLAPI PFNGLUNIFORMMATRIX4X3DVPROC glad_glUniformMatrix4x3dv; | ||
2817 | #define glUniformMatrix4x3dv glad_glUniformMatrix4x3dv | ||
2818 | typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC)(GLuint program, GLint location, GLdouble *params); | ||
2819 | GLAPI PFNGLGETUNIFORMDVPROC glad_glGetUniformdv; | ||
2820 | #define glGetUniformdv glad_glGetUniformdv | ||
2821 | typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC)(GLuint program, GLenum shadertype, const GLchar *name); | ||
2822 | GLAPI PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC glad_glGetSubroutineUniformLocation; | ||
2823 | #define glGetSubroutineUniformLocation glad_glGetSubroutineUniformLocation | ||
2824 | typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC)(GLuint program, GLenum shadertype, const GLchar *name); | ||
2825 | GLAPI PFNGLGETSUBROUTINEINDEXPROC glad_glGetSubroutineIndex; | ||
2826 | #define glGetSubroutineIndex glad_glGetSubroutineIndex | ||
2827 | typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC)(GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); | ||
2828 | GLAPI PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC glad_glGetActiveSubroutineUniformiv; | ||
2829 | #define glGetActiveSubroutineUniformiv glad_glGetActiveSubroutineUniformiv | ||
2830 | typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC)(GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); | ||
2831 | GLAPI PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC glad_glGetActiveSubroutineUniformName; | ||
2832 | #define glGetActiveSubroutineUniformName glad_glGetActiveSubroutineUniformName | ||
2833 | typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC)(GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); | ||
2834 | GLAPI PFNGLGETACTIVESUBROUTINENAMEPROC glad_glGetActiveSubroutineName; | ||
2835 | #define glGetActiveSubroutineName glad_glGetActiveSubroutineName | ||
2836 | typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC)(GLenum shadertype, GLsizei count, const GLuint *indices); | ||
2837 | GLAPI PFNGLUNIFORMSUBROUTINESUIVPROC glad_glUniformSubroutinesuiv; | ||
2838 | #define glUniformSubroutinesuiv glad_glUniformSubroutinesuiv | ||
2839 | typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC)(GLenum shadertype, GLint location, GLuint *params); | ||
2840 | GLAPI PFNGLGETUNIFORMSUBROUTINEUIVPROC glad_glGetUniformSubroutineuiv; | ||
2841 | #define glGetUniformSubroutineuiv glad_glGetUniformSubroutineuiv | ||
2842 | typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC)(GLuint program, GLenum shadertype, GLenum pname, GLint *values); | ||
2843 | GLAPI PFNGLGETPROGRAMSTAGEIVPROC glad_glGetProgramStageiv; | ||
2844 | #define glGetProgramStageiv glad_glGetProgramStageiv | ||
2845 | typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC)(GLenum pname, GLint value); | ||
2846 | GLAPI PFNGLPATCHPARAMETERIPROC glad_glPatchParameteri; | ||
2847 | #define glPatchParameteri glad_glPatchParameteri | ||
2848 | typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC)(GLenum pname, const GLfloat *values); | ||
2849 | GLAPI PFNGLPATCHPARAMETERFVPROC glad_glPatchParameterfv; | ||
2850 | #define glPatchParameterfv glad_glPatchParameterfv | ||
2851 | typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC)(GLenum target, GLuint id); | ||
2852 | GLAPI PFNGLBINDTRANSFORMFEEDBACKPROC glad_glBindTransformFeedback; | ||
2853 | #define glBindTransformFeedback glad_glBindTransformFeedback | ||
2854 | typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC)(GLsizei n, const GLuint *ids); | ||
2855 | GLAPI PFNGLDELETETRANSFORMFEEDBACKSPROC glad_glDeleteTransformFeedbacks; | ||
2856 | #define glDeleteTransformFeedbacks glad_glDeleteTransformFeedbacks | ||
2857 | typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC)(GLsizei n, GLuint *ids); | ||
2858 | GLAPI PFNGLGENTRANSFORMFEEDBACKSPROC glad_glGenTransformFeedbacks; | ||
2859 | #define glGenTransformFeedbacks glad_glGenTransformFeedbacks | ||
2860 | typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC)(GLuint id); | ||
2861 | GLAPI PFNGLISTRANSFORMFEEDBACKPROC glad_glIsTransformFeedback; | ||
2862 | #define glIsTransformFeedback glad_glIsTransformFeedback | ||
2863 | typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC)(void); | ||
2864 | GLAPI PFNGLPAUSETRANSFORMFEEDBACKPROC glad_glPauseTransformFeedback; | ||
2865 | #define glPauseTransformFeedback glad_glPauseTransformFeedback | ||
2866 | typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC)(void); | ||
2867 | GLAPI PFNGLRESUMETRANSFORMFEEDBACKPROC glad_glResumeTransformFeedback; | ||
2868 | #define glResumeTransformFeedback glad_glResumeTransformFeedback | ||
2869 | typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC)(GLenum mode, GLuint id); | ||
2870 | GLAPI PFNGLDRAWTRANSFORMFEEDBACKPROC glad_glDrawTransformFeedback; | ||
2871 | #define glDrawTransformFeedback glad_glDrawTransformFeedback | ||
2872 | typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC)(GLenum mode, GLuint id, GLuint stream); | ||
2873 | GLAPI PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC glad_glDrawTransformFeedbackStream; | ||
2874 | #define glDrawTransformFeedbackStream glad_glDrawTransformFeedbackStream | ||
2875 | typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC)(GLenum target, GLuint index, GLuint id); | ||
2876 | GLAPI PFNGLBEGINQUERYINDEXEDPROC glad_glBeginQueryIndexed; | ||
2877 | #define glBeginQueryIndexed glad_glBeginQueryIndexed | ||
2878 | typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC)(GLenum target, GLuint index); | ||
2879 | GLAPI PFNGLENDQUERYINDEXEDPROC glad_glEndQueryIndexed; | ||
2880 | #define glEndQueryIndexed glad_glEndQueryIndexed | ||
2881 | typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC)(GLenum target, GLuint index, GLenum pname, GLint *params); | ||
2882 | GLAPI PFNGLGETQUERYINDEXEDIVPROC glad_glGetQueryIndexediv; | ||
2883 | #define glGetQueryIndexediv glad_glGetQueryIndexediv | ||
2884 | #endif | ||
2885 | #ifndef GL_VERSION_4_1 | ||
2886 | #define GL_VERSION_4_1 1 | ||
2887 | GLAPI int GLAD_GL_VERSION_4_1; | ||
2888 | typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC)(void); | ||
2889 | GLAPI PFNGLRELEASESHADERCOMPILERPROC glad_glReleaseShaderCompiler; | ||
2890 | #define glReleaseShaderCompiler glad_glReleaseShaderCompiler | ||
2891 | typedef void (APIENTRYP PFNGLSHADERBINARYPROC)(GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); | ||
2892 | GLAPI PFNGLSHADERBINARYPROC glad_glShaderBinary; | ||
2893 | #define glShaderBinary glad_glShaderBinary | ||
2894 | typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); | ||
2895 | GLAPI PFNGLGETSHADERPRECISIONFORMATPROC glad_glGetShaderPrecisionFormat; | ||
2896 | #define glGetShaderPrecisionFormat glad_glGetShaderPrecisionFormat | ||
2897 | typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC)(GLfloat n, GLfloat f); | ||
2898 | GLAPI PFNGLDEPTHRANGEFPROC glad_glDepthRangef; | ||
2899 | #define glDepthRangef glad_glDepthRangef | ||
2900 | typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC)(GLfloat d); | ||
2901 | GLAPI PFNGLCLEARDEPTHFPROC glad_glClearDepthf; | ||
2902 | #define glClearDepthf glad_glClearDepthf | ||
2903 | typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC)(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); | ||
2904 | GLAPI PFNGLGETPROGRAMBINARYPROC glad_glGetProgramBinary; | ||
2905 | #define glGetProgramBinary glad_glGetProgramBinary | ||
2906 | typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC)(GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); | ||
2907 | GLAPI PFNGLPROGRAMBINARYPROC glad_glProgramBinary; | ||
2908 | #define glProgramBinary glad_glProgramBinary | ||
2909 | typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC)(GLuint program, GLenum pname, GLint value); | ||
2910 | GLAPI PFNGLPROGRAMPARAMETERIPROC glad_glProgramParameteri; | ||
2911 | #define glProgramParameteri glad_glProgramParameteri | ||
2912 | typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC)(GLuint pipeline, GLbitfield stages, GLuint program); | ||
2913 | GLAPI PFNGLUSEPROGRAMSTAGESPROC glad_glUseProgramStages; | ||
2914 | #define glUseProgramStages glad_glUseProgramStages | ||
2915 | typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC)(GLuint pipeline, GLuint program); | ||
2916 | GLAPI PFNGLACTIVESHADERPROGRAMPROC glad_glActiveShaderProgram; | ||
2917 | #define glActiveShaderProgram glad_glActiveShaderProgram | ||
2918 | typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC)(GLenum type, GLsizei count, const GLchar *const*strings); | ||
2919 | GLAPI PFNGLCREATESHADERPROGRAMVPROC glad_glCreateShaderProgramv; | ||
2920 | #define glCreateShaderProgramv glad_glCreateShaderProgramv | ||
2921 | typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC)(GLuint pipeline); | ||
2922 | GLAPI PFNGLBINDPROGRAMPIPELINEPROC glad_glBindProgramPipeline; | ||
2923 | #define glBindProgramPipeline glad_glBindProgramPipeline | ||
2924 | typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC)(GLsizei n, const GLuint *pipelines); | ||
2925 | GLAPI PFNGLDELETEPROGRAMPIPELINESPROC glad_glDeleteProgramPipelines; | ||
2926 | #define glDeleteProgramPipelines glad_glDeleteProgramPipelines | ||
2927 | typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC)(GLsizei n, GLuint *pipelines); | ||
2928 | GLAPI PFNGLGENPROGRAMPIPELINESPROC glad_glGenProgramPipelines; | ||
2929 | #define glGenProgramPipelines glad_glGenProgramPipelines | ||
2930 | typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC)(GLuint pipeline); | ||
2931 | GLAPI PFNGLISPROGRAMPIPELINEPROC glad_glIsProgramPipeline; | ||
2932 | #define glIsProgramPipeline glad_glIsProgramPipeline | ||
2933 | typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC)(GLuint pipeline, GLenum pname, GLint *params); | ||
2934 | GLAPI PFNGLGETPROGRAMPIPELINEIVPROC glad_glGetProgramPipelineiv; | ||
2935 | #define glGetProgramPipelineiv glad_glGetProgramPipelineiv | ||
2936 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC)(GLuint program, GLint location, GLint v0); | ||
2937 | GLAPI PFNGLPROGRAMUNIFORM1IPROC glad_glProgramUniform1i; | ||
2938 | #define glProgramUniform1i glad_glProgramUniform1i | ||
2939 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC)(GLuint program, GLint location, GLsizei count, const GLint *value); | ||
2940 | GLAPI PFNGLPROGRAMUNIFORM1IVPROC glad_glProgramUniform1iv; | ||
2941 | #define glProgramUniform1iv glad_glProgramUniform1iv | ||
2942 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC)(GLuint program, GLint location, GLfloat v0); | ||
2943 | GLAPI PFNGLPROGRAMUNIFORM1FPROC glad_glProgramUniform1f; | ||
2944 | #define glProgramUniform1f glad_glProgramUniform1f | ||
2945 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC)(GLuint program, GLint location, GLsizei count, const GLfloat *value); | ||
2946 | GLAPI PFNGLPROGRAMUNIFORM1FVPROC glad_glProgramUniform1fv; | ||
2947 | #define glProgramUniform1fv glad_glProgramUniform1fv | ||
2948 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC)(GLuint program, GLint location, GLdouble v0); | ||
2949 | GLAPI PFNGLPROGRAMUNIFORM1DPROC glad_glProgramUniform1d; | ||
2950 | #define glProgramUniform1d glad_glProgramUniform1d | ||
2951 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC)(GLuint program, GLint location, GLsizei count, const GLdouble *value); | ||
2952 | GLAPI PFNGLPROGRAMUNIFORM1DVPROC glad_glProgramUniform1dv; | ||
2953 | #define glProgramUniform1dv glad_glProgramUniform1dv | ||
2954 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC)(GLuint program, GLint location, GLuint v0); | ||
2955 | GLAPI PFNGLPROGRAMUNIFORM1UIPROC glad_glProgramUniform1ui; | ||
2956 | #define glProgramUniform1ui glad_glProgramUniform1ui | ||
2957 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC)(GLuint program, GLint location, GLsizei count, const GLuint *value); | ||
2958 | GLAPI PFNGLPROGRAMUNIFORM1UIVPROC glad_glProgramUniform1uiv; | ||
2959 | #define glProgramUniform1uiv glad_glProgramUniform1uiv | ||
2960 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC)(GLuint program, GLint location, GLint v0, GLint v1); | ||
2961 | GLAPI PFNGLPROGRAMUNIFORM2IPROC glad_glProgramUniform2i; | ||
2962 | #define glProgramUniform2i glad_glProgramUniform2i | ||
2963 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC)(GLuint program, GLint location, GLsizei count, const GLint *value); | ||
2964 | GLAPI PFNGLPROGRAMUNIFORM2IVPROC glad_glProgramUniform2iv; | ||
2965 | #define glProgramUniform2iv glad_glProgramUniform2iv | ||
2966 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC)(GLuint program, GLint location, GLfloat v0, GLfloat v1); | ||
2967 | GLAPI PFNGLPROGRAMUNIFORM2FPROC glad_glProgramUniform2f; | ||
2968 | #define glProgramUniform2f glad_glProgramUniform2f | ||
2969 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC)(GLuint program, GLint location, GLsizei count, const GLfloat *value); | ||
2970 | GLAPI PFNGLPROGRAMUNIFORM2FVPROC glad_glProgramUniform2fv; | ||
2971 | #define glProgramUniform2fv glad_glProgramUniform2fv | ||
2972 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC)(GLuint program, GLint location, GLdouble v0, GLdouble v1); | ||
2973 | GLAPI PFNGLPROGRAMUNIFORM2DPROC glad_glProgramUniform2d; | ||
2974 | #define glProgramUniform2d glad_glProgramUniform2d | ||
2975 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC)(GLuint program, GLint location, GLsizei count, const GLdouble *value); | ||
2976 | GLAPI PFNGLPROGRAMUNIFORM2DVPROC glad_glProgramUniform2dv; | ||
2977 | #define glProgramUniform2dv glad_glProgramUniform2dv | ||
2978 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC)(GLuint program, GLint location, GLuint v0, GLuint v1); | ||
2979 | GLAPI PFNGLPROGRAMUNIFORM2UIPROC glad_glProgramUniform2ui; | ||
2980 | #define glProgramUniform2ui glad_glProgramUniform2ui | ||
2981 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC)(GLuint program, GLint location, GLsizei count, const GLuint *value); | ||
2982 | GLAPI PFNGLPROGRAMUNIFORM2UIVPROC glad_glProgramUniform2uiv; | ||
2983 | #define glProgramUniform2uiv glad_glProgramUniform2uiv | ||
2984 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC)(GLuint program, GLint location, GLint v0, GLint v1, GLint v2); | ||
2985 | GLAPI PFNGLPROGRAMUNIFORM3IPROC glad_glProgramUniform3i; | ||
2986 | #define glProgramUniform3i glad_glProgramUniform3i | ||
2987 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC)(GLuint program, GLint location, GLsizei count, const GLint *value); | ||
2988 | GLAPI PFNGLPROGRAMUNIFORM3IVPROC glad_glProgramUniform3iv; | ||
2989 | #define glProgramUniform3iv glad_glProgramUniform3iv | ||
2990 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC)(GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); | ||
2991 | GLAPI PFNGLPROGRAMUNIFORM3FPROC glad_glProgramUniform3f; | ||
2992 | #define glProgramUniform3f glad_glProgramUniform3f | ||
2993 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC)(GLuint program, GLint location, GLsizei count, const GLfloat *value); | ||
2994 | GLAPI PFNGLPROGRAMUNIFORM3FVPROC glad_glProgramUniform3fv; | ||
2995 | #define glProgramUniform3fv glad_glProgramUniform3fv | ||
2996 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC)(GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); | ||
2997 | GLAPI PFNGLPROGRAMUNIFORM3DPROC glad_glProgramUniform3d; | ||
2998 | #define glProgramUniform3d glad_glProgramUniform3d | ||
2999 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC)(GLuint program, GLint location, GLsizei count, const GLdouble *value); | ||
3000 | GLAPI PFNGLPROGRAMUNIFORM3DVPROC glad_glProgramUniform3dv; | ||
3001 | #define glProgramUniform3dv glad_glProgramUniform3dv | ||
3002 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC)(GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); | ||
3003 | GLAPI PFNGLPROGRAMUNIFORM3UIPROC glad_glProgramUniform3ui; | ||
3004 | #define glProgramUniform3ui glad_glProgramUniform3ui | ||
3005 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC)(GLuint program, GLint location, GLsizei count, const GLuint *value); | ||
3006 | GLAPI PFNGLPROGRAMUNIFORM3UIVPROC glad_glProgramUniform3uiv; | ||
3007 | #define glProgramUniform3uiv glad_glProgramUniform3uiv | ||
3008 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC)(GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); | ||
3009 | GLAPI PFNGLPROGRAMUNIFORM4IPROC glad_glProgramUniform4i; | ||
3010 | #define glProgramUniform4i glad_glProgramUniform4i | ||
3011 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC)(GLuint program, GLint location, GLsizei count, const GLint *value); | ||
3012 | GLAPI PFNGLPROGRAMUNIFORM4IVPROC glad_glProgramUniform4iv; | ||
3013 | #define glProgramUniform4iv glad_glProgramUniform4iv | ||
3014 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC)(GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); | ||
3015 | GLAPI PFNGLPROGRAMUNIFORM4FPROC glad_glProgramUniform4f; | ||
3016 | #define glProgramUniform4f glad_glProgramUniform4f | ||
3017 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC)(GLuint program, GLint location, GLsizei count, const GLfloat *value); | ||
3018 | GLAPI PFNGLPROGRAMUNIFORM4FVPROC glad_glProgramUniform4fv; | ||
3019 | #define glProgramUniform4fv glad_glProgramUniform4fv | ||
3020 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC)(GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); | ||
3021 | GLAPI PFNGLPROGRAMUNIFORM4DPROC glad_glProgramUniform4d; | ||
3022 | #define glProgramUniform4d glad_glProgramUniform4d | ||
3023 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC)(GLuint program, GLint location, GLsizei count, const GLdouble *value); | ||
3024 | GLAPI PFNGLPROGRAMUNIFORM4DVPROC glad_glProgramUniform4dv; | ||
3025 | #define glProgramUniform4dv glad_glProgramUniform4dv | ||
3026 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC)(GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); | ||
3027 | GLAPI PFNGLPROGRAMUNIFORM4UIPROC glad_glProgramUniform4ui; | ||
3028 | #define glProgramUniform4ui glad_glProgramUniform4ui | ||
3029 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC)(GLuint program, GLint location, GLsizei count, const GLuint *value); | ||
3030 | GLAPI PFNGLPROGRAMUNIFORM4UIVPROC glad_glProgramUniform4uiv; | ||
3031 | #define glProgramUniform4uiv glad_glProgramUniform4uiv | ||
3032 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3033 | GLAPI PFNGLPROGRAMUNIFORMMATRIX2FVPROC glad_glProgramUniformMatrix2fv; | ||
3034 | #define glProgramUniformMatrix2fv glad_glProgramUniformMatrix2fv | ||
3035 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3036 | GLAPI PFNGLPROGRAMUNIFORMMATRIX3FVPROC glad_glProgramUniformMatrix3fv; | ||
3037 | #define glProgramUniformMatrix3fv glad_glProgramUniformMatrix3fv | ||
3038 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3039 | GLAPI PFNGLPROGRAMUNIFORMMATRIX4FVPROC glad_glProgramUniformMatrix4fv; | ||
3040 | #define glProgramUniformMatrix4fv glad_glProgramUniformMatrix4fv | ||
3041 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3042 | GLAPI PFNGLPROGRAMUNIFORMMATRIX2DVPROC glad_glProgramUniformMatrix2dv; | ||
3043 | #define glProgramUniformMatrix2dv glad_glProgramUniformMatrix2dv | ||
3044 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3045 | GLAPI PFNGLPROGRAMUNIFORMMATRIX3DVPROC glad_glProgramUniformMatrix3dv; | ||
3046 | #define glProgramUniformMatrix3dv glad_glProgramUniformMatrix3dv | ||
3047 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3048 | GLAPI PFNGLPROGRAMUNIFORMMATRIX4DVPROC glad_glProgramUniformMatrix4dv; | ||
3049 | #define glProgramUniformMatrix4dv glad_glProgramUniformMatrix4dv | ||
3050 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3051 | GLAPI PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC glad_glProgramUniformMatrix2x3fv; | ||
3052 | #define glProgramUniformMatrix2x3fv glad_glProgramUniformMatrix2x3fv | ||
3053 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3054 | GLAPI PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC glad_glProgramUniformMatrix3x2fv; | ||
3055 | #define glProgramUniformMatrix3x2fv glad_glProgramUniformMatrix3x2fv | ||
3056 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3057 | GLAPI PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC glad_glProgramUniformMatrix2x4fv; | ||
3058 | #define glProgramUniformMatrix2x4fv glad_glProgramUniformMatrix2x4fv | ||
3059 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3060 | GLAPI PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC glad_glProgramUniformMatrix4x2fv; | ||
3061 | #define glProgramUniformMatrix4x2fv glad_glProgramUniformMatrix4x2fv | ||
3062 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3063 | GLAPI PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC glad_glProgramUniformMatrix3x4fv; | ||
3064 | #define glProgramUniformMatrix3x4fv glad_glProgramUniformMatrix3x4fv | ||
3065 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); | ||
3066 | GLAPI PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC glad_glProgramUniformMatrix4x3fv; | ||
3067 | #define glProgramUniformMatrix4x3fv glad_glProgramUniformMatrix4x3fv | ||
3068 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3069 | GLAPI PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC glad_glProgramUniformMatrix2x3dv; | ||
3070 | #define glProgramUniformMatrix2x3dv glad_glProgramUniformMatrix2x3dv | ||
3071 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3072 | GLAPI PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC glad_glProgramUniformMatrix3x2dv; | ||
3073 | #define glProgramUniformMatrix3x2dv glad_glProgramUniformMatrix3x2dv | ||
3074 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3075 | GLAPI PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC glad_glProgramUniformMatrix2x4dv; | ||
3076 | #define glProgramUniformMatrix2x4dv glad_glProgramUniformMatrix2x4dv | ||
3077 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3078 | GLAPI PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC glad_glProgramUniformMatrix4x2dv; | ||
3079 | #define glProgramUniformMatrix4x2dv glad_glProgramUniformMatrix4x2dv | ||
3080 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3081 | GLAPI PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC glad_glProgramUniformMatrix3x4dv; | ||
3082 | #define glProgramUniformMatrix3x4dv glad_glProgramUniformMatrix3x4dv | ||
3083 | typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC)(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); | ||
3084 | GLAPI PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC glad_glProgramUniformMatrix4x3dv; | ||
3085 | #define glProgramUniformMatrix4x3dv glad_glProgramUniformMatrix4x3dv | ||
3086 | typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC)(GLuint pipeline); | ||
3087 | GLAPI PFNGLVALIDATEPROGRAMPIPELINEPROC glad_glValidateProgramPipeline; | ||
3088 | #define glValidateProgramPipeline glad_glValidateProgramPipeline | ||
3089 | typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC)(GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); | ||
3090 | GLAPI PFNGLGETPROGRAMPIPELINEINFOLOGPROC glad_glGetProgramPipelineInfoLog; | ||
3091 | #define glGetProgramPipelineInfoLog glad_glGetProgramPipelineInfoLog | ||
3092 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC)(GLuint index, GLdouble x); | ||
3093 | GLAPI PFNGLVERTEXATTRIBL1DPROC glad_glVertexAttribL1d; | ||
3094 | #define glVertexAttribL1d glad_glVertexAttribL1d | ||
3095 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC)(GLuint index, GLdouble x, GLdouble y); | ||
3096 | GLAPI PFNGLVERTEXATTRIBL2DPROC glad_glVertexAttribL2d; | ||
3097 | #define glVertexAttribL2d glad_glVertexAttribL2d | ||
3098 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z); | ||
3099 | GLAPI PFNGLVERTEXATTRIBL3DPROC glad_glVertexAttribL3d; | ||
3100 | #define glVertexAttribL3d glad_glVertexAttribL3d | ||
3101 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); | ||
3102 | GLAPI PFNGLVERTEXATTRIBL4DPROC glad_glVertexAttribL4d; | ||
3103 | #define glVertexAttribL4d glad_glVertexAttribL4d | ||
3104 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC)(GLuint index, const GLdouble *v); | ||
3105 | GLAPI PFNGLVERTEXATTRIBL1DVPROC glad_glVertexAttribL1dv; | ||
3106 | #define glVertexAttribL1dv glad_glVertexAttribL1dv | ||
3107 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC)(GLuint index, const GLdouble *v); | ||
3108 | GLAPI PFNGLVERTEXATTRIBL2DVPROC glad_glVertexAttribL2dv; | ||
3109 | #define glVertexAttribL2dv glad_glVertexAttribL2dv | ||
3110 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC)(GLuint index, const GLdouble *v); | ||
3111 | GLAPI PFNGLVERTEXATTRIBL3DVPROC glad_glVertexAttribL3dv; | ||
3112 | #define glVertexAttribL3dv glad_glVertexAttribL3dv | ||
3113 | typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC)(GLuint index, const GLdouble *v); | ||
3114 | GLAPI PFNGLVERTEXATTRIBL4DVPROC glad_glVertexAttribL4dv; | ||
3115 | #define glVertexAttribL4dv glad_glVertexAttribL4dv | ||
3116 | typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC)(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); | ||
3117 | GLAPI PFNGLVERTEXATTRIBLPOINTERPROC glad_glVertexAttribLPointer; | ||
3118 | #define glVertexAttribLPointer glad_glVertexAttribLPointer | ||
3119 | typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC)(GLuint index, GLenum pname, GLdouble *params); | ||
3120 | GLAPI PFNGLGETVERTEXATTRIBLDVPROC glad_glGetVertexAttribLdv; | ||
3121 | #define glGetVertexAttribLdv glad_glGetVertexAttribLdv | ||
3122 | typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC)(GLuint first, GLsizei count, const GLfloat *v); | ||
3123 | GLAPI PFNGLVIEWPORTARRAYVPROC glad_glViewportArrayv; | ||
3124 | #define glViewportArrayv glad_glViewportArrayv | ||
3125 | typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); | ||
3126 | GLAPI PFNGLVIEWPORTINDEXEDFPROC glad_glViewportIndexedf; | ||
3127 | #define glViewportIndexedf glad_glViewportIndexedf | ||
3128 | typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC)(GLuint index, const GLfloat *v); | ||
3129 | GLAPI PFNGLVIEWPORTINDEXEDFVPROC glad_glViewportIndexedfv; | ||
3130 | #define glViewportIndexedfv glad_glViewportIndexedfv | ||
3131 | typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC)(GLuint first, GLsizei count, const GLint *v); | ||
3132 | GLAPI PFNGLSCISSORARRAYVPROC glad_glScissorArrayv; | ||
3133 | #define glScissorArrayv glad_glScissorArrayv | ||
3134 | typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC)(GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); | ||
3135 | GLAPI PFNGLSCISSORINDEXEDPROC glad_glScissorIndexed; | ||
3136 | #define glScissorIndexed glad_glScissorIndexed | ||
3137 | typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC)(GLuint index, const GLint *v); | ||
3138 | GLAPI PFNGLSCISSORINDEXEDVPROC glad_glScissorIndexedv; | ||
3139 | #define glScissorIndexedv glad_glScissorIndexedv | ||
3140 | typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC)(GLuint first, GLsizei count, const GLdouble *v); | ||
3141 | GLAPI PFNGLDEPTHRANGEARRAYVPROC glad_glDepthRangeArrayv; | ||
3142 | #define glDepthRangeArrayv glad_glDepthRangeArrayv | ||
3143 | typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC)(GLuint index, GLdouble n, GLdouble f); | ||
3144 | GLAPI PFNGLDEPTHRANGEINDEXEDPROC glad_glDepthRangeIndexed; | ||
3145 | #define glDepthRangeIndexed glad_glDepthRangeIndexed | ||
3146 | typedef void (APIENTRYP PFNGLGETFLOATI_VPROC)(GLenum target, GLuint index, GLfloat *data); | ||
3147 | GLAPI PFNGLGETFLOATI_VPROC glad_glGetFloati_v; | ||
3148 | #define glGetFloati_v glad_glGetFloati_v | ||
3149 | typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC)(GLenum target, GLuint index, GLdouble *data); | ||
3150 | GLAPI PFNGLGETDOUBLEI_VPROC glad_glGetDoublei_v; | ||
3151 | #define glGetDoublei_v glad_glGetDoublei_v | ||
3152 | #endif | ||
3153 | #ifndef GL_VERSION_4_2 | ||
3154 | #define GL_VERSION_4_2 1 | ||
3155 | GLAPI int GLAD_GL_VERSION_4_2; | ||
3156 | typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC)(GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); | ||
3157 | GLAPI PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC glad_glDrawArraysInstancedBaseInstance; | ||
3158 | #define glDrawArraysInstancedBaseInstance glad_glDrawArraysInstancedBaseInstance | ||
3159 | typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); | ||
3160 | GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC glad_glDrawElementsInstancedBaseInstance; | ||
3161 | #define glDrawElementsInstancedBaseInstance glad_glDrawElementsInstancedBaseInstance | ||
3162 | typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); | ||
3163 | GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC glad_glDrawElementsInstancedBaseVertexBaseInstance; | ||
3164 | #define glDrawElementsInstancedBaseVertexBaseInstance glad_glDrawElementsInstancedBaseVertexBaseInstance | ||
3165 | typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC)(GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); | ||
3166 | GLAPI PFNGLGETINTERNALFORMATIVPROC glad_glGetInternalformativ; | ||
3167 | #define glGetInternalformativ glad_glGetInternalformativ | ||
3168 | typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC)(GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); | ||
3169 | GLAPI PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC glad_glGetActiveAtomicCounterBufferiv; | ||
3170 | #define glGetActiveAtomicCounterBufferiv glad_glGetActiveAtomicCounterBufferiv | ||
3171 | typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC)(GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); | ||
3172 | GLAPI PFNGLBINDIMAGETEXTUREPROC glad_glBindImageTexture; | ||
3173 | #define glBindImageTexture glad_glBindImageTexture | ||
3174 | typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC)(GLbitfield barriers); | ||
3175 | GLAPI PFNGLMEMORYBARRIERPROC glad_glMemoryBarrier; | ||
3176 | #define glMemoryBarrier glad_glMemoryBarrier | ||
3177 | typedef void (APIENTRYP PFNGLTEXSTORAGE1DPROC)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); | ||
3178 | GLAPI PFNGLTEXSTORAGE1DPROC glad_glTexStorage1D; | ||
3179 | #define glTexStorage1D glad_glTexStorage1D | ||
3180 | typedef void (APIENTRYP PFNGLTEXSTORAGE2DPROC)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); | ||
3181 | GLAPI PFNGLTEXSTORAGE2DPROC glad_glTexStorage2D; | ||
3182 | #define glTexStorage2D glad_glTexStorage2D | ||
3183 | typedef void (APIENTRYP PFNGLTEXSTORAGE3DPROC)(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); | ||
3184 | GLAPI PFNGLTEXSTORAGE3DPROC glad_glTexStorage3D; | ||
3185 | #define glTexStorage3D glad_glTexStorage3D | ||
3186 | typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC)(GLenum mode, GLuint id, GLsizei instancecount); | ||
3187 | GLAPI PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC glad_glDrawTransformFeedbackInstanced; | ||
3188 | #define glDrawTransformFeedbackInstanced glad_glDrawTransformFeedbackInstanced | ||
3189 | typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC)(GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); | ||
3190 | GLAPI PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC glad_glDrawTransformFeedbackStreamInstanced; | ||
3191 | #define glDrawTransformFeedbackStreamInstanced glad_glDrawTransformFeedbackStreamInstanced | ||
3192 | #endif | ||
3193 | #ifndef GL_VERSION_4_3 | ||
3194 | #define GL_VERSION_4_3 1 | ||
3195 | GLAPI int GLAD_GL_VERSION_4_3; | ||
3196 | typedef void (APIENTRYP PFNGLCLEARBUFFERDATAPROC)(GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); | ||
3197 | GLAPI PFNGLCLEARBUFFERDATAPROC glad_glClearBufferData; | ||
3198 | #define glClearBufferData glad_glClearBufferData | ||
3199 | typedef void (APIENTRYP PFNGLCLEARBUFFERSUBDATAPROC)(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); | ||
3200 | GLAPI PFNGLCLEARBUFFERSUBDATAPROC glad_glClearBufferSubData; | ||
3201 | #define glClearBufferSubData glad_glClearBufferSubData | ||
3202 | typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEPROC)(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); | ||
3203 | GLAPI PFNGLDISPATCHCOMPUTEPROC glad_glDispatchCompute; | ||
3204 | #define glDispatchCompute glad_glDispatchCompute | ||
3205 | typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC)(GLintptr indirect); | ||
3206 | GLAPI PFNGLDISPATCHCOMPUTEINDIRECTPROC glad_glDispatchComputeIndirect; | ||
3207 | #define glDispatchComputeIndirect glad_glDispatchComputeIndirect | ||
3208 | typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC)(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); | ||
3209 | GLAPI PFNGLCOPYIMAGESUBDATAPROC glad_glCopyImageSubData; | ||
3210 | #define glCopyImageSubData glad_glCopyImageSubData | ||
3211 | typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC)(GLenum target, GLenum pname, GLint param); | ||
3212 | GLAPI PFNGLFRAMEBUFFERPARAMETERIPROC glad_glFramebufferParameteri; | ||
3213 | #define glFramebufferParameteri glad_glFramebufferParameteri | ||
3214 | typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); | ||
3215 | GLAPI PFNGLGETFRAMEBUFFERPARAMETERIVPROC glad_glGetFramebufferParameteriv; | ||
3216 | #define glGetFramebufferParameteriv glad_glGetFramebufferParameteriv | ||
3217 | typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC)(GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); | ||
3218 | GLAPI PFNGLGETINTERNALFORMATI64VPROC glad_glGetInternalformati64v; | ||
3219 | #define glGetInternalformati64v glad_glGetInternalformati64v | ||
3220 | typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); | ||
3221 | GLAPI PFNGLINVALIDATETEXSUBIMAGEPROC glad_glInvalidateTexSubImage; | ||
3222 | #define glInvalidateTexSubImage glad_glInvalidateTexSubImage | ||
3223 | typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC)(GLuint texture, GLint level); | ||
3224 | GLAPI PFNGLINVALIDATETEXIMAGEPROC glad_glInvalidateTexImage; | ||
3225 | #define glInvalidateTexImage glad_glInvalidateTexImage | ||
3226 | typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC)(GLuint buffer, GLintptr offset, GLsizeiptr length); | ||
3227 | GLAPI PFNGLINVALIDATEBUFFERSUBDATAPROC glad_glInvalidateBufferSubData; | ||
3228 | #define glInvalidateBufferSubData glad_glInvalidateBufferSubData | ||
3229 | typedef void (APIENTRYP PFNGLINVALIDATEBUFFERDATAPROC)(GLuint buffer); | ||
3230 | GLAPI PFNGLINVALIDATEBUFFERDATAPROC glad_glInvalidateBufferData; | ||
3231 | #define glInvalidateBufferData glad_glInvalidateBufferData | ||
3232 | typedef void (APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC)(GLenum target, GLsizei numAttachments, const GLenum *attachments); | ||
3233 | GLAPI PFNGLINVALIDATEFRAMEBUFFERPROC glad_glInvalidateFramebuffer; | ||
3234 | #define glInvalidateFramebuffer glad_glInvalidateFramebuffer | ||
3235 | typedef void (APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC)(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); | ||
3236 | GLAPI PFNGLINVALIDATESUBFRAMEBUFFERPROC glad_glInvalidateSubFramebuffer; | ||
3237 | #define glInvalidateSubFramebuffer glad_glInvalidateSubFramebuffer | ||
3238 | typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTPROC)(GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); | ||
3239 | GLAPI PFNGLMULTIDRAWARRAYSINDIRECTPROC glad_glMultiDrawArraysIndirect; | ||
3240 | #define glMultiDrawArraysIndirect glad_glMultiDrawArraysIndirect | ||
3241 | typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC)(GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); | ||
3242 | GLAPI PFNGLMULTIDRAWELEMENTSINDIRECTPROC glad_glMultiDrawElementsIndirect; | ||
3243 | #define glMultiDrawElementsIndirect glad_glMultiDrawElementsIndirect | ||
3244 | typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC)(GLuint program, GLenum programInterface, GLenum pname, GLint *params); | ||
3245 | GLAPI PFNGLGETPROGRAMINTERFACEIVPROC glad_glGetProgramInterfaceiv; | ||
3246 | #define glGetProgramInterfaceiv glad_glGetProgramInterfaceiv | ||
3247 | typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC)(GLuint program, GLenum programInterface, const GLchar *name); | ||
3248 | GLAPI PFNGLGETPROGRAMRESOURCEINDEXPROC glad_glGetProgramResourceIndex; | ||
3249 | #define glGetProgramResourceIndex glad_glGetProgramResourceIndex | ||
3250 | typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC)(GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); | ||
3251 | GLAPI PFNGLGETPROGRAMRESOURCENAMEPROC glad_glGetProgramResourceName; | ||
3252 | #define glGetProgramResourceName glad_glGetProgramResourceName | ||
3253 | typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC)(GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); | ||
3254 | GLAPI PFNGLGETPROGRAMRESOURCEIVPROC glad_glGetProgramResourceiv; | ||
3255 | #define glGetProgramResourceiv glad_glGetProgramResourceiv | ||
3256 | typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC)(GLuint program, GLenum programInterface, const GLchar *name); | ||
3257 | GLAPI PFNGLGETPROGRAMRESOURCELOCATIONPROC glad_glGetProgramResourceLocation; | ||
3258 | #define glGetProgramResourceLocation glad_glGetProgramResourceLocation | ||
3259 | typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC)(GLuint program, GLenum programInterface, const GLchar *name); | ||
3260 | GLAPI PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC glad_glGetProgramResourceLocationIndex; | ||
3261 | #define glGetProgramResourceLocationIndex glad_glGetProgramResourceLocationIndex | ||
3262 | typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC)(GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); | ||
3263 | GLAPI PFNGLSHADERSTORAGEBLOCKBINDINGPROC glad_glShaderStorageBlockBinding; | ||
3264 | #define glShaderStorageBlockBinding glad_glShaderStorageBlockBinding | ||
3265 | typedef void (APIENTRYP PFNGLTEXBUFFERRANGEPROC)(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); | ||
3266 | GLAPI PFNGLTEXBUFFERRANGEPROC glad_glTexBufferRange; | ||
3267 | #define glTexBufferRange glad_glTexBufferRange | ||
3268 | typedef void (APIENTRYP PFNGLTEXSTORAGE2DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); | ||
3269 | GLAPI PFNGLTEXSTORAGE2DMULTISAMPLEPROC glad_glTexStorage2DMultisample; | ||
3270 | #define glTexStorage2DMultisample glad_glTexStorage2DMultisample | ||
3271 | typedef void (APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); | ||
3272 | GLAPI PFNGLTEXSTORAGE3DMULTISAMPLEPROC glad_glTexStorage3DMultisample; | ||
3273 | #define glTexStorage3DMultisample glad_glTexStorage3DMultisample | ||
3274 | typedef void (APIENTRYP PFNGLTEXTUREVIEWPROC)(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); | ||
3275 | GLAPI PFNGLTEXTUREVIEWPROC glad_glTextureView; | ||
3276 | #define glTextureView glad_glTextureView | ||
3277 | typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERPROC)(GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); | ||
3278 | GLAPI PFNGLBINDVERTEXBUFFERPROC glad_glBindVertexBuffer; | ||
3279 | #define glBindVertexBuffer glad_glBindVertexBuffer | ||
3280 | typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATPROC)(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); | ||
3281 | GLAPI PFNGLVERTEXATTRIBFORMATPROC glad_glVertexAttribFormat; | ||
3282 | #define glVertexAttribFormat glad_glVertexAttribFormat | ||
3283 | typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATPROC)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); | ||
3284 | GLAPI PFNGLVERTEXATTRIBIFORMATPROC glad_glVertexAttribIFormat; | ||
3285 | #define glVertexAttribIFormat glad_glVertexAttribIFormat | ||
3286 | typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATPROC)(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); | ||
3287 | GLAPI PFNGLVERTEXATTRIBLFORMATPROC glad_glVertexAttribLFormat; | ||
3288 | #define glVertexAttribLFormat glad_glVertexAttribLFormat | ||
3289 | typedef void (APIENTRYP PFNGLVERTEXATTRIBBINDINGPROC)(GLuint attribindex, GLuint bindingindex); | ||
3290 | GLAPI PFNGLVERTEXATTRIBBINDINGPROC glad_glVertexAttribBinding; | ||
3291 | #define glVertexAttribBinding glad_glVertexAttribBinding | ||
3292 | typedef void (APIENTRYP PFNGLVERTEXBINDINGDIVISORPROC)(GLuint bindingindex, GLuint divisor); | ||
3293 | GLAPI PFNGLVERTEXBINDINGDIVISORPROC glad_glVertexBindingDivisor; | ||
3294 | #define glVertexBindingDivisor glad_glVertexBindingDivisor | ||
3295 | typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); | ||
3296 | GLAPI PFNGLDEBUGMESSAGECONTROLPROC glad_glDebugMessageControl; | ||
3297 | #define glDebugMessageControl glad_glDebugMessageControl | ||
3298 | typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); | ||
3299 | GLAPI PFNGLDEBUGMESSAGEINSERTPROC glad_glDebugMessageInsert; | ||
3300 | #define glDebugMessageInsert glad_glDebugMessageInsert | ||
3301 | typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC)(GLDEBUGPROC callback, const void *userParam); | ||
3302 | GLAPI PFNGLDEBUGMESSAGECALLBACKPROC glad_glDebugMessageCallback; | ||
3303 | #define glDebugMessageCallback glad_glDebugMessageCallback | ||
3304 | typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC)(GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); | ||
3305 | GLAPI PFNGLGETDEBUGMESSAGELOGPROC glad_glGetDebugMessageLog; | ||
3306 | #define glGetDebugMessageLog glad_glGetDebugMessageLog | ||
3307 | typedef void (APIENTRYP PFNGLPUSHDEBUGGROUPPROC)(GLenum source, GLuint id, GLsizei length, const GLchar *message); | ||
3308 | GLAPI PFNGLPUSHDEBUGGROUPPROC glad_glPushDebugGroup; | ||
3309 | #define glPushDebugGroup glad_glPushDebugGroup | ||
3310 | typedef void (APIENTRYP PFNGLPOPDEBUGGROUPPROC)(void); | ||
3311 | GLAPI PFNGLPOPDEBUGGROUPPROC glad_glPopDebugGroup; | ||
3312 | #define glPopDebugGroup glad_glPopDebugGroup | ||
3313 | typedef void (APIENTRYP PFNGLOBJECTLABELPROC)(GLenum identifier, GLuint name, GLsizei length, const GLchar *label); | ||
3314 | GLAPI PFNGLOBJECTLABELPROC glad_glObjectLabel; | ||
3315 | #define glObjectLabel glad_glObjectLabel | ||
3316 | typedef void (APIENTRYP PFNGLGETOBJECTLABELPROC)(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); | ||
3317 | GLAPI PFNGLGETOBJECTLABELPROC glad_glGetObjectLabel; | ||
3318 | #define glGetObjectLabel glad_glGetObjectLabel | ||
3319 | typedef void (APIENTRYP PFNGLOBJECTPTRLABELPROC)(const void *ptr, GLsizei length, const GLchar *label); | ||
3320 | GLAPI PFNGLOBJECTPTRLABELPROC glad_glObjectPtrLabel; | ||
3321 | #define glObjectPtrLabel glad_glObjectPtrLabel | ||
3322 | typedef void (APIENTRYP PFNGLGETOBJECTPTRLABELPROC)(const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); | ||
3323 | GLAPI PFNGLGETOBJECTPTRLABELPROC glad_glGetObjectPtrLabel; | ||
3324 | #define glGetObjectPtrLabel glad_glGetObjectPtrLabel | ||
3325 | typedef void (APIENTRYP PFNGLGETPOINTERVPROC)(GLenum pname, void **params); | ||
3326 | GLAPI PFNGLGETPOINTERVPROC glad_glGetPointerv; | ||
3327 | #define glGetPointerv glad_glGetPointerv | ||
3328 | #endif | ||
3329 | #ifndef GL_VERSION_4_4 | ||
3330 | #define GL_VERSION_4_4 1 | ||
3331 | GLAPI int GLAD_GL_VERSION_4_4; | ||
3332 | typedef void (APIENTRYP PFNGLBUFFERSTORAGEPROC)(GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); | ||
3333 | GLAPI PFNGLBUFFERSTORAGEPROC glad_glBufferStorage; | ||
3334 | #define glBufferStorage glad_glBufferStorage | ||
3335 | typedef void (APIENTRYP PFNGLCLEARTEXIMAGEPROC)(GLuint texture, GLint level, GLenum format, GLenum type, const void *data); | ||
3336 | GLAPI PFNGLCLEARTEXIMAGEPROC glad_glClearTexImage; | ||
3337 | #define glClearTexImage glad_glClearTexImage | ||
3338 | typedef void (APIENTRYP PFNGLCLEARTEXSUBIMAGEPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); | ||
3339 | GLAPI PFNGLCLEARTEXSUBIMAGEPROC glad_glClearTexSubImage; | ||
3340 | #define glClearTexSubImage glad_glClearTexSubImage | ||
3341 | typedef void (APIENTRYP PFNGLBINDBUFFERSBASEPROC)(GLenum target, GLuint first, GLsizei count, const GLuint *buffers); | ||
3342 | GLAPI PFNGLBINDBUFFERSBASEPROC glad_glBindBuffersBase; | ||
3343 | #define glBindBuffersBase glad_glBindBuffersBase | ||
3344 | typedef void (APIENTRYP PFNGLBINDBUFFERSRANGEPROC)(GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); | ||
3345 | GLAPI PFNGLBINDBUFFERSRANGEPROC glad_glBindBuffersRange; | ||
3346 | #define glBindBuffersRange glad_glBindBuffersRange | ||
3347 | typedef void (APIENTRYP PFNGLBINDTEXTURESPROC)(GLuint first, GLsizei count, const GLuint *textures); | ||
3348 | GLAPI PFNGLBINDTEXTURESPROC glad_glBindTextures; | ||
3349 | #define glBindTextures glad_glBindTextures | ||
3350 | typedef void (APIENTRYP PFNGLBINDSAMPLERSPROC)(GLuint first, GLsizei count, const GLuint *samplers); | ||
3351 | GLAPI PFNGLBINDSAMPLERSPROC glad_glBindSamplers; | ||
3352 | #define glBindSamplers glad_glBindSamplers | ||
3353 | typedef void (APIENTRYP PFNGLBINDIMAGETEXTURESPROC)(GLuint first, GLsizei count, const GLuint *textures); | ||
3354 | GLAPI PFNGLBINDIMAGETEXTURESPROC glad_glBindImageTextures; | ||
3355 | #define glBindImageTextures glad_glBindImageTextures | ||
3356 | typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERSPROC)(GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); | ||
3357 | GLAPI PFNGLBINDVERTEXBUFFERSPROC glad_glBindVertexBuffers; | ||
3358 | #define glBindVertexBuffers glad_glBindVertexBuffers | ||
3359 | #endif | ||
3360 | #ifndef GL_VERSION_4_5 | ||
3361 | #define GL_VERSION_4_5 1 | ||
3362 | GLAPI int GLAD_GL_VERSION_4_5; | ||
3363 | typedef void (APIENTRYP PFNGLCLIPCONTROLPROC)(GLenum origin, GLenum depth); | ||
3364 | GLAPI PFNGLCLIPCONTROLPROC glad_glClipControl; | ||
3365 | #define glClipControl glad_glClipControl | ||
3366 | typedef void (APIENTRYP PFNGLCREATETRANSFORMFEEDBACKSPROC)(GLsizei n, GLuint *ids); | ||
3367 | GLAPI PFNGLCREATETRANSFORMFEEDBACKSPROC glad_glCreateTransformFeedbacks; | ||
3368 | #define glCreateTransformFeedbacks glad_glCreateTransformFeedbacks | ||
3369 | typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC)(GLuint xfb, GLuint index, GLuint buffer); | ||
3370 | GLAPI PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC glad_glTransformFeedbackBufferBase; | ||
3371 | #define glTransformFeedbackBufferBase glad_glTransformFeedbackBufferBase | ||
3372 | typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC)(GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); | ||
3373 | GLAPI PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC glad_glTransformFeedbackBufferRange; | ||
3374 | #define glTransformFeedbackBufferRange glad_glTransformFeedbackBufferRange | ||
3375 | typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKIVPROC)(GLuint xfb, GLenum pname, GLint *param); | ||
3376 | GLAPI PFNGLGETTRANSFORMFEEDBACKIVPROC glad_glGetTransformFeedbackiv; | ||
3377 | #define glGetTransformFeedbackiv glad_glGetTransformFeedbackiv | ||
3378 | typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC)(GLuint xfb, GLenum pname, GLuint index, GLint *param); | ||
3379 | GLAPI PFNGLGETTRANSFORMFEEDBACKI_VPROC glad_glGetTransformFeedbacki_v; | ||
3380 | #define glGetTransformFeedbacki_v glad_glGetTransformFeedbacki_v | ||
3381 | typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC)(GLuint xfb, GLenum pname, GLuint index, GLint64 *param); | ||
3382 | GLAPI PFNGLGETTRANSFORMFEEDBACKI64_VPROC glad_glGetTransformFeedbacki64_v; | ||
3383 | #define glGetTransformFeedbacki64_v glad_glGetTransformFeedbacki64_v | ||
3384 | typedef void (APIENTRYP PFNGLCREATEBUFFERSPROC)(GLsizei n, GLuint *buffers); | ||
3385 | GLAPI PFNGLCREATEBUFFERSPROC glad_glCreateBuffers; | ||
3386 | #define glCreateBuffers glad_glCreateBuffers | ||
3387 | typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEPROC)(GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); | ||
3388 | GLAPI PFNGLNAMEDBUFFERSTORAGEPROC glad_glNamedBufferStorage; | ||
3389 | #define glNamedBufferStorage glad_glNamedBufferStorage | ||
3390 | typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAPROC)(GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); | ||
3391 | GLAPI PFNGLNAMEDBUFFERDATAPROC glad_glNamedBufferData; | ||
3392 | #define glNamedBufferData glad_glNamedBufferData | ||
3393 | typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAPROC)(GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); | ||
3394 | GLAPI PFNGLNAMEDBUFFERSUBDATAPROC glad_glNamedBufferSubData; | ||
3395 | #define glNamedBufferSubData glad_glNamedBufferSubData | ||
3396 | typedef void (APIENTRYP PFNGLCOPYNAMEDBUFFERSUBDATAPROC)(GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); | ||
3397 | GLAPI PFNGLCOPYNAMEDBUFFERSUBDATAPROC glad_glCopyNamedBufferSubData; | ||
3398 | #define glCopyNamedBufferSubData glad_glCopyNamedBufferSubData | ||
3399 | typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAPROC)(GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); | ||
3400 | GLAPI PFNGLCLEARNAMEDBUFFERDATAPROC glad_glClearNamedBufferData; | ||
3401 | #define glClearNamedBufferData glad_glClearNamedBufferData | ||
3402 | typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAPROC)(GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); | ||
3403 | GLAPI PFNGLCLEARNAMEDBUFFERSUBDATAPROC glad_glClearNamedBufferSubData; | ||
3404 | #define glClearNamedBufferSubData glad_glClearNamedBufferSubData | ||
3405 | typedef void * (APIENTRYP PFNGLMAPNAMEDBUFFERPROC)(GLuint buffer, GLenum access); | ||
3406 | GLAPI PFNGLMAPNAMEDBUFFERPROC glad_glMapNamedBuffer; | ||
3407 | #define glMapNamedBuffer glad_glMapNamedBuffer | ||
3408 | typedef void * (APIENTRYP PFNGLMAPNAMEDBUFFERRANGEPROC)(GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); | ||
3409 | GLAPI PFNGLMAPNAMEDBUFFERRANGEPROC glad_glMapNamedBufferRange; | ||
3410 | #define glMapNamedBufferRange glad_glMapNamedBufferRange | ||
3411 | typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFERPROC)(GLuint buffer); | ||
3412 | GLAPI PFNGLUNMAPNAMEDBUFFERPROC glad_glUnmapNamedBuffer; | ||
3413 | #define glUnmapNamedBuffer glad_glUnmapNamedBuffer | ||
3414 | typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC)(GLuint buffer, GLintptr offset, GLsizeiptr length); | ||
3415 | GLAPI PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC glad_glFlushMappedNamedBufferRange; | ||
3416 | #define glFlushMappedNamedBufferRange glad_glFlushMappedNamedBufferRange | ||
3417 | typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVPROC)(GLuint buffer, GLenum pname, GLint *params); | ||
3418 | GLAPI PFNGLGETNAMEDBUFFERPARAMETERIVPROC glad_glGetNamedBufferParameteriv; | ||
3419 | #define glGetNamedBufferParameteriv glad_glGetNamedBufferParameteriv | ||
3420 | typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERI64VPROC)(GLuint buffer, GLenum pname, GLint64 *params); | ||
3421 | GLAPI PFNGLGETNAMEDBUFFERPARAMETERI64VPROC glad_glGetNamedBufferParameteri64v; | ||
3422 | #define glGetNamedBufferParameteri64v glad_glGetNamedBufferParameteri64v | ||
3423 | typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVPROC)(GLuint buffer, GLenum pname, void **params); | ||
3424 | GLAPI PFNGLGETNAMEDBUFFERPOINTERVPROC glad_glGetNamedBufferPointerv; | ||
3425 | #define glGetNamedBufferPointerv glad_glGetNamedBufferPointerv | ||
3426 | typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAPROC)(GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); | ||
3427 | GLAPI PFNGLGETNAMEDBUFFERSUBDATAPROC glad_glGetNamedBufferSubData; | ||
3428 | #define glGetNamedBufferSubData glad_glGetNamedBufferSubData | ||
3429 | typedef void (APIENTRYP PFNGLCREATEFRAMEBUFFERSPROC)(GLsizei n, GLuint *framebuffers); | ||
3430 | GLAPI PFNGLCREATEFRAMEBUFFERSPROC glad_glCreateFramebuffers; | ||
3431 | #define glCreateFramebuffers glad_glCreateFramebuffers | ||
3432 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC)(GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); | ||
3433 | GLAPI PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC glad_glNamedFramebufferRenderbuffer; | ||
3434 | #define glNamedFramebufferRenderbuffer glad_glNamedFramebufferRenderbuffer | ||
3435 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC)(GLuint framebuffer, GLenum pname, GLint param); | ||
3436 | GLAPI PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC glad_glNamedFramebufferParameteri; | ||
3437 | #define glNamedFramebufferParameteri glad_glNamedFramebufferParameteri | ||
3438 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREPROC)(GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); | ||
3439 | GLAPI PFNGLNAMEDFRAMEBUFFERTEXTUREPROC glad_glNamedFramebufferTexture; | ||
3440 | #define glNamedFramebufferTexture glad_glNamedFramebufferTexture | ||
3441 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC)(GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); | ||
3442 | GLAPI PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC glad_glNamedFramebufferTextureLayer; | ||
3443 | #define glNamedFramebufferTextureLayer glad_glNamedFramebufferTextureLayer | ||
3444 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC)(GLuint framebuffer, GLenum buf); | ||
3445 | GLAPI PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC glad_glNamedFramebufferDrawBuffer; | ||
3446 | #define glNamedFramebufferDrawBuffer glad_glNamedFramebufferDrawBuffer | ||
3447 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC)(GLuint framebuffer, GLsizei n, const GLenum *bufs); | ||
3448 | GLAPI PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC glad_glNamedFramebufferDrawBuffers; | ||
3449 | #define glNamedFramebufferDrawBuffers glad_glNamedFramebufferDrawBuffers | ||
3450 | typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC)(GLuint framebuffer, GLenum src); | ||
3451 | GLAPI PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC glad_glNamedFramebufferReadBuffer; | ||
3452 | #define glNamedFramebufferReadBuffer glad_glNamedFramebufferReadBuffer | ||
3453 | typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC)(GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); | ||
3454 | GLAPI PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC glad_glInvalidateNamedFramebufferData; | ||
3455 | #define glInvalidateNamedFramebufferData glad_glInvalidateNamedFramebufferData | ||
3456 | typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC)(GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); | ||
3457 | GLAPI PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC glad_glInvalidateNamedFramebufferSubData; | ||
3458 | #define glInvalidateNamedFramebufferSubData glad_glInvalidateNamedFramebufferSubData | ||
3459 | typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERIVPROC)(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); | ||
3460 | GLAPI PFNGLCLEARNAMEDFRAMEBUFFERIVPROC glad_glClearNamedFramebufferiv; | ||
3461 | #define glClearNamedFramebufferiv glad_glClearNamedFramebufferiv | ||
3462 | typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC)(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); | ||
3463 | GLAPI PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC glad_glClearNamedFramebufferuiv; | ||
3464 | #define glClearNamedFramebufferuiv glad_glClearNamedFramebufferuiv | ||
3465 | typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFVPROC)(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); | ||
3466 | GLAPI PFNGLCLEARNAMEDFRAMEBUFFERFVPROC glad_glClearNamedFramebufferfv; | ||
3467 | #define glClearNamedFramebufferfv glad_glClearNamedFramebufferfv | ||
3468 | typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFIPROC)(GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); | ||
3469 | GLAPI PFNGLCLEARNAMEDFRAMEBUFFERFIPROC glad_glClearNamedFramebufferfi; | ||
3470 | #define glClearNamedFramebufferfi glad_glClearNamedFramebufferfi | ||
3471 | typedef void (APIENTRYP PFNGLBLITNAMEDFRAMEBUFFERPROC)(GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); | ||
3472 | GLAPI PFNGLBLITNAMEDFRAMEBUFFERPROC glad_glBlitNamedFramebuffer; | ||
3473 | #define glBlitNamedFramebuffer glad_glBlitNamedFramebuffer | ||
3474 | typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC)(GLuint framebuffer, GLenum target); | ||
3475 | GLAPI PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC glad_glCheckNamedFramebufferStatus; | ||
3476 | #define glCheckNamedFramebufferStatus glad_glCheckNamedFramebufferStatus | ||
3477 | typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC)(GLuint framebuffer, GLenum pname, GLint *param); | ||
3478 | GLAPI PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC glad_glGetNamedFramebufferParameteriv; | ||
3479 | #define glGetNamedFramebufferParameteriv glad_glGetNamedFramebufferParameteriv | ||
3480 | typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC)(GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); | ||
3481 | GLAPI PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetNamedFramebufferAttachmentParameteriv; | ||
3482 | #define glGetNamedFramebufferAttachmentParameteriv glad_glGetNamedFramebufferAttachmentParameteriv | ||
3483 | typedef void (APIENTRYP PFNGLCREATERENDERBUFFERSPROC)(GLsizei n, GLuint *renderbuffers); | ||
3484 | GLAPI PFNGLCREATERENDERBUFFERSPROC glad_glCreateRenderbuffers; | ||
3485 | #define glCreateRenderbuffers glad_glCreateRenderbuffers | ||
3486 | typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEPROC)(GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); | ||
3487 | GLAPI PFNGLNAMEDRENDERBUFFERSTORAGEPROC glad_glNamedRenderbufferStorage; | ||
3488 | #define glNamedRenderbufferStorage glad_glNamedRenderbufferStorage | ||
3489 | typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC)(GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); | ||
3490 | GLAPI PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glNamedRenderbufferStorageMultisample; | ||
3491 | #define glNamedRenderbufferStorageMultisample glad_glNamedRenderbufferStorageMultisample | ||
3492 | typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC)(GLuint renderbuffer, GLenum pname, GLint *params); | ||
3493 | GLAPI PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC glad_glGetNamedRenderbufferParameteriv; | ||
3494 | #define glGetNamedRenderbufferParameteriv glad_glGetNamedRenderbufferParameteriv | ||
3495 | typedef void (APIENTRYP PFNGLCREATETEXTURESPROC)(GLenum target, GLsizei n, GLuint *textures); | ||
3496 | GLAPI PFNGLCREATETEXTURESPROC glad_glCreateTextures; | ||
3497 | #define glCreateTextures glad_glCreateTextures | ||
3498 | typedef void (APIENTRYP PFNGLTEXTUREBUFFERPROC)(GLuint texture, GLenum internalformat, GLuint buffer); | ||
3499 | GLAPI PFNGLTEXTUREBUFFERPROC glad_glTextureBuffer; | ||
3500 | #define glTextureBuffer glad_glTextureBuffer | ||
3501 | typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEPROC)(GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); | ||
3502 | GLAPI PFNGLTEXTUREBUFFERRANGEPROC glad_glTextureBufferRange; | ||
3503 | #define glTextureBufferRange glad_glTextureBufferRange | ||
3504 | typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DPROC)(GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); | ||
3505 | GLAPI PFNGLTEXTURESTORAGE1DPROC glad_glTextureStorage1D; | ||
3506 | #define glTextureStorage1D glad_glTextureStorage1D | ||
3507 | typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DPROC)(GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); | ||
3508 | GLAPI PFNGLTEXTURESTORAGE2DPROC glad_glTextureStorage2D; | ||
3509 | #define glTextureStorage2D glad_glTextureStorage2D | ||
3510 | typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DPROC)(GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); | ||
3511 | GLAPI PFNGLTEXTURESTORAGE3DPROC glad_glTextureStorage3D; | ||
3512 | #define glTextureStorage3D glad_glTextureStorage3D | ||
3513 | typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC)(GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); | ||
3514 | GLAPI PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC glad_glTextureStorage2DMultisample; | ||
3515 | #define glTextureStorage2DMultisample glad_glTextureStorage2DMultisample | ||
3516 | typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC)(GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); | ||
3517 | GLAPI PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC glad_glTextureStorage3DMultisample; | ||
3518 | #define glTextureStorage3DMultisample glad_glTextureStorage3DMultisample | ||
3519 | typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DPROC)(GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); | ||
3520 | GLAPI PFNGLTEXTURESUBIMAGE1DPROC glad_glTextureSubImage1D; | ||
3521 | #define glTextureSubImage1D glad_glTextureSubImage1D | ||
3522 | typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); | ||
3523 | GLAPI PFNGLTEXTURESUBIMAGE2DPROC glad_glTextureSubImage2D; | ||
3524 | #define glTextureSubImage2D glad_glTextureSubImage2D | ||
3525 | typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); | ||
3526 | GLAPI PFNGLTEXTURESUBIMAGE3DPROC glad_glTextureSubImage3D; | ||
3527 | #define glTextureSubImage3D glad_glTextureSubImage3D | ||
3528 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC)(GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); | ||
3529 | GLAPI PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC glad_glCompressedTextureSubImage1D; | ||
3530 | #define glCompressedTextureSubImage1D glad_glCompressedTextureSubImage1D | ||
3531 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); | ||
3532 | GLAPI PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC glad_glCompressedTextureSubImage2D; | ||
3533 | #define glCompressedTextureSubImage2D glad_glCompressedTextureSubImage2D | ||
3534 | typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); | ||
3535 | GLAPI PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC glad_glCompressedTextureSubImage3D; | ||
3536 | #define glCompressedTextureSubImage3D glad_glCompressedTextureSubImage3D | ||
3537 | typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DPROC)(GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); | ||
3538 | GLAPI PFNGLCOPYTEXTURESUBIMAGE1DPROC glad_glCopyTextureSubImage1D; | ||
3539 | #define glCopyTextureSubImage1D glad_glCopyTextureSubImage1D | ||
3540 | typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); | ||
3541 | GLAPI PFNGLCOPYTEXTURESUBIMAGE2DPROC glad_glCopyTextureSubImage2D; | ||
3542 | #define glCopyTextureSubImage2D glad_glCopyTextureSubImage2D | ||
3543 | typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); | ||
3544 | GLAPI PFNGLCOPYTEXTURESUBIMAGE3DPROC glad_glCopyTextureSubImage3D; | ||
3545 | #define glCopyTextureSubImage3D glad_glCopyTextureSubImage3D | ||
3546 | typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFPROC)(GLuint texture, GLenum pname, GLfloat param); | ||
3547 | GLAPI PFNGLTEXTUREPARAMETERFPROC glad_glTextureParameterf; | ||
3548 | #define glTextureParameterf glad_glTextureParameterf | ||
3549 | typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVPROC)(GLuint texture, GLenum pname, const GLfloat *param); | ||
3550 | GLAPI PFNGLTEXTUREPARAMETERFVPROC glad_glTextureParameterfv; | ||
3551 | #define glTextureParameterfv glad_glTextureParameterfv | ||
3552 | typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIPROC)(GLuint texture, GLenum pname, GLint param); | ||
3553 | GLAPI PFNGLTEXTUREPARAMETERIPROC glad_glTextureParameteri; | ||
3554 | #define glTextureParameteri glad_glTextureParameteri | ||
3555 | typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVPROC)(GLuint texture, GLenum pname, const GLint *params); | ||
3556 | GLAPI PFNGLTEXTUREPARAMETERIIVPROC glad_glTextureParameterIiv; | ||
3557 | #define glTextureParameterIiv glad_glTextureParameterIiv | ||
3558 | typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVPROC)(GLuint texture, GLenum pname, const GLuint *params); | ||
3559 | GLAPI PFNGLTEXTUREPARAMETERIUIVPROC glad_glTextureParameterIuiv; | ||
3560 | #define glTextureParameterIuiv glad_glTextureParameterIuiv | ||
3561 | typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVPROC)(GLuint texture, GLenum pname, const GLint *param); | ||
3562 | GLAPI PFNGLTEXTUREPARAMETERIVPROC glad_glTextureParameteriv; | ||
3563 | #define glTextureParameteriv glad_glTextureParameteriv | ||
3564 | typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPPROC)(GLuint texture); | ||
3565 | GLAPI PFNGLGENERATETEXTUREMIPMAPPROC glad_glGenerateTextureMipmap; | ||
3566 | #define glGenerateTextureMipmap glad_glGenerateTextureMipmap | ||
3567 | typedef void (APIENTRYP PFNGLBINDTEXTUREUNITPROC)(GLuint unit, GLuint texture); | ||
3568 | GLAPI PFNGLBINDTEXTUREUNITPROC glad_glBindTextureUnit; | ||
3569 | #define glBindTextureUnit glad_glBindTextureUnit | ||
3570 | typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEPROC)(GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); | ||
3571 | GLAPI PFNGLGETTEXTUREIMAGEPROC glad_glGetTextureImage; | ||
3572 | #define glGetTextureImage glad_glGetTextureImage | ||
3573 | typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC)(GLuint texture, GLint level, GLsizei bufSize, void *pixels); | ||
3574 | GLAPI PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC glad_glGetCompressedTextureImage; | ||
3575 | #define glGetCompressedTextureImage glad_glGetCompressedTextureImage | ||
3576 | typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVPROC)(GLuint texture, GLint level, GLenum pname, GLfloat *params); | ||
3577 | GLAPI PFNGLGETTEXTURELEVELPARAMETERFVPROC glad_glGetTextureLevelParameterfv; | ||
3578 | #define glGetTextureLevelParameterfv glad_glGetTextureLevelParameterfv | ||
3579 | typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVPROC)(GLuint texture, GLint level, GLenum pname, GLint *params); | ||
3580 | GLAPI PFNGLGETTEXTURELEVELPARAMETERIVPROC glad_glGetTextureLevelParameteriv; | ||
3581 | #define glGetTextureLevelParameteriv glad_glGetTextureLevelParameteriv | ||
3582 | typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVPROC)(GLuint texture, GLenum pname, GLfloat *params); | ||
3583 | GLAPI PFNGLGETTEXTUREPARAMETERFVPROC glad_glGetTextureParameterfv; | ||
3584 | #define glGetTextureParameterfv glad_glGetTextureParameterfv | ||
3585 | typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVPROC)(GLuint texture, GLenum pname, GLint *params); | ||
3586 | GLAPI PFNGLGETTEXTUREPARAMETERIIVPROC glad_glGetTextureParameterIiv; | ||
3587 | #define glGetTextureParameterIiv glad_glGetTextureParameterIiv | ||
3588 | typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVPROC)(GLuint texture, GLenum pname, GLuint *params); | ||
3589 | GLAPI PFNGLGETTEXTUREPARAMETERIUIVPROC glad_glGetTextureParameterIuiv; | ||
3590 | #define glGetTextureParameterIuiv glad_glGetTextureParameterIuiv | ||
3591 | typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVPROC)(GLuint texture, GLenum pname, GLint *params); | ||
3592 | GLAPI PFNGLGETTEXTUREPARAMETERIVPROC glad_glGetTextureParameteriv; | ||
3593 | #define glGetTextureParameteriv glad_glGetTextureParameteriv | ||
3594 | typedef void (APIENTRYP PFNGLCREATEVERTEXARRAYSPROC)(GLsizei n, GLuint *arrays); | ||
3595 | GLAPI PFNGLCREATEVERTEXARRAYSPROC glad_glCreateVertexArrays; | ||
3596 | #define glCreateVertexArrays glad_glCreateVertexArrays | ||
3597 | typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBPROC)(GLuint vaobj, GLuint index); | ||
3598 | GLAPI PFNGLDISABLEVERTEXARRAYATTRIBPROC glad_glDisableVertexArrayAttrib; | ||
3599 | #define glDisableVertexArrayAttrib glad_glDisableVertexArrayAttrib | ||
3600 | typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBPROC)(GLuint vaobj, GLuint index); | ||
3601 | GLAPI PFNGLENABLEVERTEXARRAYATTRIBPROC glad_glEnableVertexArrayAttrib; | ||
3602 | #define glEnableVertexArrayAttrib glad_glEnableVertexArrayAttrib | ||
3603 | typedef void (APIENTRYP PFNGLVERTEXARRAYELEMENTBUFFERPROC)(GLuint vaobj, GLuint buffer); | ||
3604 | GLAPI PFNGLVERTEXARRAYELEMENTBUFFERPROC glad_glVertexArrayElementBuffer; | ||
3605 | #define glVertexArrayElementBuffer glad_glVertexArrayElementBuffer | ||
3606 | typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERPROC)(GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); | ||
3607 | GLAPI PFNGLVERTEXARRAYVERTEXBUFFERPROC glad_glVertexArrayVertexBuffer; | ||
3608 | #define glVertexArrayVertexBuffer glad_glVertexArrayVertexBuffer | ||
3609 | typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERSPROC)(GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); | ||
3610 | GLAPI PFNGLVERTEXARRAYVERTEXBUFFERSPROC glad_glVertexArrayVertexBuffers; | ||
3611 | #define glVertexArrayVertexBuffers glad_glVertexArrayVertexBuffers | ||
3612 | typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBBINDINGPROC)(GLuint vaobj, GLuint attribindex, GLuint bindingindex); | ||
3613 | GLAPI PFNGLVERTEXARRAYATTRIBBINDINGPROC glad_glVertexArrayAttribBinding; | ||
3614 | #define glVertexArrayAttribBinding glad_glVertexArrayAttribBinding | ||
3615 | typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBFORMATPROC)(GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); | ||
3616 | GLAPI PFNGLVERTEXARRAYATTRIBFORMATPROC glad_glVertexArrayAttribFormat; | ||
3617 | #define glVertexArrayAttribFormat glad_glVertexArrayAttribFormat | ||
3618 | typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBIFORMATPROC)(GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); | ||
3619 | GLAPI PFNGLVERTEXARRAYATTRIBIFORMATPROC glad_glVertexArrayAttribIFormat; | ||
3620 | #define glVertexArrayAttribIFormat glad_glVertexArrayAttribIFormat | ||
3621 | typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBLFORMATPROC)(GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); | ||
3622 | GLAPI PFNGLVERTEXARRAYATTRIBLFORMATPROC glad_glVertexArrayAttribLFormat; | ||
3623 | #define glVertexArrayAttribLFormat glad_glVertexArrayAttribLFormat | ||
3624 | typedef void (APIENTRYP PFNGLVERTEXARRAYBINDINGDIVISORPROC)(GLuint vaobj, GLuint bindingindex, GLuint divisor); | ||
3625 | GLAPI PFNGLVERTEXARRAYBINDINGDIVISORPROC glad_glVertexArrayBindingDivisor; | ||
3626 | #define glVertexArrayBindingDivisor glad_glVertexArrayBindingDivisor | ||
3627 | typedef void (APIENTRYP PFNGLGETVERTEXARRAYIVPROC)(GLuint vaobj, GLenum pname, GLint *param); | ||
3628 | GLAPI PFNGLGETVERTEXARRAYIVPROC glad_glGetVertexArrayiv; | ||
3629 | #define glGetVertexArrayiv glad_glGetVertexArrayiv | ||
3630 | typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXEDIVPROC)(GLuint vaobj, GLuint index, GLenum pname, GLint *param); | ||
3631 | GLAPI PFNGLGETVERTEXARRAYINDEXEDIVPROC glad_glGetVertexArrayIndexediv; | ||
3632 | #define glGetVertexArrayIndexediv glad_glGetVertexArrayIndexediv | ||
3633 | typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXED64IVPROC)(GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); | ||
3634 | GLAPI PFNGLGETVERTEXARRAYINDEXED64IVPROC glad_glGetVertexArrayIndexed64iv; | ||
3635 | #define glGetVertexArrayIndexed64iv glad_glGetVertexArrayIndexed64iv | ||
3636 | typedef void (APIENTRYP PFNGLCREATESAMPLERSPROC)(GLsizei n, GLuint *samplers); | ||
3637 | GLAPI PFNGLCREATESAMPLERSPROC glad_glCreateSamplers; | ||
3638 | #define glCreateSamplers glad_glCreateSamplers | ||
3639 | typedef void (APIENTRYP PFNGLCREATEPROGRAMPIPELINESPROC)(GLsizei n, GLuint *pipelines); | ||
3640 | GLAPI PFNGLCREATEPROGRAMPIPELINESPROC glad_glCreateProgramPipelines; | ||
3641 | #define glCreateProgramPipelines glad_glCreateProgramPipelines | ||
3642 | typedef void (APIENTRYP PFNGLCREATEQUERIESPROC)(GLenum target, GLsizei n, GLuint *ids); | ||
3643 | GLAPI PFNGLCREATEQUERIESPROC glad_glCreateQueries; | ||
3644 | #define glCreateQueries glad_glCreateQueries | ||
3645 | typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTI64VPROC)(GLuint id, GLuint buffer, GLenum pname, GLintptr offset); | ||
3646 | GLAPI PFNGLGETQUERYBUFFEROBJECTI64VPROC glad_glGetQueryBufferObjecti64v; | ||
3647 | #define glGetQueryBufferObjecti64v glad_glGetQueryBufferObjecti64v | ||
3648 | typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTIVPROC)(GLuint id, GLuint buffer, GLenum pname, GLintptr offset); | ||
3649 | GLAPI PFNGLGETQUERYBUFFEROBJECTIVPROC glad_glGetQueryBufferObjectiv; | ||
3650 | #define glGetQueryBufferObjectiv glad_glGetQueryBufferObjectiv | ||
3651 | typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUI64VPROC)(GLuint id, GLuint buffer, GLenum pname, GLintptr offset); | ||
3652 | GLAPI PFNGLGETQUERYBUFFEROBJECTUI64VPROC glad_glGetQueryBufferObjectui64v; | ||
3653 | #define glGetQueryBufferObjectui64v glad_glGetQueryBufferObjectui64v | ||
3654 | typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUIVPROC)(GLuint id, GLuint buffer, GLenum pname, GLintptr offset); | ||
3655 | GLAPI PFNGLGETQUERYBUFFEROBJECTUIVPROC glad_glGetQueryBufferObjectuiv; | ||
3656 | #define glGetQueryBufferObjectuiv glad_glGetQueryBufferObjectuiv | ||
3657 | typedef void (APIENTRYP PFNGLMEMORYBARRIERBYREGIONPROC)(GLbitfield barriers); | ||
3658 | GLAPI PFNGLMEMORYBARRIERBYREGIONPROC glad_glMemoryBarrierByRegion; | ||
3659 | #define glMemoryBarrierByRegion glad_glMemoryBarrierByRegion | ||
3660 | typedef void (APIENTRYP PFNGLGETTEXTURESUBIMAGEPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); | ||
3661 | GLAPI PFNGLGETTEXTURESUBIMAGEPROC glad_glGetTextureSubImage; | ||
3662 | #define glGetTextureSubImage glad_glGetTextureSubImage | ||
3663 | typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC)(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); | ||
3664 | GLAPI PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC glad_glGetCompressedTextureSubImage; | ||
3665 | #define glGetCompressedTextureSubImage glad_glGetCompressedTextureSubImage | ||
3666 | typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSPROC)(void); | ||
3667 | GLAPI PFNGLGETGRAPHICSRESETSTATUSPROC glad_glGetGraphicsResetStatus; | ||
3668 | #define glGetGraphicsResetStatus glad_glGetGraphicsResetStatus | ||
3669 | typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEPROC)(GLenum target, GLint lod, GLsizei bufSize, void *pixels); | ||
3670 | GLAPI PFNGLGETNCOMPRESSEDTEXIMAGEPROC glad_glGetnCompressedTexImage; | ||
3671 | #define glGetnCompressedTexImage glad_glGetnCompressedTexImage | ||
3672 | typedef void (APIENTRYP PFNGLGETNTEXIMAGEPROC)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); | ||
3673 | GLAPI PFNGLGETNTEXIMAGEPROC glad_glGetnTexImage; | ||
3674 | #define glGetnTexImage glad_glGetnTexImage | ||
3675 | typedef void (APIENTRYP PFNGLGETNUNIFORMDVPROC)(GLuint program, GLint location, GLsizei bufSize, GLdouble *params); | ||
3676 | GLAPI PFNGLGETNUNIFORMDVPROC glad_glGetnUniformdv; | ||
3677 | #define glGetnUniformdv glad_glGetnUniformdv | ||
3678 | typedef void (APIENTRYP PFNGLGETNUNIFORMFVPROC)(GLuint program, GLint location, GLsizei bufSize, GLfloat *params); | ||
3679 | GLAPI PFNGLGETNUNIFORMFVPROC glad_glGetnUniformfv; | ||
3680 | #define glGetnUniformfv glad_glGetnUniformfv | ||
3681 | typedef void (APIENTRYP PFNGLGETNUNIFORMIVPROC)(GLuint program, GLint location, GLsizei bufSize, GLint *params); | ||
3682 | GLAPI PFNGLGETNUNIFORMIVPROC glad_glGetnUniformiv; | ||
3683 | #define glGetnUniformiv glad_glGetnUniformiv | ||
3684 | typedef void (APIENTRYP PFNGLGETNUNIFORMUIVPROC)(GLuint program, GLint location, GLsizei bufSize, GLuint *params); | ||
3685 | GLAPI PFNGLGETNUNIFORMUIVPROC glad_glGetnUniformuiv; | ||
3686 | #define glGetnUniformuiv glad_glGetnUniformuiv | ||
3687 | typedef void (APIENTRYP PFNGLREADNPIXELSPROC)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); | ||
3688 | GLAPI PFNGLREADNPIXELSPROC glad_glReadnPixels; | ||
3689 | #define glReadnPixels glad_glReadnPixels | ||
3690 | typedef void (APIENTRYP PFNGLGETNMAPDVPROC)(GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); | ||
3691 | GLAPI PFNGLGETNMAPDVPROC glad_glGetnMapdv; | ||
3692 | #define glGetnMapdv glad_glGetnMapdv | ||
3693 | typedef void (APIENTRYP PFNGLGETNMAPFVPROC)(GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); | ||
3694 | GLAPI PFNGLGETNMAPFVPROC glad_glGetnMapfv; | ||
3695 | #define glGetnMapfv glad_glGetnMapfv | ||
3696 | typedef void (APIENTRYP PFNGLGETNMAPIVPROC)(GLenum target, GLenum query, GLsizei bufSize, GLint *v); | ||
3697 | GLAPI PFNGLGETNMAPIVPROC glad_glGetnMapiv; | ||
3698 | #define glGetnMapiv glad_glGetnMapiv | ||
3699 | typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC)(GLenum map, GLsizei bufSize, GLfloat *values); | ||
3700 | GLAPI PFNGLGETNPIXELMAPFVPROC glad_glGetnPixelMapfv; | ||
3701 | #define glGetnPixelMapfv glad_glGetnPixelMapfv | ||
3702 | typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC)(GLenum map, GLsizei bufSize, GLuint *values); | ||
3703 | GLAPI PFNGLGETNPIXELMAPUIVPROC glad_glGetnPixelMapuiv; | ||
3704 | #define glGetnPixelMapuiv glad_glGetnPixelMapuiv | ||
3705 | typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVPROC)(GLenum map, GLsizei bufSize, GLushort *values); | ||
3706 | GLAPI PFNGLGETNPIXELMAPUSVPROC glad_glGetnPixelMapusv; | ||
3707 | #define glGetnPixelMapusv glad_glGetnPixelMapusv | ||
3708 | typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEPROC)(GLsizei bufSize, GLubyte *pattern); | ||
3709 | GLAPI PFNGLGETNPOLYGONSTIPPLEPROC glad_glGetnPolygonStipple; | ||
3710 | #define glGetnPolygonStipple glad_glGetnPolygonStipple | ||
3711 | typedef void (APIENTRYP PFNGLGETNCOLORTABLEPROC)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); | ||
3712 | GLAPI PFNGLGETNCOLORTABLEPROC glad_glGetnColorTable; | ||
3713 | #define glGetnColorTable glad_glGetnColorTable | ||
3714 | typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERPROC)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); | ||
3715 | GLAPI PFNGLGETNCONVOLUTIONFILTERPROC glad_glGetnConvolutionFilter; | ||
3716 | #define glGetnConvolutionFilter glad_glGetnConvolutionFilter | ||
3717 | typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERPROC)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); | ||
3718 | GLAPI PFNGLGETNSEPARABLEFILTERPROC glad_glGetnSeparableFilter; | ||
3719 | #define glGetnSeparableFilter glad_glGetnSeparableFilter | ||
3720 | typedef void (APIENTRYP PFNGLGETNHISTOGRAMPROC)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); | ||
3721 | GLAPI PFNGLGETNHISTOGRAMPROC glad_glGetnHistogram; | ||
3722 | #define glGetnHistogram glad_glGetnHistogram | ||
3723 | typedef void (APIENTRYP PFNGLGETNMINMAXPROC)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); | ||
3724 | GLAPI PFNGLGETNMINMAXPROC glad_glGetnMinmax; | ||
3725 | #define glGetnMinmax glad_glGetnMinmax | ||
3726 | typedef void (APIENTRYP PFNGLTEXTUREBARRIERPROC)(void); | ||
3727 | GLAPI PFNGLTEXTUREBARRIERPROC glad_glTextureBarrier; | ||
3728 | #define glTextureBarrier glad_glTextureBarrier | ||
3729 | #endif | ||
3730 | #ifndef GL_VERSION_4_6 | ||
3731 | #define GL_VERSION_4_6 1 | ||
3732 | GLAPI int GLAD_GL_VERSION_4_6; | ||
3733 | typedef void (APIENTRYP PFNGLSPECIALIZESHADERPROC)(GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); | ||
3734 | GLAPI PFNGLSPECIALIZESHADERPROC glad_glSpecializeShader; | ||
3735 | #define glSpecializeShader glad_glSpecializeShader | ||
3736 | typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC)(GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); | ||
3737 | GLAPI PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC glad_glMultiDrawArraysIndirectCount; | ||
3738 | #define glMultiDrawArraysIndirectCount glad_glMultiDrawArraysIndirectCount | ||
3739 | typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC)(GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); | ||
3740 | GLAPI PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC glad_glMultiDrawElementsIndirectCount; | ||
3741 | #define glMultiDrawElementsIndirectCount glad_glMultiDrawElementsIndirectCount | ||
3742 | typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPPROC)(GLfloat factor, GLfloat units, GLfloat clamp); | ||
3743 | GLAPI PFNGLPOLYGONOFFSETCLAMPPROC glad_glPolygonOffsetClamp; | ||
3744 | #define glPolygonOffsetClamp glad_glPolygonOffsetClamp | ||
3745 | #endif | ||
3746 | #ifndef GL_ES_VERSION_2_0 | ||
3747 | #define GL_ES_VERSION_2_0 1 | ||
3748 | GLAPI int GLAD_GL_ES_VERSION_2_0; | ||
3749 | #endif | ||
3750 | #ifndef GL_ES_VERSION_3_0 | ||
3751 | #define GL_ES_VERSION_3_0 1 | ||
3752 | GLAPI int GLAD_GL_ES_VERSION_3_0; | ||
3753 | #endif | ||
3754 | #ifndef GL_ES_VERSION_3_1 | ||
3755 | #define GL_ES_VERSION_3_1 1 | ||
3756 | GLAPI int GLAD_GL_ES_VERSION_3_1; | ||
3757 | #endif | ||
3758 | #ifndef GL_ES_VERSION_3_2 | ||
3759 | #define GL_ES_VERSION_3_2 1 | ||
3760 | GLAPI int GLAD_GL_ES_VERSION_3_2; | ||
3761 | typedef void (APIENTRYP PFNGLBLENDBARRIERPROC)(void); | ||
3762 | GLAPI PFNGLBLENDBARRIERPROC glad_glBlendBarrier; | ||
3763 | #define glBlendBarrier glad_glBlendBarrier | ||
3764 | typedef void (APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXPROC)(GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); | ||
3765 | GLAPI PFNGLPRIMITIVEBOUNDINGBOXPROC glad_glPrimitiveBoundingBox; | ||
3766 | #define glPrimitiveBoundingBox glad_glPrimitiveBoundingBox | ||
3767 | #endif | ||
3768 | |||
3769 | #ifdef __cplusplus | ||
3770 | } | ||
3771 | #endif | ||
3772 | |||
3773 | #endif | ||
diff --git a/gfx/contrib/glad/src/glad.c b/gfx/contrib/glad/src/glad.c new file mode 100644 index 0000000..4a3cf51 --- /dev/null +++ b/gfx/contrib/glad/src/glad.c | |||
@@ -0,0 +1,2277 @@ | |||
1 | /* | ||
2 | |||
3 | OpenGL, OpenGL ES loader generated by glad 0.1.33 on Sun Aug 30 00:22:38 2020. | ||
4 | |||
5 | Language/Generator: C/C++ | ||
6 | Specification: gl | ||
7 | APIs: gl=4.6, gles2=3.2 | ||
8 | Profile: core | ||
9 | Extensions: | ||
10 | |||
11 | Loader: True | ||
12 | Local files: False | ||
13 | Omit khrplatform: False | ||
14 | Reproducible: False | ||
15 | |||
16 | Commandline: | ||
17 | --profile="core" --api="gl=4.6,gles2=3.2" --generator="c" --spec="gl" --extensions="" | ||
18 | Online: | ||
19 | https://glad.dav1d.de/#profile=core&language=c&specification=gl&loader=on&api=gl%3D4.6&api=gles2%3D3.2 | ||
20 | */ | ||
21 | |||
22 | #include <stdio.h> | ||
23 | #include <stdlib.h> | ||
24 | #include <string.h> | ||
25 | #include <glad/glad.h> | ||
26 | |||
27 | static void* get_proc(const char *namez); | ||
28 | |||
29 | #if defined(_WIN32) || defined(__CYGWIN__) | ||
30 | #ifndef _WINDOWS_ | ||
31 | #undef APIENTRY | ||
32 | #endif | ||
33 | #include <windows.h> | ||
34 | static HMODULE libGL; | ||
35 | |||
36 | typedef void* (APIENTRYP PFNWGLGETPROCADDRESSPROC_PRIVATE)(const char*); | ||
37 | static PFNWGLGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr; | ||
38 | |||
39 | #ifdef _MSC_VER | ||
40 | #ifdef __has_include | ||
41 | #if __has_include(<winapifamily.h>) | ||
42 | #define HAVE_WINAPIFAMILY 1 | ||
43 | #endif | ||
44 | #elif _MSC_VER >= 1700 && !_USING_V110_SDK71_ | ||
45 | #define HAVE_WINAPIFAMILY 1 | ||
46 | #endif | ||
47 | #endif | ||
48 | |||
49 | #ifdef HAVE_WINAPIFAMILY | ||
50 | #include <winapifamily.h> | ||
51 | #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) | ||
52 | #define IS_UWP 1 | ||
53 | #endif | ||
54 | #endif | ||
55 | |||
56 | static | ||
57 | int open_gl(void) { | ||
58 | #ifndef IS_UWP | ||
59 | libGL = LoadLibraryW(L"opengl32.dll"); | ||
60 | if(libGL != NULL) { | ||
61 | void (* tmp)(void); | ||
62 | tmp = (void(*)(void)) GetProcAddress(libGL, "wglGetProcAddress"); | ||
63 | gladGetProcAddressPtr = (PFNWGLGETPROCADDRESSPROC_PRIVATE) tmp; | ||
64 | return gladGetProcAddressPtr != NULL; | ||
65 | } | ||
66 | #endif | ||
67 | |||
68 | return 0; | ||
69 | } | ||
70 | |||
71 | static | ||
72 | void close_gl(void) { | ||
73 | if(libGL != NULL) { | ||
74 | FreeLibrary((HMODULE) libGL); | ||
75 | libGL = NULL; | ||
76 | } | ||
77 | } | ||
78 | #else | ||
79 | #include <dlfcn.h> | ||
80 | static void* libGL; | ||
81 | |||
82 | #if !defined(__APPLE__) && !defined(__HAIKU__) | ||
83 | typedef void* (APIENTRYP PFNGLXGETPROCADDRESSPROC_PRIVATE)(const char*); | ||
84 | static PFNGLXGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr; | ||
85 | #endif | ||
86 | |||
87 | static | ||
88 | int open_gl(void) { | ||
89 | #ifdef __APPLE__ | ||
90 | static const char *NAMES[] = { | ||
91 | "../Frameworks/OpenGL.framework/OpenGL", | ||
92 | "/Library/Frameworks/OpenGL.framework/OpenGL", | ||
93 | "/System/Library/Frameworks/OpenGL.framework/OpenGL", | ||
94 | "/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL" | ||
95 | }; | ||
96 | #else | ||
97 | static const char *NAMES[] = {"libGL.so.1", "libGL.so"}; | ||
98 | #endif | ||
99 | |||
100 | unsigned int index = 0; | ||
101 | for(index = 0; index < (sizeof(NAMES) / sizeof(NAMES[0])); index++) { | ||
102 | libGL = dlopen(NAMES[index], RTLD_NOW | RTLD_GLOBAL); | ||
103 | |||
104 | if(libGL != NULL) { | ||
105 | #if defined(__APPLE__) || defined(__HAIKU__) | ||
106 | return 1; | ||
107 | #else | ||
108 | gladGetProcAddressPtr = (PFNGLXGETPROCADDRESSPROC_PRIVATE)dlsym(libGL, | ||
109 | "glXGetProcAddressARB"); | ||
110 | return gladGetProcAddressPtr != NULL; | ||
111 | #endif | ||
112 | } | ||
113 | } | ||
114 | |||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | static | ||
119 | void close_gl(void) { | ||
120 | if(libGL != NULL) { | ||
121 | dlclose(libGL); | ||
122 | libGL = NULL; | ||
123 | } | ||
124 | } | ||
125 | #endif | ||
126 | |||
127 | static | ||
128 | void* get_proc(const char *namez) { | ||
129 | void* result = NULL; | ||
130 | if(libGL == NULL) return NULL; | ||
131 | |||
132 | #if !defined(__APPLE__) && !defined(__HAIKU__) | ||
133 | if(gladGetProcAddressPtr != NULL) { | ||
134 | result = gladGetProcAddressPtr(namez); | ||
135 | } | ||
136 | #endif | ||
137 | if(result == NULL) { | ||
138 | #if defined(_WIN32) || defined(__CYGWIN__) | ||
139 | result = (void*)GetProcAddress((HMODULE) libGL, namez); | ||
140 | #else | ||
141 | result = dlsym(libGL, namez); | ||
142 | #endif | ||
143 | } | ||
144 | |||
145 | return result; | ||
146 | } | ||
147 | |||
148 | int gladLoadGL(void) { | ||
149 | int status = 0; | ||
150 | |||
151 | if(open_gl()) { | ||
152 | status = gladLoadGLLoader(&get_proc); | ||
153 | close_gl(); | ||
154 | } | ||
155 | |||
156 | return status; | ||
157 | } | ||
158 | |||
159 | struct gladGLversionStruct GLVersion = { 0, 0 }; | ||
160 | |||
161 | #if defined(GL_ES_VERSION_3_0) || defined(GL_VERSION_3_0) | ||
162 | #define _GLAD_IS_SOME_NEW_VERSION 1 | ||
163 | #endif | ||
164 | |||
165 | static int max_loaded_major; | ||
166 | static int max_loaded_minor; | ||
167 | |||
168 | static const char *exts = NULL; | ||
169 | static int num_exts_i = 0; | ||
170 | static char **exts_i = NULL; | ||
171 | |||
172 | static int get_exts(void) { | ||
173 | #ifdef _GLAD_IS_SOME_NEW_VERSION | ||
174 | if(max_loaded_major < 3) { | ||
175 | #endif | ||
176 | exts = (const char *)glGetString(GL_EXTENSIONS); | ||
177 | #ifdef _GLAD_IS_SOME_NEW_VERSION | ||
178 | } else { | ||
179 | unsigned int index; | ||
180 | |||
181 | num_exts_i = 0; | ||
182 | glGetIntegerv(GL_NUM_EXTENSIONS, &num_exts_i); | ||
183 | if (num_exts_i > 0) { | ||
184 | exts_i = (char **)malloc((size_t)num_exts_i * (sizeof *exts_i)); | ||
185 | } | ||
186 | |||
187 | if (exts_i == NULL) { | ||
188 | return 0; | ||
189 | } | ||
190 | |||
191 | for(index = 0; index < (unsigned)num_exts_i; index++) { | ||
192 | const char *gl_str_tmp = (const char*)glGetStringi(GL_EXTENSIONS, index); | ||
193 | size_t len = strlen(gl_str_tmp); | ||
194 | |||
195 | char *local_str = (char*)malloc((len+1) * sizeof(char)); | ||
196 | if(local_str != NULL) { | ||
197 | memcpy(local_str, gl_str_tmp, (len+1) * sizeof(char)); | ||
198 | } | ||
199 | exts_i[index] = local_str; | ||
200 | } | ||
201 | } | ||
202 | #endif | ||
203 | return 1; | ||
204 | } | ||
205 | |||
206 | static void free_exts(void) { | ||
207 | if (exts_i != NULL) { | ||
208 | int index; | ||
209 | for(index = 0; index < num_exts_i; index++) { | ||
210 | free((char *)exts_i[index]); | ||
211 | } | ||
212 | free((void *)exts_i); | ||
213 | exts_i = NULL; | ||
214 | } | ||
215 | } | ||
216 | |||
217 | static int has_ext(const char *ext) { | ||
218 | #ifdef _GLAD_IS_SOME_NEW_VERSION | ||
219 | if(max_loaded_major < 3) { | ||
220 | #endif | ||
221 | const char *extensions; | ||
222 | const char *loc; | ||
223 | const char *terminator; | ||
224 | extensions = exts; | ||
225 | if(extensions == NULL || ext == NULL) { | ||
226 | return 0; | ||
227 | } | ||
228 | |||
229 | while(1) { | ||
230 | loc = strstr(extensions, ext); | ||
231 | if(loc == NULL) { | ||
232 | return 0; | ||
233 | } | ||
234 | |||
235 | terminator = loc + strlen(ext); | ||
236 | if((loc == extensions || *(loc - 1) == ' ') && | ||
237 | (*terminator == ' ' || *terminator == '\0')) { | ||
238 | return 1; | ||
239 | } | ||
240 | extensions = terminator; | ||
241 | } | ||
242 | #ifdef _GLAD_IS_SOME_NEW_VERSION | ||
243 | } else { | ||
244 | int index; | ||
245 | if(exts_i == NULL) return 0; | ||
246 | for(index = 0; index < num_exts_i; index++) { | ||
247 | const char *e = exts_i[index]; | ||
248 | |||
249 | if(exts_i[index] != NULL && strcmp(e, ext) == 0) { | ||
250 | return 1; | ||
251 | } | ||
252 | } | ||
253 | } | ||
254 | #endif | ||
255 | |||
256 | return 0; | ||
257 | } | ||
258 | int GLAD_GL_VERSION_1_0 = 0; | ||
259 | int GLAD_GL_VERSION_1_1 = 0; | ||
260 | int GLAD_GL_VERSION_1_2 = 0; | ||
261 | int GLAD_GL_VERSION_1_3 = 0; | ||
262 | int GLAD_GL_VERSION_1_4 = 0; | ||
263 | int GLAD_GL_VERSION_1_5 = 0; | ||
264 | int GLAD_GL_VERSION_2_0 = 0; | ||
265 | int GLAD_GL_VERSION_2_1 = 0; | ||
266 | int GLAD_GL_VERSION_3_0 = 0; | ||
267 | int GLAD_GL_VERSION_3_1 = 0; | ||
268 | int GLAD_GL_VERSION_3_2 = 0; | ||
269 | int GLAD_GL_VERSION_3_3 = 0; | ||
270 | int GLAD_GL_VERSION_4_0 = 0; | ||
271 | int GLAD_GL_VERSION_4_1 = 0; | ||
272 | int GLAD_GL_VERSION_4_2 = 0; | ||
273 | int GLAD_GL_VERSION_4_3 = 0; | ||
274 | int GLAD_GL_VERSION_4_4 = 0; | ||
275 | int GLAD_GL_VERSION_4_5 = 0; | ||
276 | int GLAD_GL_VERSION_4_6 = 0; | ||
277 | int GLAD_GL_ES_VERSION_2_0 = 0; | ||
278 | int GLAD_GL_ES_VERSION_3_0 = 0; | ||
279 | int GLAD_GL_ES_VERSION_3_1 = 0; | ||
280 | int GLAD_GL_ES_VERSION_3_2 = 0; | ||
281 | PFNGLACTIVESHADERPROGRAMPROC glad_glActiveShaderProgram = NULL; | ||
282 | PFNGLACTIVETEXTUREPROC glad_glActiveTexture = NULL; | ||
283 | PFNGLATTACHSHADERPROC glad_glAttachShader = NULL; | ||
284 | PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender = NULL; | ||
285 | PFNGLBEGINQUERYPROC glad_glBeginQuery = NULL; | ||
286 | PFNGLBEGINQUERYINDEXEDPROC glad_glBeginQueryIndexed = NULL; | ||
287 | PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback = NULL; | ||
288 | PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation = NULL; | ||
289 | PFNGLBINDBUFFERPROC glad_glBindBuffer = NULL; | ||
290 | PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase = NULL; | ||
291 | PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange = NULL; | ||
292 | PFNGLBINDBUFFERSBASEPROC glad_glBindBuffersBase = NULL; | ||
293 | PFNGLBINDBUFFERSRANGEPROC glad_glBindBuffersRange = NULL; | ||
294 | PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation = NULL; | ||
295 | PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed = NULL; | ||
296 | PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer = NULL; | ||
297 | PFNGLBINDIMAGETEXTUREPROC glad_glBindImageTexture = NULL; | ||
298 | PFNGLBINDIMAGETEXTURESPROC glad_glBindImageTextures = NULL; | ||
299 | PFNGLBINDPROGRAMPIPELINEPROC glad_glBindProgramPipeline = NULL; | ||
300 | PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer = NULL; | ||
301 | PFNGLBINDSAMPLERPROC glad_glBindSampler = NULL; | ||
302 | PFNGLBINDSAMPLERSPROC glad_glBindSamplers = NULL; | ||
303 | PFNGLBINDTEXTUREPROC glad_glBindTexture = NULL; | ||
304 | PFNGLBINDTEXTUREUNITPROC glad_glBindTextureUnit = NULL; | ||
305 | PFNGLBINDTEXTURESPROC glad_glBindTextures = NULL; | ||
306 | PFNGLBINDTRANSFORMFEEDBACKPROC glad_glBindTransformFeedback = NULL; | ||
307 | PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray = NULL; | ||
308 | PFNGLBINDVERTEXBUFFERPROC glad_glBindVertexBuffer = NULL; | ||
309 | PFNGLBINDVERTEXBUFFERSPROC glad_glBindVertexBuffers = NULL; | ||
310 | PFNGLBLENDBARRIERPROC glad_glBlendBarrier = NULL; | ||
311 | PFNGLBLENDCOLORPROC glad_glBlendColor = NULL; | ||
312 | PFNGLBLENDEQUATIONPROC glad_glBlendEquation = NULL; | ||
313 | PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate = NULL; | ||
314 | PFNGLBLENDEQUATIONSEPARATEIPROC glad_glBlendEquationSeparatei = NULL; | ||
315 | PFNGLBLENDEQUATIONIPROC glad_glBlendEquationi = NULL; | ||
316 | PFNGLBLENDFUNCPROC glad_glBlendFunc = NULL; | ||
317 | PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate = NULL; | ||
318 | PFNGLBLENDFUNCSEPARATEIPROC glad_glBlendFuncSeparatei = NULL; | ||
319 | PFNGLBLENDFUNCIPROC glad_glBlendFunci = NULL; | ||
320 | PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer = NULL; | ||
321 | PFNGLBLITNAMEDFRAMEBUFFERPROC glad_glBlitNamedFramebuffer = NULL; | ||
322 | PFNGLBUFFERDATAPROC glad_glBufferData = NULL; | ||
323 | PFNGLBUFFERSTORAGEPROC glad_glBufferStorage = NULL; | ||
324 | PFNGLBUFFERSUBDATAPROC glad_glBufferSubData = NULL; | ||
325 | PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus = NULL; | ||
326 | PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC glad_glCheckNamedFramebufferStatus = NULL; | ||
327 | PFNGLCLAMPCOLORPROC glad_glClampColor = NULL; | ||
328 | PFNGLCLEARPROC glad_glClear = NULL; | ||
329 | PFNGLCLEARBUFFERDATAPROC glad_glClearBufferData = NULL; | ||
330 | PFNGLCLEARBUFFERSUBDATAPROC glad_glClearBufferSubData = NULL; | ||
331 | PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi = NULL; | ||
332 | PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv = NULL; | ||
333 | PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv = NULL; | ||
334 | PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv = NULL; | ||
335 | PFNGLCLEARCOLORPROC glad_glClearColor = NULL; | ||
336 | PFNGLCLEARDEPTHPROC glad_glClearDepth = NULL; | ||
337 | PFNGLCLEARDEPTHFPROC glad_glClearDepthf = NULL; | ||
338 | PFNGLCLEARNAMEDBUFFERDATAPROC glad_glClearNamedBufferData = NULL; | ||
339 | PFNGLCLEARNAMEDBUFFERSUBDATAPROC glad_glClearNamedBufferSubData = NULL; | ||
340 | PFNGLCLEARNAMEDFRAMEBUFFERFIPROC glad_glClearNamedFramebufferfi = NULL; | ||
341 | PFNGLCLEARNAMEDFRAMEBUFFERFVPROC glad_glClearNamedFramebufferfv = NULL; | ||
342 | PFNGLCLEARNAMEDFRAMEBUFFERIVPROC glad_glClearNamedFramebufferiv = NULL; | ||
343 | PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC glad_glClearNamedFramebufferuiv = NULL; | ||
344 | PFNGLCLEARSTENCILPROC glad_glClearStencil = NULL; | ||
345 | PFNGLCLEARTEXIMAGEPROC glad_glClearTexImage = NULL; | ||
346 | PFNGLCLEARTEXSUBIMAGEPROC glad_glClearTexSubImage = NULL; | ||
347 | PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync = NULL; | ||
348 | PFNGLCLIPCONTROLPROC glad_glClipControl = NULL; | ||
349 | PFNGLCOLORMASKPROC glad_glColorMask = NULL; | ||
350 | PFNGLCOLORMASKIPROC glad_glColorMaski = NULL; | ||
351 | PFNGLCOLORP3UIPROC glad_glColorP3ui = NULL; | ||
352 | PFNGLCOLORP3UIVPROC glad_glColorP3uiv = NULL; | ||
353 | PFNGLCOLORP4UIPROC glad_glColorP4ui = NULL; | ||
354 | PFNGLCOLORP4UIVPROC glad_glColorP4uiv = NULL; | ||
355 | PFNGLCOMPILESHADERPROC glad_glCompileShader = NULL; | ||
356 | PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D = NULL; | ||
357 | PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D = NULL; | ||
358 | PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D = NULL; | ||
359 | PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D = NULL; | ||
360 | PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D = NULL; | ||
361 | PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D = NULL; | ||
362 | PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC glad_glCompressedTextureSubImage1D = NULL; | ||
363 | PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC glad_glCompressedTextureSubImage2D = NULL; | ||
364 | PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC glad_glCompressedTextureSubImage3D = NULL; | ||
365 | PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData = NULL; | ||
366 | PFNGLCOPYIMAGESUBDATAPROC glad_glCopyImageSubData = NULL; | ||
367 | PFNGLCOPYNAMEDBUFFERSUBDATAPROC glad_glCopyNamedBufferSubData = NULL; | ||
368 | PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D = NULL; | ||
369 | PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D = NULL; | ||
370 | PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D = NULL; | ||
371 | PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D = NULL; | ||
372 | PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D = NULL; | ||
373 | PFNGLCOPYTEXTURESUBIMAGE1DPROC glad_glCopyTextureSubImage1D = NULL; | ||
374 | PFNGLCOPYTEXTURESUBIMAGE2DPROC glad_glCopyTextureSubImage2D = NULL; | ||
375 | PFNGLCOPYTEXTURESUBIMAGE3DPROC glad_glCopyTextureSubImage3D = NULL; | ||
376 | PFNGLCREATEBUFFERSPROC glad_glCreateBuffers = NULL; | ||
377 | PFNGLCREATEFRAMEBUFFERSPROC glad_glCreateFramebuffers = NULL; | ||
378 | PFNGLCREATEPROGRAMPROC glad_glCreateProgram = NULL; | ||
379 | PFNGLCREATEPROGRAMPIPELINESPROC glad_glCreateProgramPipelines = NULL; | ||
380 | PFNGLCREATEQUERIESPROC glad_glCreateQueries = NULL; | ||
381 | PFNGLCREATERENDERBUFFERSPROC glad_glCreateRenderbuffers = NULL; | ||
382 | PFNGLCREATESAMPLERSPROC glad_glCreateSamplers = NULL; | ||
383 | PFNGLCREATESHADERPROC glad_glCreateShader = NULL; | ||
384 | PFNGLCREATESHADERPROGRAMVPROC glad_glCreateShaderProgramv = NULL; | ||
385 | PFNGLCREATETEXTURESPROC glad_glCreateTextures = NULL; | ||
386 | PFNGLCREATETRANSFORMFEEDBACKSPROC glad_glCreateTransformFeedbacks = NULL; | ||
387 | PFNGLCREATEVERTEXARRAYSPROC glad_glCreateVertexArrays = NULL; | ||
388 | PFNGLCULLFACEPROC glad_glCullFace = NULL; | ||
389 | PFNGLDEBUGMESSAGECALLBACKPROC glad_glDebugMessageCallback = NULL; | ||
390 | PFNGLDEBUGMESSAGECONTROLPROC glad_glDebugMessageControl = NULL; | ||
391 | PFNGLDEBUGMESSAGEINSERTPROC glad_glDebugMessageInsert = NULL; | ||
392 | PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers = NULL; | ||
393 | PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers = NULL; | ||
394 | PFNGLDELETEPROGRAMPROC glad_glDeleteProgram = NULL; | ||
395 | PFNGLDELETEPROGRAMPIPELINESPROC glad_glDeleteProgramPipelines = NULL; | ||
396 | PFNGLDELETEQUERIESPROC glad_glDeleteQueries = NULL; | ||
397 | PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers = NULL; | ||
398 | PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers = NULL; | ||
399 | PFNGLDELETESHADERPROC glad_glDeleteShader = NULL; | ||
400 | PFNGLDELETESYNCPROC glad_glDeleteSync = NULL; | ||
401 | PFNGLDELETETEXTURESPROC glad_glDeleteTextures = NULL; | ||
402 | PFNGLDELETETRANSFORMFEEDBACKSPROC glad_glDeleteTransformFeedbacks = NULL; | ||
403 | PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays = NULL; | ||
404 | PFNGLDEPTHFUNCPROC glad_glDepthFunc = NULL; | ||
405 | PFNGLDEPTHMASKPROC glad_glDepthMask = NULL; | ||
406 | PFNGLDEPTHRANGEPROC glad_glDepthRange = NULL; | ||
407 | PFNGLDEPTHRANGEARRAYVPROC glad_glDepthRangeArrayv = NULL; | ||
408 | PFNGLDEPTHRANGEINDEXEDPROC glad_glDepthRangeIndexed = NULL; | ||
409 | PFNGLDEPTHRANGEFPROC glad_glDepthRangef = NULL; | ||
410 | PFNGLDETACHSHADERPROC glad_glDetachShader = NULL; | ||
411 | PFNGLDISABLEPROC glad_glDisable = NULL; | ||
412 | PFNGLDISABLEVERTEXARRAYATTRIBPROC glad_glDisableVertexArrayAttrib = NULL; | ||
413 | PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray = NULL; | ||
414 | PFNGLDISABLEIPROC glad_glDisablei = NULL; | ||
415 | PFNGLDISPATCHCOMPUTEPROC glad_glDispatchCompute = NULL; | ||
416 | PFNGLDISPATCHCOMPUTEINDIRECTPROC glad_glDispatchComputeIndirect = NULL; | ||
417 | PFNGLDRAWARRAYSPROC glad_glDrawArrays = NULL; | ||
418 | PFNGLDRAWARRAYSINDIRECTPROC glad_glDrawArraysIndirect = NULL; | ||
419 | PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced = NULL; | ||
420 | PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC glad_glDrawArraysInstancedBaseInstance = NULL; | ||
421 | PFNGLDRAWBUFFERPROC glad_glDrawBuffer = NULL; | ||
422 | PFNGLDRAWBUFFERSPROC glad_glDrawBuffers = NULL; | ||
423 | PFNGLDRAWELEMENTSPROC glad_glDrawElements = NULL; | ||
424 | PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex = NULL; | ||
425 | PFNGLDRAWELEMENTSINDIRECTPROC glad_glDrawElementsIndirect = NULL; | ||
426 | PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced = NULL; | ||
427 | PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC glad_glDrawElementsInstancedBaseInstance = NULL; | ||
428 | PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex = NULL; | ||
429 | PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC glad_glDrawElementsInstancedBaseVertexBaseInstance = NULL; | ||
430 | PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements = NULL; | ||
431 | PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex = NULL; | ||
432 | PFNGLDRAWTRANSFORMFEEDBACKPROC glad_glDrawTransformFeedback = NULL; | ||
433 | PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC glad_glDrawTransformFeedbackInstanced = NULL; | ||
434 | PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC glad_glDrawTransformFeedbackStream = NULL; | ||
435 | PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC glad_glDrawTransformFeedbackStreamInstanced = NULL; | ||
436 | PFNGLENABLEPROC glad_glEnable = NULL; | ||
437 | PFNGLENABLEVERTEXARRAYATTRIBPROC glad_glEnableVertexArrayAttrib = NULL; | ||
438 | PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray = NULL; | ||
439 | PFNGLENABLEIPROC glad_glEnablei = NULL; | ||
440 | PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender = NULL; | ||
441 | PFNGLENDQUERYPROC glad_glEndQuery = NULL; | ||
442 | PFNGLENDQUERYINDEXEDPROC glad_glEndQueryIndexed = NULL; | ||
443 | PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback = NULL; | ||
444 | PFNGLFENCESYNCPROC glad_glFenceSync = NULL; | ||
445 | PFNGLFINISHPROC glad_glFinish = NULL; | ||
446 | PFNGLFLUSHPROC glad_glFlush = NULL; | ||
447 | PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange = NULL; | ||
448 | PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC glad_glFlushMappedNamedBufferRange = NULL; | ||
449 | PFNGLFRAMEBUFFERPARAMETERIPROC glad_glFramebufferParameteri = NULL; | ||
450 | PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer = NULL; | ||
451 | PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture = NULL; | ||
452 | PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D = NULL; | ||
453 | PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D = NULL; | ||
454 | PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D = NULL; | ||
455 | PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer = NULL; | ||
456 | PFNGLFRONTFACEPROC glad_glFrontFace = NULL; | ||
457 | PFNGLGENBUFFERSPROC glad_glGenBuffers = NULL; | ||
458 | PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers = NULL; | ||
459 | PFNGLGENPROGRAMPIPELINESPROC glad_glGenProgramPipelines = NULL; | ||
460 | PFNGLGENQUERIESPROC glad_glGenQueries = NULL; | ||
461 | PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers = NULL; | ||
462 | PFNGLGENSAMPLERSPROC glad_glGenSamplers = NULL; | ||
463 | PFNGLGENTEXTURESPROC glad_glGenTextures = NULL; | ||
464 | PFNGLGENTRANSFORMFEEDBACKSPROC glad_glGenTransformFeedbacks = NULL; | ||
465 | PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays = NULL; | ||
466 | PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap = NULL; | ||
467 | PFNGLGENERATETEXTUREMIPMAPPROC glad_glGenerateTextureMipmap = NULL; | ||
468 | PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC glad_glGetActiveAtomicCounterBufferiv = NULL; | ||
469 | PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib = NULL; | ||
470 | PFNGLGETACTIVESUBROUTINENAMEPROC glad_glGetActiveSubroutineName = NULL; | ||
471 | PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC glad_glGetActiveSubroutineUniformName = NULL; | ||
472 | PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC glad_glGetActiveSubroutineUniformiv = NULL; | ||
473 | PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform = NULL; | ||
474 | PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName = NULL; | ||
475 | PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv = NULL; | ||
476 | PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName = NULL; | ||
477 | PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv = NULL; | ||
478 | PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders = NULL; | ||
479 | PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation = NULL; | ||
480 | PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v = NULL; | ||
481 | PFNGLGETBOOLEANVPROC glad_glGetBooleanv = NULL; | ||
482 | PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v = NULL; | ||
483 | PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv = NULL; | ||
484 | PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv = NULL; | ||
485 | PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData = NULL; | ||
486 | PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage = NULL; | ||
487 | PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC glad_glGetCompressedTextureImage = NULL; | ||
488 | PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC glad_glGetCompressedTextureSubImage = NULL; | ||
489 | PFNGLGETDEBUGMESSAGELOGPROC glad_glGetDebugMessageLog = NULL; | ||
490 | PFNGLGETDOUBLEI_VPROC glad_glGetDoublei_v = NULL; | ||
491 | PFNGLGETDOUBLEVPROC glad_glGetDoublev = NULL; | ||
492 | PFNGLGETERRORPROC glad_glGetError = NULL; | ||
493 | PFNGLGETFLOATI_VPROC glad_glGetFloati_v = NULL; | ||
494 | PFNGLGETFLOATVPROC glad_glGetFloatv = NULL; | ||
495 | PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex = NULL; | ||
496 | PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation = NULL; | ||
497 | PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv = NULL; | ||
498 | PFNGLGETFRAMEBUFFERPARAMETERIVPROC glad_glGetFramebufferParameteriv = NULL; | ||
499 | PFNGLGETGRAPHICSRESETSTATUSPROC glad_glGetGraphicsResetStatus = NULL; | ||
500 | PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v = NULL; | ||
501 | PFNGLGETINTEGER64VPROC glad_glGetInteger64v = NULL; | ||
502 | PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v = NULL; | ||
503 | PFNGLGETINTEGERVPROC glad_glGetIntegerv = NULL; | ||
504 | PFNGLGETINTERNALFORMATI64VPROC glad_glGetInternalformati64v = NULL; | ||
505 | PFNGLGETINTERNALFORMATIVPROC glad_glGetInternalformativ = NULL; | ||
506 | PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv = NULL; | ||
507 | PFNGLGETNAMEDBUFFERPARAMETERI64VPROC glad_glGetNamedBufferParameteri64v = NULL; | ||
508 | PFNGLGETNAMEDBUFFERPARAMETERIVPROC glad_glGetNamedBufferParameteriv = NULL; | ||
509 | PFNGLGETNAMEDBUFFERPOINTERVPROC glad_glGetNamedBufferPointerv = NULL; | ||
510 | PFNGLGETNAMEDBUFFERSUBDATAPROC glad_glGetNamedBufferSubData = NULL; | ||
511 | PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetNamedFramebufferAttachmentParameteriv = NULL; | ||
512 | PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC glad_glGetNamedFramebufferParameteriv = NULL; | ||
513 | PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC glad_glGetNamedRenderbufferParameteriv = NULL; | ||
514 | PFNGLGETOBJECTLABELPROC glad_glGetObjectLabel = NULL; | ||
515 | PFNGLGETOBJECTPTRLABELPROC glad_glGetObjectPtrLabel = NULL; | ||
516 | PFNGLGETPOINTERVPROC glad_glGetPointerv = NULL; | ||
517 | PFNGLGETPROGRAMBINARYPROC glad_glGetProgramBinary = NULL; | ||
518 | PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog = NULL; | ||
519 | PFNGLGETPROGRAMINTERFACEIVPROC glad_glGetProgramInterfaceiv = NULL; | ||
520 | PFNGLGETPROGRAMPIPELINEINFOLOGPROC glad_glGetProgramPipelineInfoLog = NULL; | ||
521 | PFNGLGETPROGRAMPIPELINEIVPROC glad_glGetProgramPipelineiv = NULL; | ||
522 | PFNGLGETPROGRAMRESOURCEINDEXPROC glad_glGetProgramResourceIndex = NULL; | ||
523 | PFNGLGETPROGRAMRESOURCELOCATIONPROC glad_glGetProgramResourceLocation = NULL; | ||
524 | PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC glad_glGetProgramResourceLocationIndex = NULL; | ||
525 | PFNGLGETPROGRAMRESOURCENAMEPROC glad_glGetProgramResourceName = NULL; | ||
526 | PFNGLGETPROGRAMRESOURCEIVPROC glad_glGetProgramResourceiv = NULL; | ||
527 | PFNGLGETPROGRAMSTAGEIVPROC glad_glGetProgramStageiv = NULL; | ||
528 | PFNGLGETPROGRAMIVPROC glad_glGetProgramiv = NULL; | ||
529 | PFNGLGETQUERYBUFFEROBJECTI64VPROC glad_glGetQueryBufferObjecti64v = NULL; | ||
530 | PFNGLGETQUERYBUFFEROBJECTIVPROC glad_glGetQueryBufferObjectiv = NULL; | ||
531 | PFNGLGETQUERYBUFFEROBJECTUI64VPROC glad_glGetQueryBufferObjectui64v = NULL; | ||
532 | PFNGLGETQUERYBUFFEROBJECTUIVPROC glad_glGetQueryBufferObjectuiv = NULL; | ||
533 | PFNGLGETQUERYINDEXEDIVPROC glad_glGetQueryIndexediv = NULL; | ||
534 | PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v = NULL; | ||
535 | PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv = NULL; | ||
536 | PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v = NULL; | ||
537 | PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv = NULL; | ||
538 | PFNGLGETQUERYIVPROC glad_glGetQueryiv = NULL; | ||
539 | PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv = NULL; | ||
540 | PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv = NULL; | ||
541 | PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv = NULL; | ||
542 | PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv = NULL; | ||
543 | PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv = NULL; | ||
544 | PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog = NULL; | ||
545 | PFNGLGETSHADERPRECISIONFORMATPROC glad_glGetShaderPrecisionFormat = NULL; | ||
546 | PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource = NULL; | ||
547 | PFNGLGETSHADERIVPROC glad_glGetShaderiv = NULL; | ||
548 | PFNGLGETSTRINGPROC glad_glGetString = NULL; | ||
549 | PFNGLGETSTRINGIPROC glad_glGetStringi = NULL; | ||
550 | PFNGLGETSUBROUTINEINDEXPROC glad_glGetSubroutineIndex = NULL; | ||
551 | PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC glad_glGetSubroutineUniformLocation = NULL; | ||
552 | PFNGLGETSYNCIVPROC glad_glGetSynciv = NULL; | ||
553 | PFNGLGETTEXIMAGEPROC glad_glGetTexImage = NULL; | ||
554 | PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv = NULL; | ||
555 | PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv = NULL; | ||
556 | PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv = NULL; | ||
557 | PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv = NULL; | ||
558 | PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv = NULL; | ||
559 | PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv = NULL; | ||
560 | PFNGLGETTEXTUREIMAGEPROC glad_glGetTextureImage = NULL; | ||
561 | PFNGLGETTEXTURELEVELPARAMETERFVPROC glad_glGetTextureLevelParameterfv = NULL; | ||
562 | PFNGLGETTEXTURELEVELPARAMETERIVPROC glad_glGetTextureLevelParameteriv = NULL; | ||
563 | PFNGLGETTEXTUREPARAMETERIIVPROC glad_glGetTextureParameterIiv = NULL; | ||
564 | PFNGLGETTEXTUREPARAMETERIUIVPROC glad_glGetTextureParameterIuiv = NULL; | ||
565 | PFNGLGETTEXTUREPARAMETERFVPROC glad_glGetTextureParameterfv = NULL; | ||
566 | PFNGLGETTEXTUREPARAMETERIVPROC glad_glGetTextureParameteriv = NULL; | ||
567 | PFNGLGETTEXTURESUBIMAGEPROC glad_glGetTextureSubImage = NULL; | ||
568 | PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying = NULL; | ||
569 | PFNGLGETTRANSFORMFEEDBACKI64_VPROC glad_glGetTransformFeedbacki64_v = NULL; | ||
570 | PFNGLGETTRANSFORMFEEDBACKI_VPROC glad_glGetTransformFeedbacki_v = NULL; | ||
571 | PFNGLGETTRANSFORMFEEDBACKIVPROC glad_glGetTransformFeedbackiv = NULL; | ||
572 | PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex = NULL; | ||
573 | PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices = NULL; | ||
574 | PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation = NULL; | ||
575 | PFNGLGETUNIFORMSUBROUTINEUIVPROC glad_glGetUniformSubroutineuiv = NULL; | ||
576 | PFNGLGETUNIFORMDVPROC glad_glGetUniformdv = NULL; | ||
577 | PFNGLGETUNIFORMFVPROC glad_glGetUniformfv = NULL; | ||
578 | PFNGLGETUNIFORMIVPROC glad_glGetUniformiv = NULL; | ||
579 | PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv = NULL; | ||
580 | PFNGLGETVERTEXARRAYINDEXED64IVPROC glad_glGetVertexArrayIndexed64iv = NULL; | ||
581 | PFNGLGETVERTEXARRAYINDEXEDIVPROC glad_glGetVertexArrayIndexediv = NULL; | ||
582 | PFNGLGETVERTEXARRAYIVPROC glad_glGetVertexArrayiv = NULL; | ||
583 | PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv = NULL; | ||
584 | PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv = NULL; | ||
585 | PFNGLGETVERTEXATTRIBLDVPROC glad_glGetVertexAttribLdv = NULL; | ||
586 | PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv = NULL; | ||
587 | PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv = NULL; | ||
588 | PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv = NULL; | ||
589 | PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv = NULL; | ||
590 | PFNGLGETNCOLORTABLEPROC glad_glGetnColorTable = NULL; | ||
591 | PFNGLGETNCOMPRESSEDTEXIMAGEPROC glad_glGetnCompressedTexImage = NULL; | ||
592 | PFNGLGETNCONVOLUTIONFILTERPROC glad_glGetnConvolutionFilter = NULL; | ||
593 | PFNGLGETNHISTOGRAMPROC glad_glGetnHistogram = NULL; | ||
594 | PFNGLGETNMAPDVPROC glad_glGetnMapdv = NULL; | ||
595 | PFNGLGETNMAPFVPROC glad_glGetnMapfv = NULL; | ||
596 | PFNGLGETNMAPIVPROC glad_glGetnMapiv = NULL; | ||
597 | PFNGLGETNMINMAXPROC glad_glGetnMinmax = NULL; | ||
598 | PFNGLGETNPIXELMAPFVPROC glad_glGetnPixelMapfv = NULL; | ||
599 | PFNGLGETNPIXELMAPUIVPROC glad_glGetnPixelMapuiv = NULL; | ||
600 | PFNGLGETNPIXELMAPUSVPROC glad_glGetnPixelMapusv = NULL; | ||
601 | PFNGLGETNPOLYGONSTIPPLEPROC glad_glGetnPolygonStipple = NULL; | ||
602 | PFNGLGETNSEPARABLEFILTERPROC glad_glGetnSeparableFilter = NULL; | ||
603 | PFNGLGETNTEXIMAGEPROC glad_glGetnTexImage = NULL; | ||
604 | PFNGLGETNUNIFORMDVPROC glad_glGetnUniformdv = NULL; | ||
605 | PFNGLGETNUNIFORMFVPROC glad_glGetnUniformfv = NULL; | ||
606 | PFNGLGETNUNIFORMIVPROC glad_glGetnUniformiv = NULL; | ||
607 | PFNGLGETNUNIFORMUIVPROC glad_glGetnUniformuiv = NULL; | ||
608 | PFNGLHINTPROC glad_glHint = NULL; | ||
609 | PFNGLINVALIDATEBUFFERDATAPROC glad_glInvalidateBufferData = NULL; | ||
610 | PFNGLINVALIDATEBUFFERSUBDATAPROC glad_glInvalidateBufferSubData = NULL; | ||
611 | PFNGLINVALIDATEFRAMEBUFFERPROC glad_glInvalidateFramebuffer = NULL; | ||
612 | PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC glad_glInvalidateNamedFramebufferData = NULL; | ||
613 | PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC glad_glInvalidateNamedFramebufferSubData = NULL; | ||
614 | PFNGLINVALIDATESUBFRAMEBUFFERPROC glad_glInvalidateSubFramebuffer = NULL; | ||
615 | PFNGLINVALIDATETEXIMAGEPROC glad_glInvalidateTexImage = NULL; | ||
616 | PFNGLINVALIDATETEXSUBIMAGEPROC glad_glInvalidateTexSubImage = NULL; | ||
617 | PFNGLISBUFFERPROC glad_glIsBuffer = NULL; | ||
618 | PFNGLISENABLEDPROC glad_glIsEnabled = NULL; | ||
619 | PFNGLISENABLEDIPROC glad_glIsEnabledi = NULL; | ||
620 | PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer = NULL; | ||
621 | PFNGLISPROGRAMPROC glad_glIsProgram = NULL; | ||
622 | PFNGLISPROGRAMPIPELINEPROC glad_glIsProgramPipeline = NULL; | ||
623 | PFNGLISQUERYPROC glad_glIsQuery = NULL; | ||
624 | PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer = NULL; | ||
625 | PFNGLISSAMPLERPROC glad_glIsSampler = NULL; | ||
626 | PFNGLISSHADERPROC glad_glIsShader = NULL; | ||
627 | PFNGLISSYNCPROC glad_glIsSync = NULL; | ||
628 | PFNGLISTEXTUREPROC glad_glIsTexture = NULL; | ||
629 | PFNGLISTRANSFORMFEEDBACKPROC glad_glIsTransformFeedback = NULL; | ||
630 | PFNGLISVERTEXARRAYPROC glad_glIsVertexArray = NULL; | ||
631 | PFNGLLINEWIDTHPROC glad_glLineWidth = NULL; | ||
632 | PFNGLLINKPROGRAMPROC glad_glLinkProgram = NULL; | ||
633 | PFNGLLOGICOPPROC glad_glLogicOp = NULL; | ||
634 | PFNGLMAPBUFFERPROC glad_glMapBuffer = NULL; | ||
635 | PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange = NULL; | ||
636 | PFNGLMAPNAMEDBUFFERPROC glad_glMapNamedBuffer = NULL; | ||
637 | PFNGLMAPNAMEDBUFFERRANGEPROC glad_glMapNamedBufferRange = NULL; | ||
638 | PFNGLMEMORYBARRIERPROC glad_glMemoryBarrier = NULL; | ||
639 | PFNGLMEMORYBARRIERBYREGIONPROC glad_glMemoryBarrierByRegion = NULL; | ||
640 | PFNGLMINSAMPLESHADINGPROC glad_glMinSampleShading = NULL; | ||
641 | PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays = NULL; | ||
642 | PFNGLMULTIDRAWARRAYSINDIRECTPROC glad_glMultiDrawArraysIndirect = NULL; | ||
643 | PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC glad_glMultiDrawArraysIndirectCount = NULL; | ||
644 | PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements = NULL; | ||
645 | PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex = NULL; | ||
646 | PFNGLMULTIDRAWELEMENTSINDIRECTPROC glad_glMultiDrawElementsIndirect = NULL; | ||
647 | PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC glad_glMultiDrawElementsIndirectCount = NULL; | ||
648 | PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui = NULL; | ||
649 | PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv = NULL; | ||
650 | PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui = NULL; | ||
651 | PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv = NULL; | ||
652 | PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui = NULL; | ||
653 | PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv = NULL; | ||
654 | PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui = NULL; | ||
655 | PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv = NULL; | ||
656 | PFNGLNAMEDBUFFERDATAPROC glad_glNamedBufferData = NULL; | ||
657 | PFNGLNAMEDBUFFERSTORAGEPROC glad_glNamedBufferStorage = NULL; | ||
658 | PFNGLNAMEDBUFFERSUBDATAPROC glad_glNamedBufferSubData = NULL; | ||
659 | PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC glad_glNamedFramebufferDrawBuffer = NULL; | ||
660 | PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC glad_glNamedFramebufferDrawBuffers = NULL; | ||
661 | PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC glad_glNamedFramebufferParameteri = NULL; | ||
662 | PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC glad_glNamedFramebufferReadBuffer = NULL; | ||
663 | PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC glad_glNamedFramebufferRenderbuffer = NULL; | ||
664 | PFNGLNAMEDFRAMEBUFFERTEXTUREPROC glad_glNamedFramebufferTexture = NULL; | ||
665 | PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC glad_glNamedFramebufferTextureLayer = NULL; | ||
666 | PFNGLNAMEDRENDERBUFFERSTORAGEPROC glad_glNamedRenderbufferStorage = NULL; | ||
667 | PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glNamedRenderbufferStorageMultisample = NULL; | ||
668 | PFNGLNORMALP3UIPROC glad_glNormalP3ui = NULL; | ||
669 | PFNGLNORMALP3UIVPROC glad_glNormalP3uiv = NULL; | ||
670 | PFNGLOBJECTLABELPROC glad_glObjectLabel = NULL; | ||
671 | PFNGLOBJECTPTRLABELPROC glad_glObjectPtrLabel = NULL; | ||
672 | PFNGLPATCHPARAMETERFVPROC glad_glPatchParameterfv = NULL; | ||
673 | PFNGLPATCHPARAMETERIPROC glad_glPatchParameteri = NULL; | ||
674 | PFNGLPAUSETRANSFORMFEEDBACKPROC glad_glPauseTransformFeedback = NULL; | ||
675 | PFNGLPIXELSTOREFPROC glad_glPixelStoref = NULL; | ||
676 | PFNGLPIXELSTOREIPROC glad_glPixelStorei = NULL; | ||
677 | PFNGLPOINTPARAMETERFPROC glad_glPointParameterf = NULL; | ||
678 | PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv = NULL; | ||
679 | PFNGLPOINTPARAMETERIPROC glad_glPointParameteri = NULL; | ||
680 | PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv = NULL; | ||
681 | PFNGLPOINTSIZEPROC glad_glPointSize = NULL; | ||
682 | PFNGLPOLYGONMODEPROC glad_glPolygonMode = NULL; | ||
683 | PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset = NULL; | ||
684 | PFNGLPOLYGONOFFSETCLAMPPROC glad_glPolygonOffsetClamp = NULL; | ||
685 | PFNGLPOPDEBUGGROUPPROC glad_glPopDebugGroup = NULL; | ||
686 | PFNGLPRIMITIVEBOUNDINGBOXPROC glad_glPrimitiveBoundingBox = NULL; | ||
687 | PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex = NULL; | ||
688 | PFNGLPROGRAMBINARYPROC glad_glProgramBinary = NULL; | ||
689 | PFNGLPROGRAMPARAMETERIPROC glad_glProgramParameteri = NULL; | ||
690 | PFNGLPROGRAMUNIFORM1DPROC glad_glProgramUniform1d = NULL; | ||
691 | PFNGLPROGRAMUNIFORM1DVPROC glad_glProgramUniform1dv = NULL; | ||
692 | PFNGLPROGRAMUNIFORM1FPROC glad_glProgramUniform1f = NULL; | ||
693 | PFNGLPROGRAMUNIFORM1FVPROC glad_glProgramUniform1fv = NULL; | ||
694 | PFNGLPROGRAMUNIFORM1IPROC glad_glProgramUniform1i = NULL; | ||
695 | PFNGLPROGRAMUNIFORM1IVPROC glad_glProgramUniform1iv = NULL; | ||
696 | PFNGLPROGRAMUNIFORM1UIPROC glad_glProgramUniform1ui = NULL; | ||
697 | PFNGLPROGRAMUNIFORM1UIVPROC glad_glProgramUniform1uiv = NULL; | ||
698 | PFNGLPROGRAMUNIFORM2DPROC glad_glProgramUniform2d = NULL; | ||
699 | PFNGLPROGRAMUNIFORM2DVPROC glad_glProgramUniform2dv = NULL; | ||
700 | PFNGLPROGRAMUNIFORM2FPROC glad_glProgramUniform2f = NULL; | ||
701 | PFNGLPROGRAMUNIFORM2FVPROC glad_glProgramUniform2fv = NULL; | ||
702 | PFNGLPROGRAMUNIFORM2IPROC glad_glProgramUniform2i = NULL; | ||
703 | PFNGLPROGRAMUNIFORM2IVPROC glad_glProgramUniform2iv = NULL; | ||
704 | PFNGLPROGRAMUNIFORM2UIPROC glad_glProgramUniform2ui = NULL; | ||
705 | PFNGLPROGRAMUNIFORM2UIVPROC glad_glProgramUniform2uiv = NULL; | ||
706 | PFNGLPROGRAMUNIFORM3DPROC glad_glProgramUniform3d = NULL; | ||
707 | PFNGLPROGRAMUNIFORM3DVPROC glad_glProgramUniform3dv = NULL; | ||
708 | PFNGLPROGRAMUNIFORM3FPROC glad_glProgramUniform3f = NULL; | ||
709 | PFNGLPROGRAMUNIFORM3FVPROC glad_glProgramUniform3fv = NULL; | ||
710 | PFNGLPROGRAMUNIFORM3IPROC glad_glProgramUniform3i = NULL; | ||
711 | PFNGLPROGRAMUNIFORM3IVPROC glad_glProgramUniform3iv = NULL; | ||
712 | PFNGLPROGRAMUNIFORM3UIPROC glad_glProgramUniform3ui = NULL; | ||
713 | PFNGLPROGRAMUNIFORM3UIVPROC glad_glProgramUniform3uiv = NULL; | ||
714 | PFNGLPROGRAMUNIFORM4DPROC glad_glProgramUniform4d = NULL; | ||
715 | PFNGLPROGRAMUNIFORM4DVPROC glad_glProgramUniform4dv = NULL; | ||
716 | PFNGLPROGRAMUNIFORM4FPROC glad_glProgramUniform4f = NULL; | ||
717 | PFNGLPROGRAMUNIFORM4FVPROC glad_glProgramUniform4fv = NULL; | ||
718 | PFNGLPROGRAMUNIFORM4IPROC glad_glProgramUniform4i = NULL; | ||
719 | PFNGLPROGRAMUNIFORM4IVPROC glad_glProgramUniform4iv = NULL; | ||
720 | PFNGLPROGRAMUNIFORM4UIPROC glad_glProgramUniform4ui = NULL; | ||
721 | PFNGLPROGRAMUNIFORM4UIVPROC glad_glProgramUniform4uiv = NULL; | ||
722 | PFNGLPROGRAMUNIFORMMATRIX2DVPROC glad_glProgramUniformMatrix2dv = NULL; | ||
723 | PFNGLPROGRAMUNIFORMMATRIX2FVPROC glad_glProgramUniformMatrix2fv = NULL; | ||
724 | PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC glad_glProgramUniformMatrix2x3dv = NULL; | ||
725 | PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC glad_glProgramUniformMatrix2x3fv = NULL; | ||
726 | PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC glad_glProgramUniformMatrix2x4dv = NULL; | ||
727 | PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC glad_glProgramUniformMatrix2x4fv = NULL; | ||
728 | PFNGLPROGRAMUNIFORMMATRIX3DVPROC glad_glProgramUniformMatrix3dv = NULL; | ||
729 | PFNGLPROGRAMUNIFORMMATRIX3FVPROC glad_glProgramUniformMatrix3fv = NULL; | ||
730 | PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC glad_glProgramUniformMatrix3x2dv = NULL; | ||
731 | PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC glad_glProgramUniformMatrix3x2fv = NULL; | ||
732 | PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC glad_glProgramUniformMatrix3x4dv = NULL; | ||
733 | PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC glad_glProgramUniformMatrix3x4fv = NULL; | ||
734 | PFNGLPROGRAMUNIFORMMATRIX4DVPROC glad_glProgramUniformMatrix4dv = NULL; | ||
735 | PFNGLPROGRAMUNIFORMMATRIX4FVPROC glad_glProgramUniformMatrix4fv = NULL; | ||
736 | PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC glad_glProgramUniformMatrix4x2dv = NULL; | ||
737 | PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC glad_glProgramUniformMatrix4x2fv = NULL; | ||
738 | PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC glad_glProgramUniformMatrix4x3dv = NULL; | ||
739 | PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC glad_glProgramUniformMatrix4x3fv = NULL; | ||
740 | PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex = NULL; | ||
741 | PFNGLPUSHDEBUGGROUPPROC glad_glPushDebugGroup = NULL; | ||
742 | PFNGLQUERYCOUNTERPROC glad_glQueryCounter = NULL; | ||
743 | PFNGLREADBUFFERPROC glad_glReadBuffer = NULL; | ||
744 | PFNGLREADPIXELSPROC glad_glReadPixels = NULL; | ||
745 | PFNGLREADNPIXELSPROC glad_glReadnPixels = NULL; | ||
746 | PFNGLRELEASESHADERCOMPILERPROC glad_glReleaseShaderCompiler = NULL; | ||
747 | PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage = NULL; | ||
748 | PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample = NULL; | ||
749 | PFNGLRESUMETRANSFORMFEEDBACKPROC glad_glResumeTransformFeedback = NULL; | ||
750 | PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage = NULL; | ||
751 | PFNGLSAMPLEMASKIPROC glad_glSampleMaski = NULL; | ||
752 | PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv = NULL; | ||
753 | PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv = NULL; | ||
754 | PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf = NULL; | ||
755 | PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv = NULL; | ||
756 | PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri = NULL; | ||
757 | PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv = NULL; | ||
758 | PFNGLSCISSORPROC glad_glScissor = NULL; | ||
759 | PFNGLSCISSORARRAYVPROC glad_glScissorArrayv = NULL; | ||
760 | PFNGLSCISSORINDEXEDPROC glad_glScissorIndexed = NULL; | ||
761 | PFNGLSCISSORINDEXEDVPROC glad_glScissorIndexedv = NULL; | ||
762 | PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui = NULL; | ||
763 | PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv = NULL; | ||
764 | PFNGLSHADERBINARYPROC glad_glShaderBinary = NULL; | ||
765 | PFNGLSHADERSOURCEPROC glad_glShaderSource = NULL; | ||
766 | PFNGLSHADERSTORAGEBLOCKBINDINGPROC glad_glShaderStorageBlockBinding = NULL; | ||
767 | PFNGLSPECIALIZESHADERPROC glad_glSpecializeShader = NULL; | ||
768 | PFNGLSTENCILFUNCPROC glad_glStencilFunc = NULL; | ||
769 | PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate = NULL; | ||
770 | PFNGLSTENCILMASKPROC glad_glStencilMask = NULL; | ||
771 | PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate = NULL; | ||
772 | PFNGLSTENCILOPPROC glad_glStencilOp = NULL; | ||
773 | PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate = NULL; | ||
774 | PFNGLTEXBUFFERPROC glad_glTexBuffer = NULL; | ||
775 | PFNGLTEXBUFFERRANGEPROC glad_glTexBufferRange = NULL; | ||
776 | PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui = NULL; | ||
777 | PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv = NULL; | ||
778 | PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui = NULL; | ||
779 | PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv = NULL; | ||
780 | PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui = NULL; | ||
781 | PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv = NULL; | ||
782 | PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui = NULL; | ||
783 | PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv = NULL; | ||
784 | PFNGLTEXIMAGE1DPROC glad_glTexImage1D = NULL; | ||
785 | PFNGLTEXIMAGE2DPROC glad_glTexImage2D = NULL; | ||
786 | PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample = NULL; | ||
787 | PFNGLTEXIMAGE3DPROC glad_glTexImage3D = NULL; | ||
788 | PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample = NULL; | ||
789 | PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv = NULL; | ||
790 | PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv = NULL; | ||
791 | PFNGLTEXPARAMETERFPROC glad_glTexParameterf = NULL; | ||
792 | PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv = NULL; | ||
793 | PFNGLTEXPARAMETERIPROC glad_glTexParameteri = NULL; | ||
794 | PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv = NULL; | ||
795 | PFNGLTEXSTORAGE1DPROC glad_glTexStorage1D = NULL; | ||
796 | PFNGLTEXSTORAGE2DPROC glad_glTexStorage2D = NULL; | ||
797 | PFNGLTEXSTORAGE2DMULTISAMPLEPROC glad_glTexStorage2DMultisample = NULL; | ||
798 | PFNGLTEXSTORAGE3DPROC glad_glTexStorage3D = NULL; | ||
799 | PFNGLTEXSTORAGE3DMULTISAMPLEPROC glad_glTexStorage3DMultisample = NULL; | ||
800 | PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D = NULL; | ||
801 | PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D = NULL; | ||
802 | PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D = NULL; | ||
803 | PFNGLTEXTUREBARRIERPROC glad_glTextureBarrier = NULL; | ||
804 | PFNGLTEXTUREBUFFERPROC glad_glTextureBuffer = NULL; | ||
805 | PFNGLTEXTUREBUFFERRANGEPROC glad_glTextureBufferRange = NULL; | ||
806 | PFNGLTEXTUREPARAMETERIIVPROC glad_glTextureParameterIiv = NULL; | ||
807 | PFNGLTEXTUREPARAMETERIUIVPROC glad_glTextureParameterIuiv = NULL; | ||
808 | PFNGLTEXTUREPARAMETERFPROC glad_glTextureParameterf = NULL; | ||
809 | PFNGLTEXTUREPARAMETERFVPROC glad_glTextureParameterfv = NULL; | ||
810 | PFNGLTEXTUREPARAMETERIPROC glad_glTextureParameteri = NULL; | ||
811 | PFNGLTEXTUREPARAMETERIVPROC glad_glTextureParameteriv = NULL; | ||
812 | PFNGLTEXTURESTORAGE1DPROC glad_glTextureStorage1D = NULL; | ||
813 | PFNGLTEXTURESTORAGE2DPROC glad_glTextureStorage2D = NULL; | ||
814 | PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC glad_glTextureStorage2DMultisample = NULL; | ||
815 | PFNGLTEXTURESTORAGE3DPROC glad_glTextureStorage3D = NULL; | ||
816 | PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC glad_glTextureStorage3DMultisample = NULL; | ||
817 | PFNGLTEXTURESUBIMAGE1DPROC glad_glTextureSubImage1D = NULL; | ||
818 | PFNGLTEXTURESUBIMAGE2DPROC glad_glTextureSubImage2D = NULL; | ||
819 | PFNGLTEXTURESUBIMAGE3DPROC glad_glTextureSubImage3D = NULL; | ||
820 | PFNGLTEXTUREVIEWPROC glad_glTextureView = NULL; | ||
821 | PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC glad_glTransformFeedbackBufferBase = NULL; | ||
822 | PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC glad_glTransformFeedbackBufferRange = NULL; | ||
823 | PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings = NULL; | ||
824 | PFNGLUNIFORM1DPROC glad_glUniform1d = NULL; | ||
825 | PFNGLUNIFORM1DVPROC glad_glUniform1dv = NULL; | ||
826 | PFNGLUNIFORM1FPROC glad_glUniform1f = NULL; | ||
827 | PFNGLUNIFORM1FVPROC glad_glUniform1fv = NULL; | ||
828 | PFNGLUNIFORM1IPROC glad_glUniform1i = NULL; | ||
829 | PFNGLUNIFORM1IVPROC glad_glUniform1iv = NULL; | ||
830 | PFNGLUNIFORM1UIPROC glad_glUniform1ui = NULL; | ||
831 | PFNGLUNIFORM1UIVPROC glad_glUniform1uiv = NULL; | ||
832 | PFNGLUNIFORM2DPROC glad_glUniform2d = NULL; | ||
833 | PFNGLUNIFORM2DVPROC glad_glUniform2dv = NULL; | ||
834 | PFNGLUNIFORM2FPROC glad_glUniform2f = NULL; | ||
835 | PFNGLUNIFORM2FVPROC glad_glUniform2fv = NULL; | ||
836 | PFNGLUNIFORM2IPROC glad_glUniform2i = NULL; | ||
837 | PFNGLUNIFORM2IVPROC glad_glUniform2iv = NULL; | ||
838 | PFNGLUNIFORM2UIPROC glad_glUniform2ui = NULL; | ||
839 | PFNGLUNIFORM2UIVPROC glad_glUniform2uiv = NULL; | ||
840 | PFNGLUNIFORM3DPROC glad_glUniform3d = NULL; | ||
841 | PFNGLUNIFORM3DVPROC glad_glUniform3dv = NULL; | ||
842 | PFNGLUNIFORM3FPROC glad_glUniform3f = NULL; | ||
843 | PFNGLUNIFORM3FVPROC glad_glUniform3fv = NULL; | ||
844 | PFNGLUNIFORM3IPROC glad_glUniform3i = NULL; | ||
845 | PFNGLUNIFORM3IVPROC glad_glUniform3iv = NULL; | ||
846 | PFNGLUNIFORM3UIPROC glad_glUniform3ui = NULL; | ||
847 | PFNGLUNIFORM3UIVPROC glad_glUniform3uiv = NULL; | ||
848 | PFNGLUNIFORM4DPROC glad_glUniform4d = NULL; | ||
849 | PFNGLUNIFORM4DVPROC glad_glUniform4dv = NULL; | ||
850 | PFNGLUNIFORM4FPROC glad_glUniform4f = NULL; | ||
851 | PFNGLUNIFORM4FVPROC glad_glUniform4fv = NULL; | ||
852 | PFNGLUNIFORM4IPROC glad_glUniform4i = NULL; | ||
853 | PFNGLUNIFORM4IVPROC glad_glUniform4iv = NULL; | ||
854 | PFNGLUNIFORM4UIPROC glad_glUniform4ui = NULL; | ||
855 | PFNGLUNIFORM4UIVPROC glad_glUniform4uiv = NULL; | ||
856 | PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding = NULL; | ||
857 | PFNGLUNIFORMMATRIX2DVPROC glad_glUniformMatrix2dv = NULL; | ||
858 | PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv = NULL; | ||
859 | PFNGLUNIFORMMATRIX2X3DVPROC glad_glUniformMatrix2x3dv = NULL; | ||
860 | PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv = NULL; | ||
861 | PFNGLUNIFORMMATRIX2X4DVPROC glad_glUniformMatrix2x4dv = NULL; | ||
862 | PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv = NULL; | ||
863 | PFNGLUNIFORMMATRIX3DVPROC glad_glUniformMatrix3dv = NULL; | ||
864 | PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv = NULL; | ||
865 | PFNGLUNIFORMMATRIX3X2DVPROC glad_glUniformMatrix3x2dv = NULL; | ||
866 | PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv = NULL; | ||
867 | PFNGLUNIFORMMATRIX3X4DVPROC glad_glUniformMatrix3x4dv = NULL; | ||
868 | PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv = NULL; | ||
869 | PFNGLUNIFORMMATRIX4DVPROC glad_glUniformMatrix4dv = NULL; | ||
870 | PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv = NULL; | ||
871 | PFNGLUNIFORMMATRIX4X2DVPROC glad_glUniformMatrix4x2dv = NULL; | ||
872 | PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv = NULL; | ||
873 | PFNGLUNIFORMMATRIX4X3DVPROC glad_glUniformMatrix4x3dv = NULL; | ||
874 | PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv = NULL; | ||
875 | PFNGLUNIFORMSUBROUTINESUIVPROC glad_glUniformSubroutinesuiv = NULL; | ||
876 | PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer = NULL; | ||
877 | PFNGLUNMAPNAMEDBUFFERPROC glad_glUnmapNamedBuffer = NULL; | ||
878 | PFNGLUSEPROGRAMPROC glad_glUseProgram = NULL; | ||
879 | PFNGLUSEPROGRAMSTAGESPROC glad_glUseProgramStages = NULL; | ||
880 | PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram = NULL; | ||
881 | PFNGLVALIDATEPROGRAMPIPELINEPROC glad_glValidateProgramPipeline = NULL; | ||
882 | PFNGLVERTEXARRAYATTRIBBINDINGPROC glad_glVertexArrayAttribBinding = NULL; | ||
883 | PFNGLVERTEXARRAYATTRIBFORMATPROC glad_glVertexArrayAttribFormat = NULL; | ||
884 | PFNGLVERTEXARRAYATTRIBIFORMATPROC glad_glVertexArrayAttribIFormat = NULL; | ||
885 | PFNGLVERTEXARRAYATTRIBLFORMATPROC glad_glVertexArrayAttribLFormat = NULL; | ||
886 | PFNGLVERTEXARRAYBINDINGDIVISORPROC glad_glVertexArrayBindingDivisor = NULL; | ||
887 | PFNGLVERTEXARRAYELEMENTBUFFERPROC glad_glVertexArrayElementBuffer = NULL; | ||
888 | PFNGLVERTEXARRAYVERTEXBUFFERPROC glad_glVertexArrayVertexBuffer = NULL; | ||
889 | PFNGLVERTEXARRAYVERTEXBUFFERSPROC glad_glVertexArrayVertexBuffers = NULL; | ||
890 | PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d = NULL; | ||
891 | PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv = NULL; | ||
892 | PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f = NULL; | ||
893 | PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv = NULL; | ||
894 | PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s = NULL; | ||
895 | PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv = NULL; | ||
896 | PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d = NULL; | ||
897 | PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv = NULL; | ||
898 | PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f = NULL; | ||
899 | PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv = NULL; | ||
900 | PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s = NULL; | ||
901 | PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv = NULL; | ||
902 | PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d = NULL; | ||
903 | PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv = NULL; | ||
904 | PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f = NULL; | ||
905 | PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv = NULL; | ||
906 | PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s = NULL; | ||
907 | PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv = NULL; | ||
908 | PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv = NULL; | ||
909 | PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv = NULL; | ||
910 | PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv = NULL; | ||
911 | PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub = NULL; | ||
912 | PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv = NULL; | ||
913 | PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv = NULL; | ||
914 | PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv = NULL; | ||
915 | PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv = NULL; | ||
916 | PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d = NULL; | ||
917 | PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv = NULL; | ||
918 | PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f = NULL; | ||
919 | PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv = NULL; | ||
920 | PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv = NULL; | ||
921 | PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s = NULL; | ||
922 | PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv = NULL; | ||
923 | PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv = NULL; | ||
924 | PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv = NULL; | ||
925 | PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv = NULL; | ||
926 | PFNGLVERTEXATTRIBBINDINGPROC glad_glVertexAttribBinding = NULL; | ||
927 | PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor = NULL; | ||
928 | PFNGLVERTEXATTRIBFORMATPROC glad_glVertexAttribFormat = NULL; | ||
929 | PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i = NULL; | ||
930 | PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv = NULL; | ||
931 | PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui = NULL; | ||
932 | PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv = NULL; | ||
933 | PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i = NULL; | ||
934 | PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv = NULL; | ||
935 | PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui = NULL; | ||
936 | PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv = NULL; | ||
937 | PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i = NULL; | ||
938 | PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv = NULL; | ||
939 | PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui = NULL; | ||
940 | PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv = NULL; | ||
941 | PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv = NULL; | ||
942 | PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i = NULL; | ||
943 | PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv = NULL; | ||
944 | PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv = NULL; | ||
945 | PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv = NULL; | ||
946 | PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui = NULL; | ||
947 | PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv = NULL; | ||
948 | PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv = NULL; | ||
949 | PFNGLVERTEXATTRIBIFORMATPROC glad_glVertexAttribIFormat = NULL; | ||
950 | PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer = NULL; | ||
951 | PFNGLVERTEXATTRIBL1DPROC glad_glVertexAttribL1d = NULL; | ||
952 | PFNGLVERTEXATTRIBL1DVPROC glad_glVertexAttribL1dv = NULL; | ||
953 | PFNGLVERTEXATTRIBL2DPROC glad_glVertexAttribL2d = NULL; | ||
954 | PFNGLVERTEXATTRIBL2DVPROC glad_glVertexAttribL2dv = NULL; | ||
955 | PFNGLVERTEXATTRIBL3DPROC glad_glVertexAttribL3d = NULL; | ||
956 | PFNGLVERTEXATTRIBL3DVPROC glad_glVertexAttribL3dv = NULL; | ||
957 | PFNGLVERTEXATTRIBL4DPROC glad_glVertexAttribL4d = NULL; | ||
958 | PFNGLVERTEXATTRIBL4DVPROC glad_glVertexAttribL4dv = NULL; | ||
959 | PFNGLVERTEXATTRIBLFORMATPROC glad_glVertexAttribLFormat = NULL; | ||
960 | PFNGLVERTEXATTRIBLPOINTERPROC glad_glVertexAttribLPointer = NULL; | ||
961 | PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui = NULL; | ||
962 | PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv = NULL; | ||
963 | PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui = NULL; | ||
964 | PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv = NULL; | ||
965 | PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui = NULL; | ||
966 | PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv = NULL; | ||
967 | PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui = NULL; | ||
968 | PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv = NULL; | ||
969 | PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer = NULL; | ||
970 | PFNGLVERTEXBINDINGDIVISORPROC glad_glVertexBindingDivisor = NULL; | ||
971 | PFNGLVERTEXP2UIPROC glad_glVertexP2ui = NULL; | ||
972 | PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv = NULL; | ||
973 | PFNGLVERTEXP3UIPROC glad_glVertexP3ui = NULL; | ||
974 | PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv = NULL; | ||
975 | PFNGLVERTEXP4UIPROC glad_glVertexP4ui = NULL; | ||
976 | PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv = NULL; | ||
977 | PFNGLVIEWPORTPROC glad_glViewport = NULL; | ||
978 | PFNGLVIEWPORTARRAYVPROC glad_glViewportArrayv = NULL; | ||
979 | PFNGLVIEWPORTINDEXEDFPROC glad_glViewportIndexedf = NULL; | ||
980 | PFNGLVIEWPORTINDEXEDFVPROC glad_glViewportIndexedfv = NULL; | ||
981 | PFNGLWAITSYNCPROC glad_glWaitSync = NULL; | ||
982 | static void load_GL_VERSION_1_0(GLADloadproc load) { | ||
983 | if(!GLAD_GL_VERSION_1_0) return; | ||
984 | glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); | ||
985 | glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); | ||
986 | glad_glHint = (PFNGLHINTPROC)load("glHint"); | ||
987 | glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); | ||
988 | glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); | ||
989 | glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); | ||
990 | glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); | ||
991 | glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); | ||
992 | glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); | ||
993 | glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); | ||
994 | glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); | ||
995 | glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); | ||
996 | glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); | ||
997 | glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); | ||
998 | glad_glClear = (PFNGLCLEARPROC)load("glClear"); | ||
999 | glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); | ||
1000 | glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); | ||
1001 | glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); | ||
1002 | glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); | ||
1003 | glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); | ||
1004 | glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); | ||
1005 | glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); | ||
1006 | glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); | ||
1007 | glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); | ||
1008 | glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); | ||
1009 | glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); | ||
1010 | glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); | ||
1011 | glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); | ||
1012 | glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); | ||
1013 | glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); | ||
1014 | glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); | ||
1015 | glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); | ||
1016 | glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); | ||
1017 | glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); | ||
1018 | glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); | ||
1019 | glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); | ||
1020 | glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); | ||
1021 | glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); | ||
1022 | glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); | ||
1023 | glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); | ||
1024 | glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); | ||
1025 | glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); | ||
1026 | glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); | ||
1027 | glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); | ||
1028 | glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); | ||
1029 | glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); | ||
1030 | glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); | ||
1031 | glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); | ||
1032 | } | ||
1033 | static void load_GL_VERSION_1_1(GLADloadproc load) { | ||
1034 | if(!GLAD_GL_VERSION_1_1) return; | ||
1035 | glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); | ||
1036 | glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); | ||
1037 | glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); | ||
1038 | glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); | ||
1039 | glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); | ||
1040 | glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); | ||
1041 | glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); | ||
1042 | glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); | ||
1043 | glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); | ||
1044 | glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); | ||
1045 | glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); | ||
1046 | glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); | ||
1047 | glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); | ||
1048 | } | ||
1049 | static void load_GL_VERSION_1_2(GLADloadproc load) { | ||
1050 | if(!GLAD_GL_VERSION_1_2) return; | ||
1051 | glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); | ||
1052 | glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); | ||
1053 | glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); | ||
1054 | glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); | ||
1055 | } | ||
1056 | static void load_GL_VERSION_1_3(GLADloadproc load) { | ||
1057 | if(!GLAD_GL_VERSION_1_3) return; | ||
1058 | glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); | ||
1059 | glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); | ||
1060 | glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); | ||
1061 | glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); | ||
1062 | glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); | ||
1063 | glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); | ||
1064 | glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); | ||
1065 | glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); | ||
1066 | glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); | ||
1067 | } | ||
1068 | static void load_GL_VERSION_1_4(GLADloadproc load) { | ||
1069 | if(!GLAD_GL_VERSION_1_4) return; | ||
1070 | glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); | ||
1071 | glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); | ||
1072 | glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); | ||
1073 | glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); | ||
1074 | glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); | ||
1075 | glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); | ||
1076 | glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); | ||
1077 | glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); | ||
1078 | glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); | ||
1079 | } | ||
1080 | static void load_GL_VERSION_1_5(GLADloadproc load) { | ||
1081 | if(!GLAD_GL_VERSION_1_5) return; | ||
1082 | glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); | ||
1083 | glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); | ||
1084 | glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); | ||
1085 | glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); | ||
1086 | glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); | ||
1087 | glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); | ||
1088 | glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); | ||
1089 | glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); | ||
1090 | glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); | ||
1091 | glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); | ||
1092 | glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); | ||
1093 | glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); | ||
1094 | glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); | ||
1095 | glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); | ||
1096 | glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); | ||
1097 | glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); | ||
1098 | glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); | ||
1099 | glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); | ||
1100 | glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); | ||
1101 | } | ||
1102 | static void load_GL_VERSION_2_0(GLADloadproc load) { | ||
1103 | if(!GLAD_GL_VERSION_2_0) return; | ||
1104 | glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); | ||
1105 | glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); | ||
1106 | glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); | ||
1107 | glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); | ||
1108 | glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); | ||
1109 | glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); | ||
1110 | glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); | ||
1111 | glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); | ||
1112 | glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); | ||
1113 | glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); | ||
1114 | glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); | ||
1115 | glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); | ||
1116 | glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); | ||
1117 | glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); | ||
1118 | glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); | ||
1119 | glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); | ||
1120 | glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); | ||
1121 | glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); | ||
1122 | glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); | ||
1123 | glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); | ||
1124 | glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); | ||
1125 | glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); | ||
1126 | glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); | ||
1127 | glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); | ||
1128 | glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); | ||
1129 | glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); | ||
1130 | glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); | ||
1131 | glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); | ||
1132 | glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); | ||
1133 | glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); | ||
1134 | glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); | ||
1135 | glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); | ||
1136 | glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); | ||
1137 | glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); | ||
1138 | glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); | ||
1139 | glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); | ||
1140 | glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); | ||
1141 | glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); | ||
1142 | glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); | ||
1143 | glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); | ||
1144 | glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); | ||
1145 | glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); | ||
1146 | glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); | ||
1147 | glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); | ||
1148 | glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); | ||
1149 | glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); | ||
1150 | glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); | ||
1151 | glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); | ||
1152 | glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); | ||
1153 | glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); | ||
1154 | glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); | ||
1155 | glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); | ||
1156 | glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); | ||
1157 | glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); | ||
1158 | glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); | ||
1159 | glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); | ||
1160 | glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); | ||
1161 | glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); | ||
1162 | glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); | ||
1163 | glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); | ||
1164 | glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); | ||
1165 | glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); | ||
1166 | glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); | ||
1167 | glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); | ||
1168 | glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); | ||
1169 | glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); | ||
1170 | glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); | ||
1171 | glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); | ||
1172 | glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); | ||
1173 | glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); | ||
1174 | glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); | ||
1175 | glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); | ||
1176 | glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); | ||
1177 | glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); | ||
1178 | glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); | ||
1179 | glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); | ||
1180 | glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); | ||
1181 | glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); | ||
1182 | glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); | ||
1183 | glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); | ||
1184 | glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); | ||
1185 | glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); | ||
1186 | glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); | ||
1187 | glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); | ||
1188 | glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); | ||
1189 | glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); | ||
1190 | glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); | ||
1191 | glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); | ||
1192 | glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); | ||
1193 | glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); | ||
1194 | glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); | ||
1195 | glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); | ||
1196 | glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); | ||
1197 | } | ||
1198 | static void load_GL_VERSION_2_1(GLADloadproc load) { | ||
1199 | if(!GLAD_GL_VERSION_2_1) return; | ||
1200 | glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); | ||
1201 | glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); | ||
1202 | glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); | ||
1203 | glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); | ||
1204 | glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); | ||
1205 | glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); | ||
1206 | } | ||
1207 | static void load_GL_VERSION_3_0(GLADloadproc load) { | ||
1208 | if(!GLAD_GL_VERSION_3_0) return; | ||
1209 | glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); | ||
1210 | glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); | ||
1211 | glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); | ||
1212 | glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); | ||
1213 | glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); | ||
1214 | glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); | ||
1215 | glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); | ||
1216 | glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); | ||
1217 | glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); | ||
1218 | glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); | ||
1219 | glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); | ||
1220 | glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); | ||
1221 | glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); | ||
1222 | glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); | ||
1223 | glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); | ||
1224 | glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); | ||
1225 | glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); | ||
1226 | glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); | ||
1227 | glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); | ||
1228 | glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); | ||
1229 | glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); | ||
1230 | glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); | ||
1231 | glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); | ||
1232 | glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); | ||
1233 | glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); | ||
1234 | glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); | ||
1235 | glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); | ||
1236 | glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); | ||
1237 | glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); | ||
1238 | glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); | ||
1239 | glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); | ||
1240 | glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); | ||
1241 | glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); | ||
1242 | glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); | ||
1243 | glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); | ||
1244 | glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); | ||
1245 | glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); | ||
1246 | glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); | ||
1247 | glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); | ||
1248 | glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); | ||
1249 | glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); | ||
1250 | glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); | ||
1251 | glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); | ||
1252 | glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); | ||
1253 | glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); | ||
1254 | glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); | ||
1255 | glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); | ||
1256 | glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); | ||
1257 | glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); | ||
1258 | glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); | ||
1259 | glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); | ||
1260 | glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); | ||
1261 | glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); | ||
1262 | glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); | ||
1263 | glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); | ||
1264 | glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); | ||
1265 | glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); | ||
1266 | glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); | ||
1267 | glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); | ||
1268 | glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); | ||
1269 | glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); | ||
1270 | glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); | ||
1271 | glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); | ||
1272 | glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); | ||
1273 | glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); | ||
1274 | glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); | ||
1275 | glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); | ||
1276 | glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); | ||
1277 | glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); | ||
1278 | glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); | ||
1279 | glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); | ||
1280 | glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); | ||
1281 | glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); | ||
1282 | glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); | ||
1283 | glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); | ||
1284 | glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); | ||
1285 | glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); | ||
1286 | glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); | ||
1287 | glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); | ||
1288 | glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); | ||
1289 | glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); | ||
1290 | glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); | ||
1291 | glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); | ||
1292 | glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); | ||
1293 | } | ||
1294 | static void load_GL_VERSION_3_1(GLADloadproc load) { | ||
1295 | if(!GLAD_GL_VERSION_3_1) return; | ||
1296 | glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); | ||
1297 | glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); | ||
1298 | glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); | ||
1299 | glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); | ||
1300 | glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); | ||
1301 | glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); | ||
1302 | glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); | ||
1303 | glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); | ||
1304 | glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); | ||
1305 | glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); | ||
1306 | glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); | ||
1307 | glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); | ||
1308 | glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); | ||
1309 | glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); | ||
1310 | glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); | ||
1311 | } | ||
1312 | static void load_GL_VERSION_3_2(GLADloadproc load) { | ||
1313 | if(!GLAD_GL_VERSION_3_2) return; | ||
1314 | glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); | ||
1315 | glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); | ||
1316 | glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); | ||
1317 | glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); | ||
1318 | glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); | ||
1319 | glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); | ||
1320 | glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); | ||
1321 | glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); | ||
1322 | glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); | ||
1323 | glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); | ||
1324 | glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); | ||
1325 | glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); | ||
1326 | glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); | ||
1327 | glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); | ||
1328 | glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); | ||
1329 | glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); | ||
1330 | glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); | ||
1331 | glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); | ||
1332 | glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); | ||
1333 | } | ||
1334 | static void load_GL_VERSION_3_3(GLADloadproc load) { | ||
1335 | if(!GLAD_GL_VERSION_3_3) return; | ||
1336 | glad_glBindFragDataLocationIndexed = (PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)load("glBindFragDataLocationIndexed"); | ||
1337 | glad_glGetFragDataIndex = (PFNGLGETFRAGDATAINDEXPROC)load("glGetFragDataIndex"); | ||
1338 | glad_glGenSamplers = (PFNGLGENSAMPLERSPROC)load("glGenSamplers"); | ||
1339 | glad_glDeleteSamplers = (PFNGLDELETESAMPLERSPROC)load("glDeleteSamplers"); | ||
1340 | glad_glIsSampler = (PFNGLISSAMPLERPROC)load("glIsSampler"); | ||
1341 | glad_glBindSampler = (PFNGLBINDSAMPLERPROC)load("glBindSampler"); | ||
1342 | glad_glSamplerParameteri = (PFNGLSAMPLERPARAMETERIPROC)load("glSamplerParameteri"); | ||
1343 | glad_glSamplerParameteriv = (PFNGLSAMPLERPARAMETERIVPROC)load("glSamplerParameteriv"); | ||
1344 | glad_glSamplerParameterf = (PFNGLSAMPLERPARAMETERFPROC)load("glSamplerParameterf"); | ||
1345 | glad_glSamplerParameterfv = (PFNGLSAMPLERPARAMETERFVPROC)load("glSamplerParameterfv"); | ||
1346 | glad_glSamplerParameterIiv = (PFNGLSAMPLERPARAMETERIIVPROC)load("glSamplerParameterIiv"); | ||
1347 | glad_glSamplerParameterIuiv = (PFNGLSAMPLERPARAMETERIUIVPROC)load("glSamplerParameterIuiv"); | ||
1348 | glad_glGetSamplerParameteriv = (PFNGLGETSAMPLERPARAMETERIVPROC)load("glGetSamplerParameteriv"); | ||
1349 | glad_glGetSamplerParameterIiv = (PFNGLGETSAMPLERPARAMETERIIVPROC)load("glGetSamplerParameterIiv"); | ||
1350 | glad_glGetSamplerParameterfv = (PFNGLGETSAMPLERPARAMETERFVPROC)load("glGetSamplerParameterfv"); | ||
1351 | glad_glGetSamplerParameterIuiv = (PFNGLGETSAMPLERPARAMETERIUIVPROC)load("glGetSamplerParameterIuiv"); | ||
1352 | glad_glQueryCounter = (PFNGLQUERYCOUNTERPROC)load("glQueryCounter"); | ||
1353 | glad_glGetQueryObjecti64v = (PFNGLGETQUERYOBJECTI64VPROC)load("glGetQueryObjecti64v"); | ||
1354 | glad_glGetQueryObjectui64v = (PFNGLGETQUERYOBJECTUI64VPROC)load("glGetQueryObjectui64v"); | ||
1355 | glad_glVertexAttribDivisor = (PFNGLVERTEXATTRIBDIVISORPROC)load("glVertexAttribDivisor"); | ||
1356 | glad_glVertexAttribP1ui = (PFNGLVERTEXATTRIBP1UIPROC)load("glVertexAttribP1ui"); | ||
1357 | glad_glVertexAttribP1uiv = (PFNGLVERTEXATTRIBP1UIVPROC)load("glVertexAttribP1uiv"); | ||
1358 | glad_glVertexAttribP2ui = (PFNGLVERTEXATTRIBP2UIPROC)load("glVertexAttribP2ui"); | ||
1359 | glad_glVertexAttribP2uiv = (PFNGLVERTEXATTRIBP2UIVPROC)load("glVertexAttribP2uiv"); | ||
1360 | glad_glVertexAttribP3ui = (PFNGLVERTEXATTRIBP3UIPROC)load("glVertexAttribP3ui"); | ||
1361 | glad_glVertexAttribP3uiv = (PFNGLVERTEXATTRIBP3UIVPROC)load("glVertexAttribP3uiv"); | ||
1362 | glad_glVertexAttribP4ui = (PFNGLVERTEXATTRIBP4UIPROC)load("glVertexAttribP4ui"); | ||
1363 | glad_glVertexAttribP4uiv = (PFNGLVERTEXATTRIBP4UIVPROC)load("glVertexAttribP4uiv"); | ||
1364 | glad_glVertexP2ui = (PFNGLVERTEXP2UIPROC)load("glVertexP2ui"); | ||
1365 | glad_glVertexP2uiv = (PFNGLVERTEXP2UIVPROC)load("glVertexP2uiv"); | ||
1366 | glad_glVertexP3ui = (PFNGLVERTEXP3UIPROC)load("glVertexP3ui"); | ||
1367 | glad_glVertexP3uiv = (PFNGLVERTEXP3UIVPROC)load("glVertexP3uiv"); | ||
1368 | glad_glVertexP4ui = (PFNGLVERTEXP4UIPROC)load("glVertexP4ui"); | ||
1369 | glad_glVertexP4uiv = (PFNGLVERTEXP4UIVPROC)load("glVertexP4uiv"); | ||
1370 | glad_glTexCoordP1ui = (PFNGLTEXCOORDP1UIPROC)load("glTexCoordP1ui"); | ||
1371 | glad_glTexCoordP1uiv = (PFNGLTEXCOORDP1UIVPROC)load("glTexCoordP1uiv"); | ||
1372 | glad_glTexCoordP2ui = (PFNGLTEXCOORDP2UIPROC)load("glTexCoordP2ui"); | ||
1373 | glad_glTexCoordP2uiv = (PFNGLTEXCOORDP2UIVPROC)load("glTexCoordP2uiv"); | ||
1374 | glad_glTexCoordP3ui = (PFNGLTEXCOORDP3UIPROC)load("glTexCoordP3ui"); | ||
1375 | glad_glTexCoordP3uiv = (PFNGLTEXCOORDP3UIVPROC)load("glTexCoordP3uiv"); | ||
1376 | glad_glTexCoordP4ui = (PFNGLTEXCOORDP4UIPROC)load("glTexCoordP4ui"); | ||
1377 | glad_glTexCoordP4uiv = (PFNGLTEXCOORDP4UIVPROC)load("glTexCoordP4uiv"); | ||
1378 | glad_glMultiTexCoordP1ui = (PFNGLMULTITEXCOORDP1UIPROC)load("glMultiTexCoordP1ui"); | ||
1379 | glad_glMultiTexCoordP1uiv = (PFNGLMULTITEXCOORDP1UIVPROC)load("glMultiTexCoordP1uiv"); | ||
1380 | glad_glMultiTexCoordP2ui = (PFNGLMULTITEXCOORDP2UIPROC)load("glMultiTexCoordP2ui"); | ||
1381 | glad_glMultiTexCoordP2uiv = (PFNGLMULTITEXCOORDP2UIVPROC)load("glMultiTexCoordP2uiv"); | ||
1382 | glad_glMultiTexCoordP3ui = (PFNGLMULTITEXCOORDP3UIPROC)load("glMultiTexCoordP3ui"); | ||
1383 | glad_glMultiTexCoordP3uiv = (PFNGLMULTITEXCOORDP3UIVPROC)load("glMultiTexCoordP3uiv"); | ||
1384 | glad_glMultiTexCoordP4ui = (PFNGLMULTITEXCOORDP4UIPROC)load("glMultiTexCoordP4ui"); | ||
1385 | glad_glMultiTexCoordP4uiv = (PFNGLMULTITEXCOORDP4UIVPROC)load("glMultiTexCoordP4uiv"); | ||
1386 | glad_glNormalP3ui = (PFNGLNORMALP3UIPROC)load("glNormalP3ui"); | ||
1387 | glad_glNormalP3uiv = (PFNGLNORMALP3UIVPROC)load("glNormalP3uiv"); | ||
1388 | glad_glColorP3ui = (PFNGLCOLORP3UIPROC)load("glColorP3ui"); | ||
1389 | glad_glColorP3uiv = (PFNGLCOLORP3UIVPROC)load("glColorP3uiv"); | ||
1390 | glad_glColorP4ui = (PFNGLCOLORP4UIPROC)load("glColorP4ui"); | ||
1391 | glad_glColorP4uiv = (PFNGLCOLORP4UIVPROC)load("glColorP4uiv"); | ||
1392 | glad_glSecondaryColorP3ui = (PFNGLSECONDARYCOLORP3UIPROC)load("glSecondaryColorP3ui"); | ||
1393 | glad_glSecondaryColorP3uiv = (PFNGLSECONDARYCOLORP3UIVPROC)load("glSecondaryColorP3uiv"); | ||
1394 | } | ||
1395 | static void load_GL_VERSION_4_0(GLADloadproc load) { | ||
1396 | if(!GLAD_GL_VERSION_4_0) return; | ||
1397 | glad_glMinSampleShading = (PFNGLMINSAMPLESHADINGPROC)load("glMinSampleShading"); | ||
1398 | glad_glBlendEquationi = (PFNGLBLENDEQUATIONIPROC)load("glBlendEquationi"); | ||
1399 | glad_glBlendEquationSeparatei = (PFNGLBLENDEQUATIONSEPARATEIPROC)load("glBlendEquationSeparatei"); | ||
1400 | glad_glBlendFunci = (PFNGLBLENDFUNCIPROC)load("glBlendFunci"); | ||
1401 | glad_glBlendFuncSeparatei = (PFNGLBLENDFUNCSEPARATEIPROC)load("glBlendFuncSeparatei"); | ||
1402 | glad_glDrawArraysIndirect = (PFNGLDRAWARRAYSINDIRECTPROC)load("glDrawArraysIndirect"); | ||
1403 | glad_glDrawElementsIndirect = (PFNGLDRAWELEMENTSINDIRECTPROC)load("glDrawElementsIndirect"); | ||
1404 | glad_glUniform1d = (PFNGLUNIFORM1DPROC)load("glUniform1d"); | ||
1405 | glad_glUniform2d = (PFNGLUNIFORM2DPROC)load("glUniform2d"); | ||
1406 | glad_glUniform3d = (PFNGLUNIFORM3DPROC)load("glUniform3d"); | ||
1407 | glad_glUniform4d = (PFNGLUNIFORM4DPROC)load("glUniform4d"); | ||
1408 | glad_glUniform1dv = (PFNGLUNIFORM1DVPROC)load("glUniform1dv"); | ||
1409 | glad_glUniform2dv = (PFNGLUNIFORM2DVPROC)load("glUniform2dv"); | ||
1410 | glad_glUniform3dv = (PFNGLUNIFORM3DVPROC)load("glUniform3dv"); | ||
1411 | glad_glUniform4dv = (PFNGLUNIFORM4DVPROC)load("glUniform4dv"); | ||
1412 | glad_glUniformMatrix2dv = (PFNGLUNIFORMMATRIX2DVPROC)load("glUniformMatrix2dv"); | ||
1413 | glad_glUniformMatrix3dv = (PFNGLUNIFORMMATRIX3DVPROC)load("glUniformMatrix3dv"); | ||
1414 | glad_glUniformMatrix4dv = (PFNGLUNIFORMMATRIX4DVPROC)load("glUniformMatrix4dv"); | ||
1415 | glad_glUniformMatrix2x3dv = (PFNGLUNIFORMMATRIX2X3DVPROC)load("glUniformMatrix2x3dv"); | ||
1416 | glad_glUniformMatrix2x4dv = (PFNGLUNIFORMMATRIX2X4DVPROC)load("glUniformMatrix2x4dv"); | ||
1417 | glad_glUniformMatrix3x2dv = (PFNGLUNIFORMMATRIX3X2DVPROC)load("glUniformMatrix3x2dv"); | ||
1418 | glad_glUniformMatrix3x4dv = (PFNGLUNIFORMMATRIX3X4DVPROC)load("glUniformMatrix3x4dv"); | ||
1419 | glad_glUniformMatrix4x2dv = (PFNGLUNIFORMMATRIX4X2DVPROC)load("glUniformMatrix4x2dv"); | ||
1420 | glad_glUniformMatrix4x3dv = (PFNGLUNIFORMMATRIX4X3DVPROC)load("glUniformMatrix4x3dv"); | ||
1421 | glad_glGetUniformdv = (PFNGLGETUNIFORMDVPROC)load("glGetUniformdv"); | ||
1422 | glad_glGetSubroutineUniformLocation = (PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC)load("glGetSubroutineUniformLocation"); | ||
1423 | glad_glGetSubroutineIndex = (PFNGLGETSUBROUTINEINDEXPROC)load("glGetSubroutineIndex"); | ||
1424 | glad_glGetActiveSubroutineUniformiv = (PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC)load("glGetActiveSubroutineUniformiv"); | ||
1425 | glad_glGetActiveSubroutineUniformName = (PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC)load("glGetActiveSubroutineUniformName"); | ||
1426 | glad_glGetActiveSubroutineName = (PFNGLGETACTIVESUBROUTINENAMEPROC)load("glGetActiveSubroutineName"); | ||
1427 | glad_glUniformSubroutinesuiv = (PFNGLUNIFORMSUBROUTINESUIVPROC)load("glUniformSubroutinesuiv"); | ||
1428 | glad_glGetUniformSubroutineuiv = (PFNGLGETUNIFORMSUBROUTINEUIVPROC)load("glGetUniformSubroutineuiv"); | ||
1429 | glad_glGetProgramStageiv = (PFNGLGETPROGRAMSTAGEIVPROC)load("glGetProgramStageiv"); | ||
1430 | glad_glPatchParameteri = (PFNGLPATCHPARAMETERIPROC)load("glPatchParameteri"); | ||
1431 | glad_glPatchParameterfv = (PFNGLPATCHPARAMETERFVPROC)load("glPatchParameterfv"); | ||
1432 | glad_glBindTransformFeedback = (PFNGLBINDTRANSFORMFEEDBACKPROC)load("glBindTransformFeedback"); | ||
1433 | glad_glDeleteTransformFeedbacks = (PFNGLDELETETRANSFORMFEEDBACKSPROC)load("glDeleteTransformFeedbacks"); | ||
1434 | glad_glGenTransformFeedbacks = (PFNGLGENTRANSFORMFEEDBACKSPROC)load("glGenTransformFeedbacks"); | ||
1435 | glad_glIsTransformFeedback = (PFNGLISTRANSFORMFEEDBACKPROC)load("glIsTransformFeedback"); | ||
1436 | glad_glPauseTransformFeedback = (PFNGLPAUSETRANSFORMFEEDBACKPROC)load("glPauseTransformFeedback"); | ||
1437 | glad_glResumeTransformFeedback = (PFNGLRESUMETRANSFORMFEEDBACKPROC)load("glResumeTransformFeedback"); | ||
1438 | glad_glDrawTransformFeedback = (PFNGLDRAWTRANSFORMFEEDBACKPROC)load("glDrawTransformFeedback"); | ||
1439 | glad_glDrawTransformFeedbackStream = (PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC)load("glDrawTransformFeedbackStream"); | ||
1440 | glad_glBeginQueryIndexed = (PFNGLBEGINQUERYINDEXEDPROC)load("glBeginQueryIndexed"); | ||
1441 | glad_glEndQueryIndexed = (PFNGLENDQUERYINDEXEDPROC)load("glEndQueryIndexed"); | ||
1442 | glad_glGetQueryIndexediv = (PFNGLGETQUERYINDEXEDIVPROC)load("glGetQueryIndexediv"); | ||
1443 | } | ||
1444 | static void load_GL_VERSION_4_1(GLADloadproc load) { | ||
1445 | if(!GLAD_GL_VERSION_4_1) return; | ||
1446 | glad_glReleaseShaderCompiler = (PFNGLRELEASESHADERCOMPILERPROC)load("glReleaseShaderCompiler"); | ||
1447 | glad_glShaderBinary = (PFNGLSHADERBINARYPROC)load("glShaderBinary"); | ||
1448 | glad_glGetShaderPrecisionFormat = (PFNGLGETSHADERPRECISIONFORMATPROC)load("glGetShaderPrecisionFormat"); | ||
1449 | glad_glDepthRangef = (PFNGLDEPTHRANGEFPROC)load("glDepthRangef"); | ||
1450 | glad_glClearDepthf = (PFNGLCLEARDEPTHFPROC)load("glClearDepthf"); | ||
1451 | glad_glGetProgramBinary = (PFNGLGETPROGRAMBINARYPROC)load("glGetProgramBinary"); | ||
1452 | glad_glProgramBinary = (PFNGLPROGRAMBINARYPROC)load("glProgramBinary"); | ||
1453 | glad_glProgramParameteri = (PFNGLPROGRAMPARAMETERIPROC)load("glProgramParameteri"); | ||
1454 | glad_glUseProgramStages = (PFNGLUSEPROGRAMSTAGESPROC)load("glUseProgramStages"); | ||
1455 | glad_glActiveShaderProgram = (PFNGLACTIVESHADERPROGRAMPROC)load("glActiveShaderProgram"); | ||
1456 | glad_glCreateShaderProgramv = (PFNGLCREATESHADERPROGRAMVPROC)load("glCreateShaderProgramv"); | ||
1457 | glad_glBindProgramPipeline = (PFNGLBINDPROGRAMPIPELINEPROC)load("glBindProgramPipeline"); | ||
1458 | glad_glDeleteProgramPipelines = (PFNGLDELETEPROGRAMPIPELINESPROC)load("glDeleteProgramPipelines"); | ||
1459 | glad_glGenProgramPipelines = (PFNGLGENPROGRAMPIPELINESPROC)load("glGenProgramPipelines"); | ||
1460 | glad_glIsProgramPipeline = (PFNGLISPROGRAMPIPELINEPROC)load("glIsProgramPipeline"); | ||
1461 | glad_glGetProgramPipelineiv = (PFNGLGETPROGRAMPIPELINEIVPROC)load("glGetProgramPipelineiv"); | ||
1462 | glad_glProgramParameteri = (PFNGLPROGRAMPARAMETERIPROC)load("glProgramParameteri"); | ||
1463 | glad_glProgramUniform1i = (PFNGLPROGRAMUNIFORM1IPROC)load("glProgramUniform1i"); | ||
1464 | glad_glProgramUniform1iv = (PFNGLPROGRAMUNIFORM1IVPROC)load("glProgramUniform1iv"); | ||
1465 | glad_glProgramUniform1f = (PFNGLPROGRAMUNIFORM1FPROC)load("glProgramUniform1f"); | ||
1466 | glad_glProgramUniform1fv = (PFNGLPROGRAMUNIFORM1FVPROC)load("glProgramUniform1fv"); | ||
1467 | glad_glProgramUniform1d = (PFNGLPROGRAMUNIFORM1DPROC)load("glProgramUniform1d"); | ||
1468 | glad_glProgramUniform1dv = (PFNGLPROGRAMUNIFORM1DVPROC)load("glProgramUniform1dv"); | ||
1469 | glad_glProgramUniform1ui = (PFNGLPROGRAMUNIFORM1UIPROC)load("glProgramUniform1ui"); | ||
1470 | glad_glProgramUniform1uiv = (PFNGLPROGRAMUNIFORM1UIVPROC)load("glProgramUniform1uiv"); | ||
1471 | glad_glProgramUniform2i = (PFNGLPROGRAMUNIFORM2IPROC)load("glProgramUniform2i"); | ||
1472 | glad_glProgramUniform2iv = (PFNGLPROGRAMUNIFORM2IVPROC)load("glProgramUniform2iv"); | ||
1473 | glad_glProgramUniform2f = (PFNGLPROGRAMUNIFORM2FPROC)load("glProgramUniform2f"); | ||
1474 | glad_glProgramUniform2fv = (PFNGLPROGRAMUNIFORM2FVPROC)load("glProgramUniform2fv"); | ||
1475 | glad_glProgramUniform2d = (PFNGLPROGRAMUNIFORM2DPROC)load("glProgramUniform2d"); | ||
1476 | glad_glProgramUniform2dv = (PFNGLPROGRAMUNIFORM2DVPROC)load("glProgramUniform2dv"); | ||
1477 | glad_glProgramUniform2ui = (PFNGLPROGRAMUNIFORM2UIPROC)load("glProgramUniform2ui"); | ||
1478 | glad_glProgramUniform2uiv = (PFNGLPROGRAMUNIFORM2UIVPROC)load("glProgramUniform2uiv"); | ||
1479 | glad_glProgramUniform3i = (PFNGLPROGRAMUNIFORM3IPROC)load("glProgramUniform3i"); | ||
1480 | glad_glProgramUniform3iv = (PFNGLPROGRAMUNIFORM3IVPROC)load("glProgramUniform3iv"); | ||
1481 | glad_glProgramUniform3f = (PFNGLPROGRAMUNIFORM3FPROC)load("glProgramUniform3f"); | ||
1482 | glad_glProgramUniform3fv = (PFNGLPROGRAMUNIFORM3FVPROC)load("glProgramUniform3fv"); | ||
1483 | glad_glProgramUniform3d = (PFNGLPROGRAMUNIFORM3DPROC)load("glProgramUniform3d"); | ||
1484 | glad_glProgramUniform3dv = (PFNGLPROGRAMUNIFORM3DVPROC)load("glProgramUniform3dv"); | ||
1485 | glad_glProgramUniform3ui = (PFNGLPROGRAMUNIFORM3UIPROC)load("glProgramUniform3ui"); | ||
1486 | glad_glProgramUniform3uiv = (PFNGLPROGRAMUNIFORM3UIVPROC)load("glProgramUniform3uiv"); | ||
1487 | glad_glProgramUniform4i = (PFNGLPROGRAMUNIFORM4IPROC)load("glProgramUniform4i"); | ||
1488 | glad_glProgramUniform4iv = (PFNGLPROGRAMUNIFORM4IVPROC)load("glProgramUniform4iv"); | ||
1489 | glad_glProgramUniform4f = (PFNGLPROGRAMUNIFORM4FPROC)load("glProgramUniform4f"); | ||
1490 | glad_glProgramUniform4fv = (PFNGLPROGRAMUNIFORM4FVPROC)load("glProgramUniform4fv"); | ||
1491 | glad_glProgramUniform4d = (PFNGLPROGRAMUNIFORM4DPROC)load("glProgramUniform4d"); | ||
1492 | glad_glProgramUniform4dv = (PFNGLPROGRAMUNIFORM4DVPROC)load("glProgramUniform4dv"); | ||
1493 | glad_glProgramUniform4ui = (PFNGLPROGRAMUNIFORM4UIPROC)load("glProgramUniform4ui"); | ||
1494 | glad_glProgramUniform4uiv = (PFNGLPROGRAMUNIFORM4UIVPROC)load("glProgramUniform4uiv"); | ||
1495 | glad_glProgramUniformMatrix2fv = (PFNGLPROGRAMUNIFORMMATRIX2FVPROC)load("glProgramUniformMatrix2fv"); | ||
1496 | glad_glProgramUniformMatrix3fv = (PFNGLPROGRAMUNIFORMMATRIX3FVPROC)load("glProgramUniformMatrix3fv"); | ||
1497 | glad_glProgramUniformMatrix4fv = (PFNGLPROGRAMUNIFORMMATRIX4FVPROC)load("glProgramUniformMatrix4fv"); | ||
1498 | glad_glProgramUniformMatrix2dv = (PFNGLPROGRAMUNIFORMMATRIX2DVPROC)load("glProgramUniformMatrix2dv"); | ||
1499 | glad_glProgramUniformMatrix3dv = (PFNGLPROGRAMUNIFORMMATRIX3DVPROC)load("glProgramUniformMatrix3dv"); | ||
1500 | glad_glProgramUniformMatrix4dv = (PFNGLPROGRAMUNIFORMMATRIX4DVPROC)load("glProgramUniformMatrix4dv"); | ||
1501 | glad_glProgramUniformMatrix2x3fv = (PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC)load("glProgramUniformMatrix2x3fv"); | ||
1502 | glad_glProgramUniformMatrix3x2fv = (PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC)load("glProgramUniformMatrix3x2fv"); | ||
1503 | glad_glProgramUniformMatrix2x4fv = (PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC)load("glProgramUniformMatrix2x4fv"); | ||
1504 | glad_glProgramUniformMatrix4x2fv = (PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC)load("glProgramUniformMatrix4x2fv"); | ||
1505 | glad_glProgramUniformMatrix3x4fv = (PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC)load("glProgramUniformMatrix3x4fv"); | ||
1506 | glad_glProgramUniformMatrix4x3fv = (PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC)load("glProgramUniformMatrix4x3fv"); | ||
1507 | glad_glProgramUniformMatrix2x3dv = (PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC)load("glProgramUniformMatrix2x3dv"); | ||
1508 | glad_glProgramUniformMatrix3x2dv = (PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC)load("glProgramUniformMatrix3x2dv"); | ||
1509 | glad_glProgramUniformMatrix2x4dv = (PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC)load("glProgramUniformMatrix2x4dv"); | ||
1510 | glad_glProgramUniformMatrix4x2dv = (PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC)load("glProgramUniformMatrix4x2dv"); | ||
1511 | glad_glProgramUniformMatrix3x4dv = (PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC)load("glProgramUniformMatrix3x4dv"); | ||
1512 | glad_glProgramUniformMatrix4x3dv = (PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC)load("glProgramUniformMatrix4x3dv"); | ||
1513 | glad_glValidateProgramPipeline = (PFNGLVALIDATEPROGRAMPIPELINEPROC)load("glValidateProgramPipeline"); | ||
1514 | glad_glGetProgramPipelineInfoLog = (PFNGLGETPROGRAMPIPELINEINFOLOGPROC)load("glGetProgramPipelineInfoLog"); | ||
1515 | glad_glVertexAttribL1d = (PFNGLVERTEXATTRIBL1DPROC)load("glVertexAttribL1d"); | ||
1516 | glad_glVertexAttribL2d = (PFNGLVERTEXATTRIBL2DPROC)load("glVertexAttribL2d"); | ||
1517 | glad_glVertexAttribL3d = (PFNGLVERTEXATTRIBL3DPROC)load("glVertexAttribL3d"); | ||
1518 | glad_glVertexAttribL4d = (PFNGLVERTEXATTRIBL4DPROC)load("glVertexAttribL4d"); | ||
1519 | glad_glVertexAttribL1dv = (PFNGLVERTEXATTRIBL1DVPROC)load("glVertexAttribL1dv"); | ||
1520 | glad_glVertexAttribL2dv = (PFNGLVERTEXATTRIBL2DVPROC)load("glVertexAttribL2dv"); | ||
1521 | glad_glVertexAttribL3dv = (PFNGLVERTEXATTRIBL3DVPROC)load("glVertexAttribL3dv"); | ||
1522 | glad_glVertexAttribL4dv = (PFNGLVERTEXATTRIBL4DVPROC)load("glVertexAttribL4dv"); | ||
1523 | glad_glVertexAttribLPointer = (PFNGLVERTEXATTRIBLPOINTERPROC)load("glVertexAttribLPointer"); | ||
1524 | glad_glGetVertexAttribLdv = (PFNGLGETVERTEXATTRIBLDVPROC)load("glGetVertexAttribLdv"); | ||
1525 | glad_glViewportArrayv = (PFNGLVIEWPORTARRAYVPROC)load("glViewportArrayv"); | ||
1526 | glad_glViewportIndexedf = (PFNGLVIEWPORTINDEXEDFPROC)load("glViewportIndexedf"); | ||
1527 | glad_glViewportIndexedfv = (PFNGLVIEWPORTINDEXEDFVPROC)load("glViewportIndexedfv"); | ||
1528 | glad_glScissorArrayv = (PFNGLSCISSORARRAYVPROC)load("glScissorArrayv"); | ||
1529 | glad_glScissorIndexed = (PFNGLSCISSORINDEXEDPROC)load("glScissorIndexed"); | ||
1530 | glad_glScissorIndexedv = (PFNGLSCISSORINDEXEDVPROC)load("glScissorIndexedv"); | ||
1531 | glad_glDepthRangeArrayv = (PFNGLDEPTHRANGEARRAYVPROC)load("glDepthRangeArrayv"); | ||
1532 | glad_glDepthRangeIndexed = (PFNGLDEPTHRANGEINDEXEDPROC)load("glDepthRangeIndexed"); | ||
1533 | glad_glGetFloati_v = (PFNGLGETFLOATI_VPROC)load("glGetFloati_v"); | ||
1534 | glad_glGetDoublei_v = (PFNGLGETDOUBLEI_VPROC)load("glGetDoublei_v"); | ||
1535 | } | ||
1536 | static void load_GL_VERSION_4_2(GLADloadproc load) { | ||
1537 | if(!GLAD_GL_VERSION_4_2) return; | ||
1538 | glad_glDrawArraysInstancedBaseInstance = (PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC)load("glDrawArraysInstancedBaseInstance"); | ||
1539 | glad_glDrawElementsInstancedBaseInstance = (PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC)load("glDrawElementsInstancedBaseInstance"); | ||
1540 | glad_glDrawElementsInstancedBaseVertexBaseInstance = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC)load("glDrawElementsInstancedBaseVertexBaseInstance"); | ||
1541 | glad_glGetInternalformativ = (PFNGLGETINTERNALFORMATIVPROC)load("glGetInternalformativ"); | ||
1542 | glad_glGetActiveAtomicCounterBufferiv = (PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC)load("glGetActiveAtomicCounterBufferiv"); | ||
1543 | glad_glBindImageTexture = (PFNGLBINDIMAGETEXTUREPROC)load("glBindImageTexture"); | ||
1544 | glad_glMemoryBarrier = (PFNGLMEMORYBARRIERPROC)load("glMemoryBarrier"); | ||
1545 | glad_glTexStorage1D = (PFNGLTEXSTORAGE1DPROC)load("glTexStorage1D"); | ||
1546 | glad_glTexStorage2D = (PFNGLTEXSTORAGE2DPROC)load("glTexStorage2D"); | ||
1547 | glad_glTexStorage3D = (PFNGLTEXSTORAGE3DPROC)load("glTexStorage3D"); | ||
1548 | glad_glDrawTransformFeedbackInstanced = (PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC)load("glDrawTransformFeedbackInstanced"); | ||
1549 | glad_glDrawTransformFeedbackStreamInstanced = (PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC)load("glDrawTransformFeedbackStreamInstanced"); | ||
1550 | } | ||
1551 | static void load_GL_VERSION_4_3(GLADloadproc load) { | ||
1552 | if(!GLAD_GL_VERSION_4_3) return; | ||
1553 | glad_glClearBufferData = (PFNGLCLEARBUFFERDATAPROC)load("glClearBufferData"); | ||
1554 | glad_glClearBufferSubData = (PFNGLCLEARBUFFERSUBDATAPROC)load("glClearBufferSubData"); | ||
1555 | glad_glDispatchCompute = (PFNGLDISPATCHCOMPUTEPROC)load("glDispatchCompute"); | ||
1556 | glad_glDispatchComputeIndirect = (PFNGLDISPATCHCOMPUTEINDIRECTPROC)load("glDispatchComputeIndirect"); | ||
1557 | glad_glCopyImageSubData = (PFNGLCOPYIMAGESUBDATAPROC)load("glCopyImageSubData"); | ||
1558 | glad_glFramebufferParameteri = (PFNGLFRAMEBUFFERPARAMETERIPROC)load("glFramebufferParameteri"); | ||
1559 | glad_glGetFramebufferParameteriv = (PFNGLGETFRAMEBUFFERPARAMETERIVPROC)load("glGetFramebufferParameteriv"); | ||
1560 | glad_glGetInternalformati64v = (PFNGLGETINTERNALFORMATI64VPROC)load("glGetInternalformati64v"); | ||
1561 | glad_glInvalidateTexSubImage = (PFNGLINVALIDATETEXSUBIMAGEPROC)load("glInvalidateTexSubImage"); | ||
1562 | glad_glInvalidateTexImage = (PFNGLINVALIDATETEXIMAGEPROC)load("glInvalidateTexImage"); | ||
1563 | glad_glInvalidateBufferSubData = (PFNGLINVALIDATEBUFFERSUBDATAPROC)load("glInvalidateBufferSubData"); | ||
1564 | glad_glInvalidateBufferData = (PFNGLINVALIDATEBUFFERDATAPROC)load("glInvalidateBufferData"); | ||
1565 | glad_glInvalidateFramebuffer = (PFNGLINVALIDATEFRAMEBUFFERPROC)load("glInvalidateFramebuffer"); | ||
1566 | glad_glInvalidateSubFramebuffer = (PFNGLINVALIDATESUBFRAMEBUFFERPROC)load("glInvalidateSubFramebuffer"); | ||
1567 | glad_glMultiDrawArraysIndirect = (PFNGLMULTIDRAWARRAYSINDIRECTPROC)load("glMultiDrawArraysIndirect"); | ||
1568 | glad_glMultiDrawElementsIndirect = (PFNGLMULTIDRAWELEMENTSINDIRECTPROC)load("glMultiDrawElementsIndirect"); | ||
1569 | glad_glGetProgramInterfaceiv = (PFNGLGETPROGRAMINTERFACEIVPROC)load("glGetProgramInterfaceiv"); | ||
1570 | glad_glGetProgramResourceIndex = (PFNGLGETPROGRAMRESOURCEINDEXPROC)load("glGetProgramResourceIndex"); | ||
1571 | glad_glGetProgramResourceName = (PFNGLGETPROGRAMRESOURCENAMEPROC)load("glGetProgramResourceName"); | ||
1572 | glad_glGetProgramResourceiv = (PFNGLGETPROGRAMRESOURCEIVPROC)load("glGetProgramResourceiv"); | ||
1573 | glad_glGetProgramResourceLocation = (PFNGLGETPROGRAMRESOURCELOCATIONPROC)load("glGetProgramResourceLocation"); | ||
1574 | glad_glGetProgramResourceLocationIndex = (PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC)load("glGetProgramResourceLocationIndex"); | ||
1575 | glad_glShaderStorageBlockBinding = (PFNGLSHADERSTORAGEBLOCKBINDINGPROC)load("glShaderStorageBlockBinding"); | ||
1576 | glad_glTexBufferRange = (PFNGLTEXBUFFERRANGEPROC)load("glTexBufferRange"); | ||
1577 | glad_glTexStorage2DMultisample = (PFNGLTEXSTORAGE2DMULTISAMPLEPROC)load("glTexStorage2DMultisample"); | ||
1578 | glad_glTexStorage3DMultisample = (PFNGLTEXSTORAGE3DMULTISAMPLEPROC)load("glTexStorage3DMultisample"); | ||
1579 | glad_glTextureView = (PFNGLTEXTUREVIEWPROC)load("glTextureView"); | ||
1580 | glad_glBindVertexBuffer = (PFNGLBINDVERTEXBUFFERPROC)load("glBindVertexBuffer"); | ||
1581 | glad_glVertexAttribFormat = (PFNGLVERTEXATTRIBFORMATPROC)load("glVertexAttribFormat"); | ||
1582 | glad_glVertexAttribIFormat = (PFNGLVERTEXATTRIBIFORMATPROC)load("glVertexAttribIFormat"); | ||
1583 | glad_glVertexAttribLFormat = (PFNGLVERTEXATTRIBLFORMATPROC)load("glVertexAttribLFormat"); | ||
1584 | glad_glVertexAttribBinding = (PFNGLVERTEXATTRIBBINDINGPROC)load("glVertexAttribBinding"); | ||
1585 | glad_glVertexBindingDivisor = (PFNGLVERTEXBINDINGDIVISORPROC)load("glVertexBindingDivisor"); | ||
1586 | glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); | ||
1587 | glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); | ||
1588 | glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); | ||
1589 | glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); | ||
1590 | glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); | ||
1591 | glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); | ||
1592 | glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); | ||
1593 | glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); | ||
1594 | glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); | ||
1595 | glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); | ||
1596 | glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); | ||
1597 | } | ||
1598 | static void load_GL_VERSION_4_4(GLADloadproc load) { | ||
1599 | if(!GLAD_GL_VERSION_4_4) return; | ||
1600 | glad_glBufferStorage = (PFNGLBUFFERSTORAGEPROC)load("glBufferStorage"); | ||
1601 | glad_glClearTexImage = (PFNGLCLEARTEXIMAGEPROC)load("glClearTexImage"); | ||
1602 | glad_glClearTexSubImage = (PFNGLCLEARTEXSUBIMAGEPROC)load("glClearTexSubImage"); | ||
1603 | glad_glBindBuffersBase = (PFNGLBINDBUFFERSBASEPROC)load("glBindBuffersBase"); | ||
1604 | glad_glBindBuffersRange = (PFNGLBINDBUFFERSRANGEPROC)load("glBindBuffersRange"); | ||
1605 | glad_glBindTextures = (PFNGLBINDTEXTURESPROC)load("glBindTextures"); | ||
1606 | glad_glBindSamplers = (PFNGLBINDSAMPLERSPROC)load("glBindSamplers"); | ||
1607 | glad_glBindImageTextures = (PFNGLBINDIMAGETEXTURESPROC)load("glBindImageTextures"); | ||
1608 | glad_glBindVertexBuffers = (PFNGLBINDVERTEXBUFFERSPROC)load("glBindVertexBuffers"); | ||
1609 | } | ||
1610 | static void load_GL_VERSION_4_5(GLADloadproc load) { | ||
1611 | if(!GLAD_GL_VERSION_4_5) return; | ||
1612 | glad_glClipControl = (PFNGLCLIPCONTROLPROC)load("glClipControl"); | ||
1613 | glad_glCreateTransformFeedbacks = (PFNGLCREATETRANSFORMFEEDBACKSPROC)load("glCreateTransformFeedbacks"); | ||
1614 | glad_glTransformFeedbackBufferBase = (PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC)load("glTransformFeedbackBufferBase"); | ||
1615 | glad_glTransformFeedbackBufferRange = (PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC)load("glTransformFeedbackBufferRange"); | ||
1616 | glad_glGetTransformFeedbackiv = (PFNGLGETTRANSFORMFEEDBACKIVPROC)load("glGetTransformFeedbackiv"); | ||
1617 | glad_glGetTransformFeedbacki_v = (PFNGLGETTRANSFORMFEEDBACKI_VPROC)load("glGetTransformFeedbacki_v"); | ||
1618 | glad_glGetTransformFeedbacki64_v = (PFNGLGETTRANSFORMFEEDBACKI64_VPROC)load("glGetTransformFeedbacki64_v"); | ||
1619 | glad_glCreateBuffers = (PFNGLCREATEBUFFERSPROC)load("glCreateBuffers"); | ||
1620 | glad_glNamedBufferStorage = (PFNGLNAMEDBUFFERSTORAGEPROC)load("glNamedBufferStorage"); | ||
1621 | glad_glNamedBufferData = (PFNGLNAMEDBUFFERDATAPROC)load("glNamedBufferData"); | ||
1622 | glad_glNamedBufferSubData = (PFNGLNAMEDBUFFERSUBDATAPROC)load("glNamedBufferSubData"); | ||
1623 | glad_glCopyNamedBufferSubData = (PFNGLCOPYNAMEDBUFFERSUBDATAPROC)load("glCopyNamedBufferSubData"); | ||
1624 | glad_glClearNamedBufferData = (PFNGLCLEARNAMEDBUFFERDATAPROC)load("glClearNamedBufferData"); | ||
1625 | glad_glClearNamedBufferSubData = (PFNGLCLEARNAMEDBUFFERSUBDATAPROC)load("glClearNamedBufferSubData"); | ||
1626 | glad_glMapNamedBuffer = (PFNGLMAPNAMEDBUFFERPROC)load("glMapNamedBuffer"); | ||
1627 | glad_glMapNamedBufferRange = (PFNGLMAPNAMEDBUFFERRANGEPROC)load("glMapNamedBufferRange"); | ||
1628 | glad_glUnmapNamedBuffer = (PFNGLUNMAPNAMEDBUFFERPROC)load("glUnmapNamedBuffer"); | ||
1629 | glad_glFlushMappedNamedBufferRange = (PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC)load("glFlushMappedNamedBufferRange"); | ||
1630 | glad_glGetNamedBufferParameteriv = (PFNGLGETNAMEDBUFFERPARAMETERIVPROC)load("glGetNamedBufferParameteriv"); | ||
1631 | glad_glGetNamedBufferParameteri64v = (PFNGLGETNAMEDBUFFERPARAMETERI64VPROC)load("glGetNamedBufferParameteri64v"); | ||
1632 | glad_glGetNamedBufferPointerv = (PFNGLGETNAMEDBUFFERPOINTERVPROC)load("glGetNamedBufferPointerv"); | ||
1633 | glad_glGetNamedBufferSubData = (PFNGLGETNAMEDBUFFERSUBDATAPROC)load("glGetNamedBufferSubData"); | ||
1634 | glad_glCreateFramebuffers = (PFNGLCREATEFRAMEBUFFERSPROC)load("glCreateFramebuffers"); | ||
1635 | glad_glNamedFramebufferRenderbuffer = (PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC)load("glNamedFramebufferRenderbuffer"); | ||
1636 | glad_glNamedFramebufferParameteri = (PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC)load("glNamedFramebufferParameteri"); | ||
1637 | glad_glNamedFramebufferTexture = (PFNGLNAMEDFRAMEBUFFERTEXTUREPROC)load("glNamedFramebufferTexture"); | ||
1638 | glad_glNamedFramebufferTextureLayer = (PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC)load("glNamedFramebufferTextureLayer"); | ||
1639 | glad_glNamedFramebufferDrawBuffer = (PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC)load("glNamedFramebufferDrawBuffer"); | ||
1640 | glad_glNamedFramebufferDrawBuffers = (PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC)load("glNamedFramebufferDrawBuffers"); | ||
1641 | glad_glNamedFramebufferReadBuffer = (PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC)load("glNamedFramebufferReadBuffer"); | ||
1642 | glad_glInvalidateNamedFramebufferData = (PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC)load("glInvalidateNamedFramebufferData"); | ||
1643 | glad_glInvalidateNamedFramebufferSubData = (PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC)load("glInvalidateNamedFramebufferSubData"); | ||
1644 | glad_glClearNamedFramebufferiv = (PFNGLCLEARNAMEDFRAMEBUFFERIVPROC)load("glClearNamedFramebufferiv"); | ||
1645 | glad_glClearNamedFramebufferuiv = (PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC)load("glClearNamedFramebufferuiv"); | ||
1646 | glad_glClearNamedFramebufferfv = (PFNGLCLEARNAMEDFRAMEBUFFERFVPROC)load("glClearNamedFramebufferfv"); | ||
1647 | glad_glClearNamedFramebufferfi = (PFNGLCLEARNAMEDFRAMEBUFFERFIPROC)load("glClearNamedFramebufferfi"); | ||
1648 | glad_glBlitNamedFramebuffer = (PFNGLBLITNAMEDFRAMEBUFFERPROC)load("glBlitNamedFramebuffer"); | ||
1649 | glad_glCheckNamedFramebufferStatus = (PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC)load("glCheckNamedFramebufferStatus"); | ||
1650 | glad_glGetNamedFramebufferParameteriv = (PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC)load("glGetNamedFramebufferParameteriv"); | ||
1651 | glad_glGetNamedFramebufferAttachmentParameteriv = (PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetNamedFramebufferAttachmentParameteriv"); | ||
1652 | glad_glCreateRenderbuffers = (PFNGLCREATERENDERBUFFERSPROC)load("glCreateRenderbuffers"); | ||
1653 | glad_glNamedRenderbufferStorage = (PFNGLNAMEDRENDERBUFFERSTORAGEPROC)load("glNamedRenderbufferStorage"); | ||
1654 | glad_glNamedRenderbufferStorageMultisample = (PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glNamedRenderbufferStorageMultisample"); | ||
1655 | glad_glGetNamedRenderbufferParameteriv = (PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC)load("glGetNamedRenderbufferParameteriv"); | ||
1656 | glad_glCreateTextures = (PFNGLCREATETEXTURESPROC)load("glCreateTextures"); | ||
1657 | glad_glTextureBuffer = (PFNGLTEXTUREBUFFERPROC)load("glTextureBuffer"); | ||
1658 | glad_glTextureBufferRange = (PFNGLTEXTUREBUFFERRANGEPROC)load("glTextureBufferRange"); | ||
1659 | glad_glTextureStorage1D = (PFNGLTEXTURESTORAGE1DPROC)load("glTextureStorage1D"); | ||
1660 | glad_glTextureStorage2D = (PFNGLTEXTURESTORAGE2DPROC)load("glTextureStorage2D"); | ||
1661 | glad_glTextureStorage3D = (PFNGLTEXTURESTORAGE3DPROC)load("glTextureStorage3D"); | ||
1662 | glad_glTextureStorage2DMultisample = (PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC)load("glTextureStorage2DMultisample"); | ||
1663 | glad_glTextureStorage3DMultisample = (PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC)load("glTextureStorage3DMultisample"); | ||
1664 | glad_glTextureSubImage1D = (PFNGLTEXTURESUBIMAGE1DPROC)load("glTextureSubImage1D"); | ||
1665 | glad_glTextureSubImage2D = (PFNGLTEXTURESUBIMAGE2DPROC)load("glTextureSubImage2D"); | ||
1666 | glad_glTextureSubImage3D = (PFNGLTEXTURESUBIMAGE3DPROC)load("glTextureSubImage3D"); | ||
1667 | glad_glCompressedTextureSubImage1D = (PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC)load("glCompressedTextureSubImage1D"); | ||
1668 | glad_glCompressedTextureSubImage2D = (PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC)load("glCompressedTextureSubImage2D"); | ||
1669 | glad_glCompressedTextureSubImage3D = (PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC)load("glCompressedTextureSubImage3D"); | ||
1670 | glad_glCopyTextureSubImage1D = (PFNGLCOPYTEXTURESUBIMAGE1DPROC)load("glCopyTextureSubImage1D"); | ||
1671 | glad_glCopyTextureSubImage2D = (PFNGLCOPYTEXTURESUBIMAGE2DPROC)load("glCopyTextureSubImage2D"); | ||
1672 | glad_glCopyTextureSubImage3D = (PFNGLCOPYTEXTURESUBIMAGE3DPROC)load("glCopyTextureSubImage3D"); | ||
1673 | glad_glTextureParameterf = (PFNGLTEXTUREPARAMETERFPROC)load("glTextureParameterf"); | ||
1674 | glad_glTextureParameterfv = (PFNGLTEXTUREPARAMETERFVPROC)load("glTextureParameterfv"); | ||
1675 | glad_glTextureParameteri = (PFNGLTEXTUREPARAMETERIPROC)load("glTextureParameteri"); | ||
1676 | glad_glTextureParameterIiv = (PFNGLTEXTUREPARAMETERIIVPROC)load("glTextureParameterIiv"); | ||
1677 | glad_glTextureParameterIuiv = (PFNGLTEXTUREPARAMETERIUIVPROC)load("glTextureParameterIuiv"); | ||
1678 | glad_glTextureParameteriv = (PFNGLTEXTUREPARAMETERIVPROC)load("glTextureParameteriv"); | ||
1679 | glad_glGenerateTextureMipmap = (PFNGLGENERATETEXTUREMIPMAPPROC)load("glGenerateTextureMipmap"); | ||
1680 | glad_glBindTextureUnit = (PFNGLBINDTEXTUREUNITPROC)load("glBindTextureUnit"); | ||
1681 | glad_glGetTextureImage = (PFNGLGETTEXTUREIMAGEPROC)load("glGetTextureImage"); | ||
1682 | glad_glGetCompressedTextureImage = (PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC)load("glGetCompressedTextureImage"); | ||
1683 | glad_glGetTextureLevelParameterfv = (PFNGLGETTEXTURELEVELPARAMETERFVPROC)load("glGetTextureLevelParameterfv"); | ||
1684 | glad_glGetTextureLevelParameteriv = (PFNGLGETTEXTURELEVELPARAMETERIVPROC)load("glGetTextureLevelParameteriv"); | ||
1685 | glad_glGetTextureParameterfv = (PFNGLGETTEXTUREPARAMETERFVPROC)load("glGetTextureParameterfv"); | ||
1686 | glad_glGetTextureParameterIiv = (PFNGLGETTEXTUREPARAMETERIIVPROC)load("glGetTextureParameterIiv"); | ||
1687 | glad_glGetTextureParameterIuiv = (PFNGLGETTEXTUREPARAMETERIUIVPROC)load("glGetTextureParameterIuiv"); | ||
1688 | glad_glGetTextureParameteriv = (PFNGLGETTEXTUREPARAMETERIVPROC)load("glGetTextureParameteriv"); | ||
1689 | glad_glCreateVertexArrays = (PFNGLCREATEVERTEXARRAYSPROC)load("glCreateVertexArrays"); | ||
1690 | glad_glDisableVertexArrayAttrib = (PFNGLDISABLEVERTEXARRAYATTRIBPROC)load("glDisableVertexArrayAttrib"); | ||
1691 | glad_glEnableVertexArrayAttrib = (PFNGLENABLEVERTEXARRAYATTRIBPROC)load("glEnableVertexArrayAttrib"); | ||
1692 | glad_glVertexArrayElementBuffer = (PFNGLVERTEXARRAYELEMENTBUFFERPROC)load("glVertexArrayElementBuffer"); | ||
1693 | glad_glVertexArrayVertexBuffer = (PFNGLVERTEXARRAYVERTEXBUFFERPROC)load("glVertexArrayVertexBuffer"); | ||
1694 | glad_glVertexArrayVertexBuffers = (PFNGLVERTEXARRAYVERTEXBUFFERSPROC)load("glVertexArrayVertexBuffers"); | ||
1695 | glad_glVertexArrayAttribBinding = (PFNGLVERTEXARRAYATTRIBBINDINGPROC)load("glVertexArrayAttribBinding"); | ||
1696 | glad_glVertexArrayAttribFormat = (PFNGLVERTEXARRAYATTRIBFORMATPROC)load("glVertexArrayAttribFormat"); | ||
1697 | glad_glVertexArrayAttribIFormat = (PFNGLVERTEXARRAYATTRIBIFORMATPROC)load("glVertexArrayAttribIFormat"); | ||
1698 | glad_glVertexArrayAttribLFormat = (PFNGLVERTEXARRAYATTRIBLFORMATPROC)load("glVertexArrayAttribLFormat"); | ||
1699 | glad_glVertexArrayBindingDivisor = (PFNGLVERTEXARRAYBINDINGDIVISORPROC)load("glVertexArrayBindingDivisor"); | ||
1700 | glad_glGetVertexArrayiv = (PFNGLGETVERTEXARRAYIVPROC)load("glGetVertexArrayiv"); | ||
1701 | glad_glGetVertexArrayIndexediv = (PFNGLGETVERTEXARRAYINDEXEDIVPROC)load("glGetVertexArrayIndexediv"); | ||
1702 | glad_glGetVertexArrayIndexed64iv = (PFNGLGETVERTEXARRAYINDEXED64IVPROC)load("glGetVertexArrayIndexed64iv"); | ||
1703 | glad_glCreateSamplers = (PFNGLCREATESAMPLERSPROC)load("glCreateSamplers"); | ||
1704 | glad_glCreateProgramPipelines = (PFNGLCREATEPROGRAMPIPELINESPROC)load("glCreateProgramPipelines"); | ||
1705 | glad_glCreateQueries = (PFNGLCREATEQUERIESPROC)load("glCreateQueries"); | ||
1706 | glad_glGetQueryBufferObjecti64v = (PFNGLGETQUERYBUFFEROBJECTI64VPROC)load("glGetQueryBufferObjecti64v"); | ||
1707 | glad_glGetQueryBufferObjectiv = (PFNGLGETQUERYBUFFEROBJECTIVPROC)load("glGetQueryBufferObjectiv"); | ||
1708 | glad_glGetQueryBufferObjectui64v = (PFNGLGETQUERYBUFFEROBJECTUI64VPROC)load("glGetQueryBufferObjectui64v"); | ||
1709 | glad_glGetQueryBufferObjectuiv = (PFNGLGETQUERYBUFFEROBJECTUIVPROC)load("glGetQueryBufferObjectuiv"); | ||
1710 | glad_glMemoryBarrierByRegion = (PFNGLMEMORYBARRIERBYREGIONPROC)load("glMemoryBarrierByRegion"); | ||
1711 | glad_glGetTextureSubImage = (PFNGLGETTEXTURESUBIMAGEPROC)load("glGetTextureSubImage"); | ||
1712 | glad_glGetCompressedTextureSubImage = (PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC)load("glGetCompressedTextureSubImage"); | ||
1713 | glad_glGetGraphicsResetStatus = (PFNGLGETGRAPHICSRESETSTATUSPROC)load("glGetGraphicsResetStatus"); | ||
1714 | glad_glGetnCompressedTexImage = (PFNGLGETNCOMPRESSEDTEXIMAGEPROC)load("glGetnCompressedTexImage"); | ||
1715 | glad_glGetnTexImage = (PFNGLGETNTEXIMAGEPROC)load("glGetnTexImage"); | ||
1716 | glad_glGetnUniformdv = (PFNGLGETNUNIFORMDVPROC)load("glGetnUniformdv"); | ||
1717 | glad_glGetnUniformfv = (PFNGLGETNUNIFORMFVPROC)load("glGetnUniformfv"); | ||
1718 | glad_glGetnUniformiv = (PFNGLGETNUNIFORMIVPROC)load("glGetnUniformiv"); | ||
1719 | glad_glGetnUniformuiv = (PFNGLGETNUNIFORMUIVPROC)load("glGetnUniformuiv"); | ||
1720 | glad_glReadnPixels = (PFNGLREADNPIXELSPROC)load("glReadnPixels"); | ||
1721 | glad_glGetnMapdv = (PFNGLGETNMAPDVPROC)load("glGetnMapdv"); | ||
1722 | glad_glGetnMapfv = (PFNGLGETNMAPFVPROC)load("glGetnMapfv"); | ||
1723 | glad_glGetnMapiv = (PFNGLGETNMAPIVPROC)load("glGetnMapiv"); | ||
1724 | glad_glGetnPixelMapfv = (PFNGLGETNPIXELMAPFVPROC)load("glGetnPixelMapfv"); | ||
1725 | glad_glGetnPixelMapuiv = (PFNGLGETNPIXELMAPUIVPROC)load("glGetnPixelMapuiv"); | ||
1726 | glad_glGetnPixelMapusv = (PFNGLGETNPIXELMAPUSVPROC)load("glGetnPixelMapusv"); | ||
1727 | glad_glGetnPolygonStipple = (PFNGLGETNPOLYGONSTIPPLEPROC)load("glGetnPolygonStipple"); | ||
1728 | glad_glGetnColorTable = (PFNGLGETNCOLORTABLEPROC)load("glGetnColorTable"); | ||
1729 | glad_glGetnConvolutionFilter = (PFNGLGETNCONVOLUTIONFILTERPROC)load("glGetnConvolutionFilter"); | ||
1730 | glad_glGetnSeparableFilter = (PFNGLGETNSEPARABLEFILTERPROC)load("glGetnSeparableFilter"); | ||
1731 | glad_glGetnHistogram = (PFNGLGETNHISTOGRAMPROC)load("glGetnHistogram"); | ||
1732 | glad_glGetnMinmax = (PFNGLGETNMINMAXPROC)load("glGetnMinmax"); | ||
1733 | glad_glTextureBarrier = (PFNGLTEXTUREBARRIERPROC)load("glTextureBarrier"); | ||
1734 | } | ||
1735 | static void load_GL_VERSION_4_6(GLADloadproc load) { | ||
1736 | if(!GLAD_GL_VERSION_4_6) return; | ||
1737 | glad_glSpecializeShader = (PFNGLSPECIALIZESHADERPROC)load("glSpecializeShader"); | ||
1738 | glad_glMultiDrawArraysIndirectCount = (PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC)load("glMultiDrawArraysIndirectCount"); | ||
1739 | glad_glMultiDrawElementsIndirectCount = (PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC)load("glMultiDrawElementsIndirectCount"); | ||
1740 | glad_glPolygonOffsetClamp = (PFNGLPOLYGONOFFSETCLAMPPROC)load("glPolygonOffsetClamp"); | ||
1741 | } | ||
1742 | static int find_extensionsGL(void) { | ||
1743 | if (!get_exts()) return 0; | ||
1744 | (void)&has_ext; | ||
1745 | free_exts(); | ||
1746 | return 1; | ||
1747 | } | ||
1748 | |||
1749 | static void find_coreGL(void) { | ||
1750 | |||
1751 | /* Thank you @elmindreda | ||
1752 | * https://github.com/elmindreda/greg/blob/master/templates/greg.c.in#L176 | ||
1753 | * https://github.com/glfw/glfw/blob/master/src/context.c#L36 | ||
1754 | */ | ||
1755 | int i, major, minor; | ||
1756 | |||
1757 | const char* version; | ||
1758 | const char* prefixes[] = { | ||
1759 | "OpenGL ES-CM ", | ||
1760 | "OpenGL ES-CL ", | ||
1761 | "OpenGL ES ", | ||
1762 | NULL | ||
1763 | }; | ||
1764 | |||
1765 | version = (const char*) glGetString(GL_VERSION); | ||
1766 | if (!version) return; | ||
1767 | |||
1768 | for (i = 0; prefixes[i]; i++) { | ||
1769 | const size_t length = strlen(prefixes[i]); | ||
1770 | if (strncmp(version, prefixes[i], length) == 0) { | ||
1771 | version += length; | ||
1772 | break; | ||
1773 | } | ||
1774 | } | ||
1775 | |||
1776 | /* PR #18 */ | ||
1777 | #ifdef _MSC_VER | ||
1778 | sscanf_s(version, "%d.%d", &major, &minor); | ||
1779 | #else | ||
1780 | sscanf(version, "%d.%d", &major, &minor); | ||
1781 | #endif | ||
1782 | |||
1783 | GLVersion.major = major; GLVersion.minor = minor; | ||
1784 | max_loaded_major = major; max_loaded_minor = minor; | ||
1785 | GLAD_GL_VERSION_1_0 = (major == 1 && minor >= 0) || major > 1; | ||
1786 | GLAD_GL_VERSION_1_1 = (major == 1 && minor >= 1) || major > 1; | ||
1787 | GLAD_GL_VERSION_1_2 = (major == 1 && minor >= 2) || major > 1; | ||
1788 | GLAD_GL_VERSION_1_3 = (major == 1 && minor >= 3) || major > 1; | ||
1789 | GLAD_GL_VERSION_1_4 = (major == 1 && minor >= 4) || major > 1; | ||
1790 | GLAD_GL_VERSION_1_5 = (major == 1 && minor >= 5) || major > 1; | ||
1791 | GLAD_GL_VERSION_2_0 = (major == 2 && minor >= 0) || major > 2; | ||
1792 | GLAD_GL_VERSION_2_1 = (major == 2 && minor >= 1) || major > 2; | ||
1793 | GLAD_GL_VERSION_3_0 = (major == 3 && minor >= 0) || major > 3; | ||
1794 | GLAD_GL_VERSION_3_1 = (major == 3 && minor >= 1) || major > 3; | ||
1795 | GLAD_GL_VERSION_3_2 = (major == 3 && minor >= 2) || major > 3; | ||
1796 | GLAD_GL_VERSION_3_3 = (major == 3 && minor >= 3) || major > 3; | ||
1797 | GLAD_GL_VERSION_4_0 = (major == 4 && minor >= 0) || major > 4; | ||
1798 | GLAD_GL_VERSION_4_1 = (major == 4 && minor >= 1) || major > 4; | ||
1799 | GLAD_GL_VERSION_4_2 = (major == 4 && minor >= 2) || major > 4; | ||
1800 | GLAD_GL_VERSION_4_3 = (major == 4 && minor >= 3) || major > 4; | ||
1801 | GLAD_GL_VERSION_4_4 = (major == 4 && minor >= 4) || major > 4; | ||
1802 | GLAD_GL_VERSION_4_5 = (major == 4 && minor >= 5) || major > 4; | ||
1803 | GLAD_GL_VERSION_4_6 = (major == 4 && minor >= 6) || major > 4; | ||
1804 | if (GLVersion.major > 4 || (GLVersion.major >= 4 && GLVersion.minor >= 6)) { | ||
1805 | max_loaded_major = 4; | ||
1806 | max_loaded_minor = 6; | ||
1807 | } | ||
1808 | } | ||
1809 | |||
1810 | int gladLoadGLLoader(GLADloadproc load) { | ||
1811 | GLVersion.major = 0; GLVersion.minor = 0; | ||
1812 | glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); | ||
1813 | if(glGetString == NULL) return 0; | ||
1814 | if(glGetString(GL_VERSION) == NULL) return 0; | ||
1815 | find_coreGL(); | ||
1816 | load_GL_VERSION_1_0(load); | ||
1817 | load_GL_VERSION_1_1(load); | ||
1818 | load_GL_VERSION_1_2(load); | ||
1819 | load_GL_VERSION_1_3(load); | ||
1820 | load_GL_VERSION_1_4(load); | ||
1821 | load_GL_VERSION_1_5(load); | ||
1822 | load_GL_VERSION_2_0(load); | ||
1823 | load_GL_VERSION_2_1(load); | ||
1824 | load_GL_VERSION_3_0(load); | ||
1825 | load_GL_VERSION_3_1(load); | ||
1826 | load_GL_VERSION_3_2(load); | ||
1827 | load_GL_VERSION_3_3(load); | ||
1828 | load_GL_VERSION_4_0(load); | ||
1829 | load_GL_VERSION_4_1(load); | ||
1830 | load_GL_VERSION_4_2(load); | ||
1831 | load_GL_VERSION_4_3(load); | ||
1832 | load_GL_VERSION_4_4(load); | ||
1833 | load_GL_VERSION_4_5(load); | ||
1834 | load_GL_VERSION_4_6(load); | ||
1835 | |||
1836 | if (!find_extensionsGL()) return 0; | ||
1837 | return GLVersion.major != 0 || GLVersion.minor != 0; | ||
1838 | } | ||
1839 | |||
1840 | static void load_GL_ES_VERSION_2_0(GLADloadproc load) { | ||
1841 | if(!GLAD_GL_ES_VERSION_2_0) return; | ||
1842 | glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); | ||
1843 | glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); | ||
1844 | glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); | ||
1845 | glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); | ||
1846 | glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); | ||
1847 | glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); | ||
1848 | glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); | ||
1849 | glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); | ||
1850 | glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); | ||
1851 | glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); | ||
1852 | glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); | ||
1853 | glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); | ||
1854 | glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); | ||
1855 | glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); | ||
1856 | glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); | ||
1857 | glad_glClear = (PFNGLCLEARPROC)load("glClear"); | ||
1858 | glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); | ||
1859 | glad_glClearDepthf = (PFNGLCLEARDEPTHFPROC)load("glClearDepthf"); | ||
1860 | glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); | ||
1861 | glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); | ||
1862 | glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); | ||
1863 | glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); | ||
1864 | glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); | ||
1865 | glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); | ||
1866 | glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); | ||
1867 | glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); | ||
1868 | glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); | ||
1869 | glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); | ||
1870 | glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); | ||
1871 | glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); | ||
1872 | glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); | ||
1873 | glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); | ||
1874 | glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); | ||
1875 | glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); | ||
1876 | glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); | ||
1877 | glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); | ||
1878 | glad_glDepthRangef = (PFNGLDEPTHRANGEFPROC)load("glDepthRangef"); | ||
1879 | glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); | ||
1880 | glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); | ||
1881 | glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); | ||
1882 | glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); | ||
1883 | glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); | ||
1884 | glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); | ||
1885 | glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); | ||
1886 | glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); | ||
1887 | glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); | ||
1888 | glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); | ||
1889 | glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); | ||
1890 | glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); | ||
1891 | glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); | ||
1892 | glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); | ||
1893 | glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); | ||
1894 | glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); | ||
1895 | glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); | ||
1896 | glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); | ||
1897 | glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); | ||
1898 | glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); | ||
1899 | glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); | ||
1900 | glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); | ||
1901 | glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); | ||
1902 | glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); | ||
1903 | glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); | ||
1904 | glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); | ||
1905 | glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); | ||
1906 | glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); | ||
1907 | glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); | ||
1908 | glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); | ||
1909 | glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); | ||
1910 | glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); | ||
1911 | glad_glGetShaderPrecisionFormat = (PFNGLGETSHADERPRECISIONFORMATPROC)load("glGetShaderPrecisionFormat"); | ||
1912 | glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); | ||
1913 | glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); | ||
1914 | glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); | ||
1915 | glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); | ||
1916 | glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); | ||
1917 | glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); | ||
1918 | glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); | ||
1919 | glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); | ||
1920 | glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); | ||
1921 | glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); | ||
1922 | glad_glHint = (PFNGLHINTPROC)load("glHint"); | ||
1923 | glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); | ||
1924 | glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); | ||
1925 | glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); | ||
1926 | glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); | ||
1927 | glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); | ||
1928 | glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); | ||
1929 | glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); | ||
1930 | glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); | ||
1931 | glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); | ||
1932 | glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); | ||
1933 | glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); | ||
1934 | glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); | ||
1935 | glad_glReleaseShaderCompiler = (PFNGLRELEASESHADERCOMPILERPROC)load("glReleaseShaderCompiler"); | ||
1936 | glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); | ||
1937 | glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); | ||
1938 | glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); | ||
1939 | glad_glShaderBinary = (PFNGLSHADERBINARYPROC)load("glShaderBinary"); | ||
1940 | glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); | ||
1941 | glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); | ||
1942 | glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); | ||
1943 | glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); | ||
1944 | glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); | ||
1945 | glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); | ||
1946 | glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); | ||
1947 | glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); | ||
1948 | glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); | ||
1949 | glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); | ||
1950 | glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); | ||
1951 | glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); | ||
1952 | glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); | ||
1953 | glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); | ||
1954 | glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); | ||
1955 | glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); | ||
1956 | glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); | ||
1957 | glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); | ||
1958 | glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); | ||
1959 | glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); | ||
1960 | glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); | ||
1961 | glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); | ||
1962 | glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); | ||
1963 | glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); | ||
1964 | glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); | ||
1965 | glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); | ||
1966 | glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); | ||
1967 | glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); | ||
1968 | glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); | ||
1969 | glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); | ||
1970 | glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); | ||
1971 | glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); | ||
1972 | glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); | ||
1973 | glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); | ||
1974 | glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); | ||
1975 | glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); | ||
1976 | glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); | ||
1977 | glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); | ||
1978 | glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); | ||
1979 | glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); | ||
1980 | glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); | ||
1981 | glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); | ||
1982 | glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); | ||
1983 | glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); | ||
1984 | } | ||
1985 | static void load_GL_ES_VERSION_3_0(GLADloadproc load) { | ||
1986 | if(!GLAD_GL_ES_VERSION_3_0) return; | ||
1987 | glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); | ||
1988 | glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); | ||
1989 | glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); | ||
1990 | glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); | ||
1991 | glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); | ||
1992 | glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); | ||
1993 | glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); | ||
1994 | glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); | ||
1995 | glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); | ||
1996 | glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); | ||
1997 | glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); | ||
1998 | glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); | ||
1999 | glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); | ||
2000 | glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); | ||
2001 | glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); | ||
2002 | glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); | ||
2003 | glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); | ||
2004 | glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); | ||
2005 | glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); | ||
2006 | glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); | ||
2007 | glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); | ||
2008 | glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); | ||
2009 | glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); | ||
2010 | glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); | ||
2011 | glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); | ||
2012 | glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); | ||
2013 | glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); | ||
2014 | glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); | ||
2015 | glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); | ||
2016 | glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); | ||
2017 | glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); | ||
2018 | glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); | ||
2019 | glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); | ||
2020 | glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); | ||
2021 | glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); | ||
2022 | glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); | ||
2023 | glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); | ||
2024 | glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); | ||
2025 | glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); | ||
2026 | glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); | ||
2027 | glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); | ||
2028 | glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); | ||
2029 | glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); | ||
2030 | glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); | ||
2031 | glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); | ||
2032 | glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); | ||
2033 | glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); | ||
2034 | glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); | ||
2035 | glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); | ||
2036 | glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); | ||
2037 | glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); | ||
2038 | glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); | ||
2039 | glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); | ||
2040 | glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); | ||
2041 | glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); | ||
2042 | glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); | ||
2043 | glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); | ||
2044 | glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); | ||
2045 | glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); | ||
2046 | glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); | ||
2047 | glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); | ||
2048 | glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); | ||
2049 | glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); | ||
2050 | glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); | ||
2051 | glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); | ||
2052 | glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); | ||
2053 | glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); | ||
2054 | glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); | ||
2055 | glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); | ||
2056 | glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); | ||
2057 | glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); | ||
2058 | glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); | ||
2059 | glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); | ||
2060 | glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); | ||
2061 | glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); | ||
2062 | glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); | ||
2063 | glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); | ||
2064 | glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); | ||
2065 | glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); | ||
2066 | glad_glGenSamplers = (PFNGLGENSAMPLERSPROC)load("glGenSamplers"); | ||
2067 | glad_glDeleteSamplers = (PFNGLDELETESAMPLERSPROC)load("glDeleteSamplers"); | ||
2068 | glad_glIsSampler = (PFNGLISSAMPLERPROC)load("glIsSampler"); | ||
2069 | glad_glBindSampler = (PFNGLBINDSAMPLERPROC)load("glBindSampler"); | ||
2070 | glad_glSamplerParameteri = (PFNGLSAMPLERPARAMETERIPROC)load("glSamplerParameteri"); | ||
2071 | glad_glSamplerParameteriv = (PFNGLSAMPLERPARAMETERIVPROC)load("glSamplerParameteriv"); | ||
2072 | glad_glSamplerParameterf = (PFNGLSAMPLERPARAMETERFPROC)load("glSamplerParameterf"); | ||
2073 | glad_glSamplerParameterfv = (PFNGLSAMPLERPARAMETERFVPROC)load("glSamplerParameterfv"); | ||
2074 | glad_glGetSamplerParameteriv = (PFNGLGETSAMPLERPARAMETERIVPROC)load("glGetSamplerParameteriv"); | ||
2075 | glad_glGetSamplerParameterfv = (PFNGLGETSAMPLERPARAMETERFVPROC)load("glGetSamplerParameterfv"); | ||
2076 | glad_glVertexAttribDivisor = (PFNGLVERTEXATTRIBDIVISORPROC)load("glVertexAttribDivisor"); | ||
2077 | glad_glBindTransformFeedback = (PFNGLBINDTRANSFORMFEEDBACKPROC)load("glBindTransformFeedback"); | ||
2078 | glad_glDeleteTransformFeedbacks = (PFNGLDELETETRANSFORMFEEDBACKSPROC)load("glDeleteTransformFeedbacks"); | ||
2079 | glad_glGenTransformFeedbacks = (PFNGLGENTRANSFORMFEEDBACKSPROC)load("glGenTransformFeedbacks"); | ||
2080 | glad_glIsTransformFeedback = (PFNGLISTRANSFORMFEEDBACKPROC)load("glIsTransformFeedback"); | ||
2081 | glad_glPauseTransformFeedback = (PFNGLPAUSETRANSFORMFEEDBACKPROC)load("glPauseTransformFeedback"); | ||
2082 | glad_glResumeTransformFeedback = (PFNGLRESUMETRANSFORMFEEDBACKPROC)load("glResumeTransformFeedback"); | ||
2083 | glad_glGetProgramBinary = (PFNGLGETPROGRAMBINARYPROC)load("glGetProgramBinary"); | ||
2084 | glad_glProgramBinary = (PFNGLPROGRAMBINARYPROC)load("glProgramBinary"); | ||
2085 | glad_glProgramParameteri = (PFNGLPROGRAMPARAMETERIPROC)load("glProgramParameteri"); | ||
2086 | glad_glInvalidateFramebuffer = (PFNGLINVALIDATEFRAMEBUFFERPROC)load("glInvalidateFramebuffer"); | ||
2087 | glad_glInvalidateSubFramebuffer = (PFNGLINVALIDATESUBFRAMEBUFFERPROC)load("glInvalidateSubFramebuffer"); | ||
2088 | glad_glTexStorage2D = (PFNGLTEXSTORAGE2DPROC)load("glTexStorage2D"); | ||
2089 | glad_glTexStorage3D = (PFNGLTEXSTORAGE3DPROC)load("glTexStorage3D"); | ||
2090 | glad_glGetInternalformativ = (PFNGLGETINTERNALFORMATIVPROC)load("glGetInternalformativ"); | ||
2091 | } | ||
2092 | static void load_GL_ES_VERSION_3_1(GLADloadproc load) { | ||
2093 | if(!GLAD_GL_ES_VERSION_3_1) return; | ||
2094 | glad_glDispatchCompute = (PFNGLDISPATCHCOMPUTEPROC)load("glDispatchCompute"); | ||
2095 | glad_glDispatchComputeIndirect = (PFNGLDISPATCHCOMPUTEINDIRECTPROC)load("glDispatchComputeIndirect"); | ||
2096 | glad_glDrawArraysIndirect = (PFNGLDRAWARRAYSINDIRECTPROC)load("glDrawArraysIndirect"); | ||
2097 | glad_glDrawElementsIndirect = (PFNGLDRAWELEMENTSINDIRECTPROC)load("glDrawElementsIndirect"); | ||
2098 | glad_glFramebufferParameteri = (PFNGLFRAMEBUFFERPARAMETERIPROC)load("glFramebufferParameteri"); | ||
2099 | glad_glGetFramebufferParameteriv = (PFNGLGETFRAMEBUFFERPARAMETERIVPROC)load("glGetFramebufferParameteriv"); | ||
2100 | glad_glGetProgramInterfaceiv = (PFNGLGETPROGRAMINTERFACEIVPROC)load("glGetProgramInterfaceiv"); | ||
2101 | glad_glGetProgramResourceIndex = (PFNGLGETPROGRAMRESOURCEINDEXPROC)load("glGetProgramResourceIndex"); | ||
2102 | glad_glGetProgramResourceName = (PFNGLGETPROGRAMRESOURCENAMEPROC)load("glGetProgramResourceName"); | ||
2103 | glad_glGetProgramResourceiv = (PFNGLGETPROGRAMRESOURCEIVPROC)load("glGetProgramResourceiv"); | ||
2104 | glad_glGetProgramResourceLocation = (PFNGLGETPROGRAMRESOURCELOCATIONPROC)load("glGetProgramResourceLocation"); | ||
2105 | glad_glUseProgramStages = (PFNGLUSEPROGRAMSTAGESPROC)load("glUseProgramStages"); | ||
2106 | glad_glActiveShaderProgram = (PFNGLACTIVESHADERPROGRAMPROC)load("glActiveShaderProgram"); | ||
2107 | glad_glCreateShaderProgramv = (PFNGLCREATESHADERPROGRAMVPROC)load("glCreateShaderProgramv"); | ||
2108 | glad_glBindProgramPipeline = (PFNGLBINDPROGRAMPIPELINEPROC)load("glBindProgramPipeline"); | ||
2109 | glad_glDeleteProgramPipelines = (PFNGLDELETEPROGRAMPIPELINESPROC)load("glDeleteProgramPipelines"); | ||
2110 | glad_glGenProgramPipelines = (PFNGLGENPROGRAMPIPELINESPROC)load("glGenProgramPipelines"); | ||
2111 | glad_glIsProgramPipeline = (PFNGLISPROGRAMPIPELINEPROC)load("glIsProgramPipeline"); | ||
2112 | glad_glGetProgramPipelineiv = (PFNGLGETPROGRAMPIPELINEIVPROC)load("glGetProgramPipelineiv"); | ||
2113 | glad_glProgramUniform1i = (PFNGLPROGRAMUNIFORM1IPROC)load("glProgramUniform1i"); | ||
2114 | glad_glProgramUniform2i = (PFNGLPROGRAMUNIFORM2IPROC)load("glProgramUniform2i"); | ||
2115 | glad_glProgramUniform3i = (PFNGLPROGRAMUNIFORM3IPROC)load("glProgramUniform3i"); | ||
2116 | glad_glProgramUniform4i = (PFNGLPROGRAMUNIFORM4IPROC)load("glProgramUniform4i"); | ||
2117 | glad_glProgramUniform1ui = (PFNGLPROGRAMUNIFORM1UIPROC)load("glProgramUniform1ui"); | ||
2118 | glad_glProgramUniform2ui = (PFNGLPROGRAMUNIFORM2UIPROC)load("glProgramUniform2ui"); | ||
2119 | glad_glProgramUniform3ui = (PFNGLPROGRAMUNIFORM3UIPROC)load("glProgramUniform3ui"); | ||
2120 | glad_glProgramUniform4ui = (PFNGLPROGRAMUNIFORM4UIPROC)load("glProgramUniform4ui"); | ||
2121 | glad_glProgramUniform1f = (PFNGLPROGRAMUNIFORM1FPROC)load("glProgramUniform1f"); | ||
2122 | glad_glProgramUniform2f = (PFNGLPROGRAMUNIFORM2FPROC)load("glProgramUniform2f"); | ||
2123 | glad_glProgramUniform3f = (PFNGLPROGRAMUNIFORM3FPROC)load("glProgramUniform3f"); | ||
2124 | glad_glProgramUniform4f = (PFNGLPROGRAMUNIFORM4FPROC)load("glProgramUniform4f"); | ||
2125 | glad_glProgramUniform1iv = (PFNGLPROGRAMUNIFORM1IVPROC)load("glProgramUniform1iv"); | ||
2126 | glad_glProgramUniform2iv = (PFNGLPROGRAMUNIFORM2IVPROC)load("glProgramUniform2iv"); | ||
2127 | glad_glProgramUniform3iv = (PFNGLPROGRAMUNIFORM3IVPROC)load("glProgramUniform3iv"); | ||
2128 | glad_glProgramUniform4iv = (PFNGLPROGRAMUNIFORM4IVPROC)load("glProgramUniform4iv"); | ||
2129 | glad_glProgramUniform1uiv = (PFNGLPROGRAMUNIFORM1UIVPROC)load("glProgramUniform1uiv"); | ||
2130 | glad_glProgramUniform2uiv = (PFNGLPROGRAMUNIFORM2UIVPROC)load("glProgramUniform2uiv"); | ||
2131 | glad_glProgramUniform3uiv = (PFNGLPROGRAMUNIFORM3UIVPROC)load("glProgramUniform3uiv"); | ||
2132 | glad_glProgramUniform4uiv = (PFNGLPROGRAMUNIFORM4UIVPROC)load("glProgramUniform4uiv"); | ||
2133 | glad_glProgramUniform1fv = (PFNGLPROGRAMUNIFORM1FVPROC)load("glProgramUniform1fv"); | ||
2134 | glad_glProgramUniform2fv = (PFNGLPROGRAMUNIFORM2FVPROC)load("glProgramUniform2fv"); | ||
2135 | glad_glProgramUniform3fv = (PFNGLPROGRAMUNIFORM3FVPROC)load("glProgramUniform3fv"); | ||
2136 | glad_glProgramUniform4fv = (PFNGLPROGRAMUNIFORM4FVPROC)load("glProgramUniform4fv"); | ||
2137 | glad_glProgramUniformMatrix2fv = (PFNGLPROGRAMUNIFORMMATRIX2FVPROC)load("glProgramUniformMatrix2fv"); | ||
2138 | glad_glProgramUniformMatrix3fv = (PFNGLPROGRAMUNIFORMMATRIX3FVPROC)load("glProgramUniformMatrix3fv"); | ||
2139 | glad_glProgramUniformMatrix4fv = (PFNGLPROGRAMUNIFORMMATRIX4FVPROC)load("glProgramUniformMatrix4fv"); | ||
2140 | glad_glProgramUniformMatrix2x3fv = (PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC)load("glProgramUniformMatrix2x3fv"); | ||
2141 | glad_glProgramUniformMatrix3x2fv = (PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC)load("glProgramUniformMatrix3x2fv"); | ||
2142 | glad_glProgramUniformMatrix2x4fv = (PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC)load("glProgramUniformMatrix2x4fv"); | ||
2143 | glad_glProgramUniformMatrix4x2fv = (PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC)load("glProgramUniformMatrix4x2fv"); | ||
2144 | glad_glProgramUniformMatrix3x4fv = (PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC)load("glProgramUniformMatrix3x4fv"); | ||
2145 | glad_glProgramUniformMatrix4x3fv = (PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC)load("glProgramUniformMatrix4x3fv"); | ||
2146 | glad_glValidateProgramPipeline = (PFNGLVALIDATEPROGRAMPIPELINEPROC)load("glValidateProgramPipeline"); | ||
2147 | glad_glGetProgramPipelineInfoLog = (PFNGLGETPROGRAMPIPELINEINFOLOGPROC)load("glGetProgramPipelineInfoLog"); | ||
2148 | glad_glBindImageTexture = (PFNGLBINDIMAGETEXTUREPROC)load("glBindImageTexture"); | ||
2149 | glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); | ||
2150 | glad_glMemoryBarrier = (PFNGLMEMORYBARRIERPROC)load("glMemoryBarrier"); | ||
2151 | glad_glMemoryBarrierByRegion = (PFNGLMEMORYBARRIERBYREGIONPROC)load("glMemoryBarrierByRegion"); | ||
2152 | glad_glTexStorage2DMultisample = (PFNGLTEXSTORAGE2DMULTISAMPLEPROC)load("glTexStorage2DMultisample"); | ||
2153 | glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); | ||
2154 | glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); | ||
2155 | glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); | ||
2156 | glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); | ||
2157 | glad_glBindVertexBuffer = (PFNGLBINDVERTEXBUFFERPROC)load("glBindVertexBuffer"); | ||
2158 | glad_glVertexAttribFormat = (PFNGLVERTEXATTRIBFORMATPROC)load("glVertexAttribFormat"); | ||
2159 | glad_glVertexAttribIFormat = (PFNGLVERTEXATTRIBIFORMATPROC)load("glVertexAttribIFormat"); | ||
2160 | glad_glVertexAttribBinding = (PFNGLVERTEXATTRIBBINDINGPROC)load("glVertexAttribBinding"); | ||
2161 | glad_glVertexBindingDivisor = (PFNGLVERTEXBINDINGDIVISORPROC)load("glVertexBindingDivisor"); | ||
2162 | } | ||
2163 | static void load_GL_ES_VERSION_3_2(GLADloadproc load) { | ||
2164 | if(!GLAD_GL_ES_VERSION_3_2) return; | ||
2165 | glad_glBlendBarrier = (PFNGLBLENDBARRIERPROC)load("glBlendBarrier"); | ||
2166 | glad_glCopyImageSubData = (PFNGLCOPYIMAGESUBDATAPROC)load("glCopyImageSubData"); | ||
2167 | glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); | ||
2168 | glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); | ||
2169 | glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); | ||
2170 | glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); | ||
2171 | glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); | ||
2172 | glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); | ||
2173 | glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); | ||
2174 | glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); | ||
2175 | glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); | ||
2176 | glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); | ||
2177 | glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); | ||
2178 | glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); | ||
2179 | glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); | ||
2180 | glad_glBlendEquationi = (PFNGLBLENDEQUATIONIPROC)load("glBlendEquationi"); | ||
2181 | glad_glBlendEquationSeparatei = (PFNGLBLENDEQUATIONSEPARATEIPROC)load("glBlendEquationSeparatei"); | ||
2182 | glad_glBlendFunci = (PFNGLBLENDFUNCIPROC)load("glBlendFunci"); | ||
2183 | glad_glBlendFuncSeparatei = (PFNGLBLENDFUNCSEPARATEIPROC)load("glBlendFuncSeparatei"); | ||
2184 | glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); | ||
2185 | glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); | ||
2186 | glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); | ||
2187 | glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); | ||
2188 | glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); | ||
2189 | glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); | ||
2190 | glad_glPrimitiveBoundingBox = (PFNGLPRIMITIVEBOUNDINGBOXPROC)load("glPrimitiveBoundingBox"); | ||
2191 | glad_glGetGraphicsResetStatus = (PFNGLGETGRAPHICSRESETSTATUSPROC)load("glGetGraphicsResetStatus"); | ||
2192 | glad_glReadnPixels = (PFNGLREADNPIXELSPROC)load("glReadnPixels"); | ||
2193 | glad_glGetnUniformfv = (PFNGLGETNUNIFORMFVPROC)load("glGetnUniformfv"); | ||
2194 | glad_glGetnUniformiv = (PFNGLGETNUNIFORMIVPROC)load("glGetnUniformiv"); | ||
2195 | glad_glGetnUniformuiv = (PFNGLGETNUNIFORMUIVPROC)load("glGetnUniformuiv"); | ||
2196 | glad_glMinSampleShading = (PFNGLMINSAMPLESHADINGPROC)load("glMinSampleShading"); | ||
2197 | glad_glPatchParameteri = (PFNGLPATCHPARAMETERIPROC)load("glPatchParameteri"); | ||
2198 | glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); | ||
2199 | glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); | ||
2200 | glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); | ||
2201 | glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); | ||
2202 | glad_glSamplerParameterIiv = (PFNGLSAMPLERPARAMETERIIVPROC)load("glSamplerParameterIiv"); | ||
2203 | glad_glSamplerParameterIuiv = (PFNGLSAMPLERPARAMETERIUIVPROC)load("glSamplerParameterIuiv"); | ||
2204 | glad_glGetSamplerParameterIiv = (PFNGLGETSAMPLERPARAMETERIIVPROC)load("glGetSamplerParameterIiv"); | ||
2205 | glad_glGetSamplerParameterIuiv = (PFNGLGETSAMPLERPARAMETERIUIVPROC)load("glGetSamplerParameterIuiv"); | ||
2206 | glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); | ||
2207 | glad_glTexBufferRange = (PFNGLTEXBUFFERRANGEPROC)load("glTexBufferRange"); | ||
2208 | glad_glTexStorage3DMultisample = (PFNGLTEXSTORAGE3DMULTISAMPLEPROC)load("glTexStorage3DMultisample"); | ||
2209 | } | ||
2210 | static int find_extensionsGLES2(void) { | ||
2211 | if (!get_exts()) return 0; | ||
2212 | (void)&has_ext; | ||
2213 | free_exts(); | ||
2214 | return 1; | ||
2215 | } | ||
2216 | |||
2217 | static void find_coreGLES2(void) { | ||
2218 | |||
2219 | /* Thank you @elmindreda | ||
2220 | * https://github.com/elmindreda/greg/blob/master/templates/greg.c.in#L176 | ||
2221 | * https://github.com/glfw/glfw/blob/master/src/context.c#L36 | ||
2222 | */ | ||
2223 | int i, major, minor; | ||
2224 | |||
2225 | const char* version; | ||
2226 | const char* prefixes[] = { | ||
2227 | "OpenGL ES-CM ", | ||
2228 | "OpenGL ES-CL ", | ||
2229 | "OpenGL ES ", | ||
2230 | NULL | ||
2231 | }; | ||
2232 | |||
2233 | version = (const char*) glGetString(GL_VERSION); | ||
2234 | if (!version) return; | ||
2235 | |||
2236 | for (i = 0; prefixes[i]; i++) { | ||
2237 | const size_t length = strlen(prefixes[i]); | ||
2238 | if (strncmp(version, prefixes[i], length) == 0) { | ||
2239 | version += length; | ||
2240 | break; | ||
2241 | } | ||
2242 | } | ||
2243 | |||
2244 | /* PR #18 */ | ||
2245 | #ifdef _MSC_VER | ||
2246 | sscanf_s(version, "%d.%d", &major, &minor); | ||
2247 | #else | ||
2248 | sscanf(version, "%d.%d", &major, &minor); | ||
2249 | #endif | ||
2250 | |||
2251 | GLVersion.major = major; GLVersion.minor = minor; | ||
2252 | max_loaded_major = major; max_loaded_minor = minor; | ||
2253 | GLAD_GL_ES_VERSION_2_0 = (major == 2 && minor >= 0) || major > 2; | ||
2254 | GLAD_GL_ES_VERSION_3_0 = (major == 3 && minor >= 0) || major > 3; | ||
2255 | GLAD_GL_ES_VERSION_3_1 = (major == 3 && minor >= 1) || major > 3; | ||
2256 | GLAD_GL_ES_VERSION_3_2 = (major == 3 && minor >= 2) || major > 3; | ||
2257 | if (GLVersion.major > 3 || (GLVersion.major >= 3 && GLVersion.minor >= 2)) { | ||
2258 | max_loaded_major = 3; | ||
2259 | max_loaded_minor = 2; | ||
2260 | } | ||
2261 | } | ||
2262 | |||
2263 | int gladLoadGLES2Loader(GLADloadproc load) { | ||
2264 | GLVersion.major = 0; GLVersion.minor = 0; | ||
2265 | glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); | ||
2266 | if(glGetString == NULL) return 0; | ||
2267 | if(glGetString(GL_VERSION) == NULL) return 0; | ||
2268 | find_coreGLES2(); | ||
2269 | load_GL_ES_VERSION_2_0(load); | ||
2270 | load_GL_ES_VERSION_3_0(load); | ||
2271 | load_GL_ES_VERSION_3_1(load); | ||
2272 | load_GL_ES_VERSION_3_2(load); | ||
2273 | |||
2274 | if (!find_extensionsGLES2()) return 0; | ||
2275 | return GLVersion.major != 0 || GLVersion.minor != 0; | ||
2276 | } | ||
2277 | |||
diff --git a/gfx/contrib/stb/CMakeLists.txt b/gfx/contrib/stb/CMakeLists.txt new file mode 100644 index 0000000..8cee003 --- /dev/null +++ b/gfx/contrib/stb/CMakeLists.txt | |||
@@ -0,0 +1,8 @@ | |||
1 | cmake_minimum_required(VERSION 3.16) | ||
2 | |||
3 | project(stb) | ||
4 | |||
5 | add_library(stb INTERFACE) | ||
6 | |||
7 | target_include_directories(stb INTERFACE | ||
8 | ${CMAKE_CURRENT_SOURCE_DIR}) | ||
diff --git a/gfx/contrib/stb/stb_image.h b/gfx/contrib/stb/stb_image.h new file mode 100644 index 0000000..97038e6 --- /dev/null +++ b/gfx/contrib/stb/stb_image.h | |||
@@ -0,0 +1,7762 @@ | |||
1 | /* stb_image - v2.26 - public domain image loader - http://nothings.org/stb | ||
2 | no warranty implied; use at your own risk | ||
3 | |||
4 | Do this: | ||
5 | #define STB_IMAGE_IMPLEMENTATION | ||
6 | before you include this file in *one* C or C++ file to create the implementation. | ||
7 | |||
8 | // i.e. it should look like this: | ||
9 | #include ... | ||
10 | #include ... | ||
11 | #include ... | ||
12 | #define STB_IMAGE_IMPLEMENTATION | ||
13 | #include "stb_image.h" | ||
14 | |||
15 | You can #define STBI_ASSERT(x) before the #include to avoid using assert.h. | ||
16 | And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free | ||
17 | |||
18 | |||
19 | QUICK NOTES: | ||
20 | Primarily of interest to game developers and other people who can | ||
21 | avoid problematic images and only need the trivial interface | ||
22 | |||
23 | JPEG baseline & progressive (12 bpc/arithmetic not supported, same as stock IJG lib) | ||
24 | PNG 1/2/4/8/16-bit-per-channel | ||
25 | |||
26 | TGA (not sure what subset, if a subset) | ||
27 | BMP non-1bpp, non-RLE | ||
28 | PSD (composited view only, no extra channels, 8/16 bit-per-channel) | ||
29 | |||
30 | GIF (*comp always reports as 4-channel) | ||
31 | HDR (radiance rgbE format) | ||
32 | PIC (Softimage PIC) | ||
33 | PNM (PPM and PGM binary only) | ||
34 | |||
35 | Animated GIF still needs a proper API, but here's one way to do it: | ||
36 | http://gist.github.com/urraka/685d9a6340b26b830d49 | ||
37 | |||
38 | - decode from memory or through FILE (define STBI_NO_STDIO to remove code) | ||
39 | - decode from arbitrary I/O callbacks | ||
40 | - SIMD acceleration on x86/x64 (SSE2) and ARM (NEON) | ||
41 | |||
42 | Full documentation under "DOCUMENTATION" below. | ||
43 | |||
44 | |||
45 | LICENSE | ||
46 | |||
47 | See end of file for license information. | ||
48 | |||
49 | RECENT REVISION HISTORY: | ||
50 | |||
51 | 2.26 (2020-07-13) many minor fixes | ||
52 | 2.25 (2020-02-02) fix warnings | ||
53 | 2.24 (2020-02-02) fix warnings; thread-local failure_reason and flip_vertically | ||
54 | 2.23 (2019-08-11) fix clang static analysis warning | ||
55 | 2.22 (2019-03-04) gif fixes, fix warnings | ||
56 | 2.21 (2019-02-25) fix typo in comment | ||
57 | 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs | ||
58 | 2.19 (2018-02-11) fix warning | ||
59 | 2.18 (2018-01-30) fix warnings | ||
60 | 2.17 (2018-01-29) bugfix, 1-bit BMP, 16-bitness query, fix warnings | ||
61 | 2.16 (2017-07-23) all functions have 16-bit variants; optimizations; bugfixes | ||
62 | 2.15 (2017-03-18) fix png-1,2,4; all Imagenet JPGs; no runtime SSE detection on GCC | ||
63 | 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs | ||
64 | 2.13 (2016-12-04) experimental 16-bit API, only for PNG so far; fixes | ||
65 | 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes | ||
66 | 2.11 (2016-04-02) 16-bit PNGS; enable SSE2 in non-gcc x64 | ||
67 | RGB-format JPEG; remove white matting in PSD; | ||
68 | allocate large structures on the stack; | ||
69 | correct channel count for PNG & BMP | ||
70 | 2.10 (2016-01-22) avoid warning introduced in 2.09 | ||
71 | 2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED | ||
72 | |||
73 | See end of file for full revision history. | ||
74 | |||
75 | |||
76 | ============================ Contributors ========================= | ||
77 | |||
78 | Image formats Extensions, features | ||
79 | Sean Barrett (jpeg, png, bmp) Jetro Lauha (stbi_info) | ||
80 | Nicolas Schulz (hdr, psd) Martin "SpartanJ" Golini (stbi_info) | ||
81 | Jonathan Dummer (tga) James "moose2000" Brown (iPhone PNG) | ||
82 | Jean-Marc Lienher (gif) Ben "Disch" Wenger (io callbacks) | ||
83 | Tom Seddon (pic) Omar Cornut (1/2/4-bit PNG) | ||
84 | Thatcher Ulrich (psd) Nicolas Guillemot (vertical flip) | ||
85 | Ken Miller (pgm, ppm) Richard Mitton (16-bit PSD) | ||
86 | github:urraka (animated gif) Junggon Kim (PNM comments) | ||
87 | Christopher Forseth (animated gif) Daniel Gibson (16-bit TGA) | ||
88 | socks-the-fox (16-bit PNG) | ||
89 | Jeremy Sawicki (handle all ImageNet JPGs) | ||
90 | Optimizations & bugfixes Mikhail Morozov (1-bit BMP) | ||
91 | Fabian "ryg" Giesen Anael Seghezzi (is-16-bit query) | ||
92 | Arseny Kapoulkine | ||
93 | John-Mark Allen | ||
94 | Carmelo J Fdez-Aguera | ||
95 | |||
96 | Bug & warning fixes | ||
97 | Marc LeBlanc David Woo Guillaume George Martins Mozeiko | ||
98 | Christpher Lloyd Jerry Jansson Joseph Thomson Blazej Dariusz Roszkowski | ||
99 | Phil Jordan Dave Moore Roy Eltham | ||
100 | Hayaki Saito Nathan Reed Won Chun | ||
101 | Luke Graham Johan Duparc Nick Verigakis the Horde3D community | ||
102 | Thomas Ruf Ronny Chevalier github:rlyeh | ||
103 | Janez Zemva John Bartholomew Michal Cichon github:romigrou | ||
104 | Jonathan Blow Ken Hamada Tero Hanninen github:svdijk | ||
105 | Laurent Gomila Cort Stratton github:snagar | ||
106 | Aruelien Pocheville Sergio Gonzalez Thibault Reuille github:Zelex | ||
107 | Cass Everitt Ryamond Barbiero github:grim210 | ||
108 | Paul Du Bois Engin Manap Aldo Culquicondor github:sammyhw | ||
109 | Philipp Wiesemann Dale Weiler Oriol Ferrer Mesia github:phprus | ||
110 | Josh Tobin Matthew Gregan github:poppolopoppo | ||
111 | Julian Raschke Gregory Mullen Christian Floisand github:darealshinji | ||
112 | Baldur Karlsson Kevin Schmidt JR Smith github:Michaelangel007 | ||
113 | Brad Weinberger Matvey Cherevko [reserved] | ||
114 | Luca Sas Alexander Veselov Zack Middleton [reserved] | ||
115 | Ryan C. Gordon [reserved] [reserved] | ||
116 | DO NOT ADD YOUR NAME HERE | ||
117 | |||
118 | To add your name to the credits, pick a random blank space in the middle and fill it. | ||
119 | 80% of merge conflicts on stb PRs are due to people adding their name at the end | ||
120 | of the credits. | ||
121 | */ | ||
122 | |||
123 | #ifndef STBI_INCLUDE_STB_IMAGE_H | ||
124 | #define STBI_INCLUDE_STB_IMAGE_H | ||
125 | |||
126 | // DOCUMENTATION | ||
127 | // | ||
128 | // Limitations: | ||
129 | // - no 12-bit-per-channel JPEG | ||
130 | // - no JPEGs with arithmetic coding | ||
131 | // - GIF always returns *comp=4 | ||
132 | // | ||
133 | // Basic usage (see HDR discussion below for HDR usage): | ||
134 | // int x,y,n; | ||
135 | // unsigned char *data = stbi_load(filename, &x, &y, &n, 0); | ||
136 | // // ... process data if not NULL ... | ||
137 | // // ... x = width, y = height, n = # 8-bit components per pixel ... | ||
138 | // // ... replace '0' with '1'..'4' to force that many components per pixel | ||
139 | // // ... but 'n' will always be the number that it would have been if you said 0 | ||
140 | // stbi_image_free(data) | ||
141 | // | ||
142 | // Standard parameters: | ||
143 | // int *x -- outputs image width in pixels | ||
144 | // int *y -- outputs image height in pixels | ||
145 | // int *channels_in_file -- outputs # of image components in image file | ||
146 | // int desired_channels -- if non-zero, # of image components requested in result | ||
147 | // | ||
148 | // The return value from an image loader is an 'unsigned char *' which points | ||
149 | // to the pixel data, or NULL on an allocation failure or if the image is | ||
150 | // corrupt or invalid. The pixel data consists of *y scanlines of *x pixels, | ||
151 | // with each pixel consisting of N interleaved 8-bit components; the first | ||
152 | // pixel pointed to is top-left-most in the image. There is no padding between | ||
153 | // image scanlines or between pixels, regardless of format. The number of | ||
154 | // components N is 'desired_channels' if desired_channels is non-zero, or | ||
155 | // *channels_in_file otherwise. If desired_channels is non-zero, | ||
156 | // *channels_in_file has the number of components that _would_ have been | ||
157 | // output otherwise. E.g. if you set desired_channels to 4, you will always | ||
158 | // get RGBA output, but you can check *channels_in_file to see if it's trivially | ||
159 | // opaque because e.g. there were only 3 channels in the source image. | ||
160 | // | ||
161 | // An output image with N components has the following components interleaved | ||
162 | // in this order in each pixel: | ||
163 | // | ||
164 | // N=#comp components | ||
165 | // 1 grey | ||
166 | // 2 grey, alpha | ||
167 | // 3 red, green, blue | ||
168 | // 4 red, green, blue, alpha | ||
169 | // | ||
170 | // If image loading fails for any reason, the return value will be NULL, | ||
171 | // and *x, *y, *channels_in_file will be unchanged. The function | ||
172 | // stbi_failure_reason() can be queried for an extremely brief, end-user | ||
173 | // unfriendly explanation of why the load failed. Define STBI_NO_FAILURE_STRINGS | ||
174 | // to avoid compiling these strings at all, and STBI_FAILURE_USERMSG to get slightly | ||
175 | // more user-friendly ones. | ||
176 | // | ||
177 | // Paletted PNG, BMP, GIF, and PIC images are automatically depalettized. | ||
178 | // | ||
179 | // =========================================================================== | ||
180 | // | ||
181 | // UNICODE: | ||
182 | // | ||
183 | // If compiling for Windows and you wish to use Unicode filenames, compile | ||
184 | // with | ||
185 | // #define STBI_WINDOWS_UTF8 | ||
186 | // and pass utf8-encoded filenames. Call stbi_convert_wchar_to_utf8 to convert | ||
187 | // Windows wchar_t filenames to utf8. | ||
188 | // | ||
189 | // =========================================================================== | ||
190 | // | ||
191 | // Philosophy | ||
192 | // | ||
193 | // stb libraries are designed with the following priorities: | ||
194 | // | ||
195 | // 1. easy to use | ||
196 | // 2. easy to maintain | ||
197 | // 3. good performance | ||
198 | // | ||
199 | // Sometimes I let "good performance" creep up in priority over "easy to maintain", | ||
200 | // and for best performance I may provide less-easy-to-use APIs that give higher | ||
201 | // performance, in addition to the easy-to-use ones. Nevertheless, it's important | ||
202 | // to keep in mind that from the standpoint of you, a client of this library, | ||
203 | // all you care about is #1 and #3, and stb libraries DO NOT emphasize #3 above all. | ||
204 | // | ||
205 | // Some secondary priorities arise directly from the first two, some of which | ||
206 | // provide more explicit reasons why performance can't be emphasized. | ||
207 | // | ||
208 | // - Portable ("ease of use") | ||
209 | // - Small source code footprint ("easy to maintain") | ||
210 | // - No dependencies ("ease of use") | ||
211 | // | ||
212 | // =========================================================================== | ||
213 | // | ||
214 | // I/O callbacks | ||
215 | // | ||
216 | // I/O callbacks allow you to read from arbitrary sources, like packaged | ||
217 | // files or some other source. Data read from callbacks are processed | ||
218 | // through a small internal buffer (currently 128 bytes) to try to reduce | ||
219 | // overhead. | ||
220 | // | ||
221 | // The three functions you must define are "read" (reads some bytes of data), | ||
222 | // "skip" (skips some bytes of data), "eof" (reports if the stream is at the end). | ||
223 | // | ||
224 | // =========================================================================== | ||
225 | // | ||
226 | // SIMD support | ||
227 | // | ||
228 | // The JPEG decoder will try to automatically use SIMD kernels on x86 when | ||
229 | // supported by the compiler. For ARM Neon support, you must explicitly | ||
230 | // request it. | ||
231 | // | ||
232 | // (The old do-it-yourself SIMD API is no longer supported in the current | ||
233 | // code.) | ||
234 | // | ||
235 | // On x86, SSE2 will automatically be used when available based on a run-time | ||
236 | // test; if not, the generic C versions are used as a fall-back. On ARM targets, | ||
237 | // the typical path is to have separate builds for NEON and non-NEON devices | ||
238 | // (at least this is true for iOS and Android). Therefore, the NEON support is | ||
239 | // toggled by a build flag: define STBI_NEON to get NEON loops. | ||
240 | // | ||
241 | // If for some reason you do not want to use any of SIMD code, or if | ||
242 | // you have issues compiling it, you can disable it entirely by | ||
243 | // defining STBI_NO_SIMD. | ||
244 | // | ||
245 | // =========================================================================== | ||
246 | // | ||
247 | // HDR image support (disable by defining STBI_NO_HDR) | ||
248 | // | ||
249 | // stb_image supports loading HDR images in general, and currently the Radiance | ||
250 | // .HDR file format specifically. You can still load any file through the existing | ||
251 | // interface; if you attempt to load an HDR file, it will be automatically remapped | ||
252 | // to LDR, assuming gamma 2.2 and an arbitrary scale factor defaulting to 1; | ||
253 | // both of these constants can be reconfigured through this interface: | ||
254 | // | ||
255 | // stbi_hdr_to_ldr_gamma(2.2f); | ||
256 | // stbi_hdr_to_ldr_scale(1.0f); | ||
257 | // | ||
258 | // (note, do not use _inverse_ constants; stbi_image will invert them | ||
259 | // appropriately). | ||
260 | // | ||
261 | // Additionally, there is a new, parallel interface for loading files as | ||
262 | // (linear) floats to preserve the full dynamic range: | ||
263 | // | ||
264 | // float *data = stbi_loadf(filename, &x, &y, &n, 0); | ||
265 | // | ||
266 | // If you load LDR images through this interface, those images will | ||
267 | // be promoted to floating point values, run through the inverse of | ||
268 | // constants corresponding to the above: | ||
269 | // | ||
270 | // stbi_ldr_to_hdr_scale(1.0f); | ||
271 | // stbi_ldr_to_hdr_gamma(2.2f); | ||
272 | // | ||
273 | // Finally, given a filename (or an open file or memory block--see header | ||
274 | // file for details) containing image data, you can query for the "most | ||
275 | // appropriate" interface to use (that is, whether the image is HDR or | ||
276 | // not), using: | ||
277 | // | ||
278 | // stbi_is_hdr(char *filename); | ||
279 | // | ||
280 | // =========================================================================== | ||
281 | // | ||
282 | // iPhone PNG support: | ||
283 | // | ||
284 | // By default we convert iphone-formatted PNGs back to RGB, even though | ||
285 | // they are internally encoded differently. You can disable this conversion | ||
286 | // by calling stbi_convert_iphone_png_to_rgb(0), in which case | ||
287 | // you will always just get the native iphone "format" through (which | ||
288 | // is BGR stored in RGB). | ||
289 | // | ||
290 | // Call stbi_set_unpremultiply_on_load(1) as well to force a divide per | ||
291 | // pixel to remove any premultiplied alpha *only* if the image file explicitly | ||
292 | // says there's premultiplied data (currently only happens in iPhone images, | ||
293 | // and only if iPhone convert-to-rgb processing is on). | ||
294 | // | ||
295 | // =========================================================================== | ||
296 | // | ||
297 | // ADDITIONAL CONFIGURATION | ||
298 | // | ||
299 | // - You can suppress implementation of any of the decoders to reduce | ||
300 | // your code footprint by #defining one or more of the following | ||
301 | // symbols before creating the implementation. | ||
302 | // | ||
303 | // STBI_NO_JPEG | ||
304 | // STBI_NO_PNG | ||
305 | // STBI_NO_BMP | ||
306 | // STBI_NO_PSD | ||
307 | // STBI_NO_TGA | ||
308 | // STBI_NO_GIF | ||
309 | // STBI_NO_HDR | ||
310 | // STBI_NO_PIC | ||
311 | // STBI_NO_PNM (.ppm and .pgm) | ||
312 | // | ||
313 | // - You can request *only* certain decoders and suppress all other ones | ||
314 | // (this will be more forward-compatible, as addition of new decoders | ||
315 | // doesn't require you to disable them explicitly): | ||
316 | // | ||
317 | // STBI_ONLY_JPEG | ||
318 | // STBI_ONLY_PNG | ||
319 | // STBI_ONLY_BMP | ||
320 | // STBI_ONLY_PSD | ||
321 | // STBI_ONLY_TGA | ||
322 | // STBI_ONLY_GIF | ||
323 | // STBI_ONLY_HDR | ||
324 | // STBI_ONLY_PIC | ||
325 | // STBI_ONLY_PNM (.ppm and .pgm) | ||
326 | // | ||
327 | // - If you use STBI_NO_PNG (or _ONLY_ without PNG), and you still | ||
328 | // want the zlib decoder to be available, #define STBI_SUPPORT_ZLIB | ||
329 | // | ||
330 | // - If you define STBI_MAX_DIMENSIONS, stb_image will reject images greater | ||
331 | // than that size (in either width or height) without further processing. | ||
332 | // This is to let programs in the wild set an upper bound to prevent | ||
333 | // denial-of-service attacks on untrusted data, as one could generate a | ||
334 | // valid image of gigantic dimensions and force stb_image to allocate a | ||
335 | // huge block of memory and spend disproportionate time decoding it. By | ||
336 | // default this is set to (1 << 24), which is 16777216, but that's still | ||
337 | // very big. | ||
338 | |||
339 | #ifndef STBI_NO_STDIO | ||
340 | #include <stdio.h> | ||
341 | #endif // STBI_NO_STDIO | ||
342 | |||
343 | #define STBI_VERSION 1 | ||
344 | |||
345 | enum | ||
346 | { | ||
347 | STBI_default = 0, // only used for desired_channels | ||
348 | |||
349 | STBI_grey = 1, | ||
350 | STBI_grey_alpha = 2, | ||
351 | STBI_rgb = 3, | ||
352 | STBI_rgb_alpha = 4 | ||
353 | }; | ||
354 | |||
355 | #include <stdlib.h> | ||
356 | typedef unsigned char stbi_uc; | ||
357 | typedef unsigned short stbi_us; | ||
358 | |||
359 | #ifdef __cplusplus | ||
360 | extern "C" { | ||
361 | #endif | ||
362 | |||
363 | #ifndef STBIDEF | ||
364 | #ifdef STB_IMAGE_STATIC | ||
365 | #define STBIDEF static | ||
366 | #else | ||
367 | #define STBIDEF extern | ||
368 | #endif | ||
369 | #endif | ||
370 | |||
371 | ////////////////////////////////////////////////////////////////////////////// | ||
372 | // | ||
373 | // PRIMARY API - works on images of any type | ||
374 | // | ||
375 | |||
376 | // | ||
377 | // load image by filename, open file, or memory buffer | ||
378 | // | ||
379 | |||
380 | typedef struct | ||
381 | { | ||
382 | int (*read) (void *user,char *data,int size); // fill 'data' with 'size' bytes. return number of bytes actually read | ||
383 | void (*skip) (void *user,int n); // skip the next 'n' bytes, or 'unget' the last -n bytes if negative | ||
384 | int (*eof) (void *user); // returns nonzero if we are at end of file/data | ||
385 | } stbi_io_callbacks; | ||
386 | |||
387 | //////////////////////////////////// | ||
388 | // | ||
389 | // 8-bits-per-channel interface | ||
390 | // | ||
391 | |||
392 | STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *channels_in_file, int desired_channels); | ||
393 | STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *channels_in_file, int desired_channels); | ||
394 | |||
395 | #ifndef STBI_NO_STDIO | ||
396 | STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); | ||
397 | STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); | ||
398 | // for stbi_load_from_file, file pointer is left pointing immediately after image | ||
399 | #endif | ||
400 | |||
401 | #ifndef STBI_NO_GIF | ||
402 | STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp); | ||
403 | #endif | ||
404 | |||
405 | #ifdef STBI_WINDOWS_UTF8 | ||
406 | STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); | ||
407 | #endif | ||
408 | |||
409 | //////////////////////////////////// | ||
410 | // | ||
411 | // 16-bits-per-channel interface | ||
412 | // | ||
413 | |||
414 | STBIDEF stbi_us *stbi_load_16_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); | ||
415 | STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); | ||
416 | |||
417 | #ifndef STBI_NO_STDIO | ||
418 | STBIDEF stbi_us *stbi_load_16 (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); | ||
419 | STBIDEF stbi_us *stbi_load_from_file_16(FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); | ||
420 | #endif | ||
421 | |||
422 | //////////////////////////////////// | ||
423 | // | ||
424 | // float-per-channel interface | ||
425 | // | ||
426 | #ifndef STBI_NO_LINEAR | ||
427 | STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); | ||
428 | STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); | ||
429 | |||
430 | #ifndef STBI_NO_STDIO | ||
431 | STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); | ||
432 | STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); | ||
433 | #endif | ||
434 | #endif | ||
435 | |||
436 | #ifndef STBI_NO_HDR | ||
437 | STBIDEF void stbi_hdr_to_ldr_gamma(float gamma); | ||
438 | STBIDEF void stbi_hdr_to_ldr_scale(float scale); | ||
439 | #endif // STBI_NO_HDR | ||
440 | |||
441 | #ifndef STBI_NO_LINEAR | ||
442 | STBIDEF void stbi_ldr_to_hdr_gamma(float gamma); | ||
443 | STBIDEF void stbi_ldr_to_hdr_scale(float scale); | ||
444 | #endif // STBI_NO_LINEAR | ||
445 | |||
446 | // stbi_is_hdr is always defined, but always returns false if STBI_NO_HDR | ||
447 | STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user); | ||
448 | STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len); | ||
449 | #ifndef STBI_NO_STDIO | ||
450 | STBIDEF int stbi_is_hdr (char const *filename); | ||
451 | STBIDEF int stbi_is_hdr_from_file(FILE *f); | ||
452 | #endif // STBI_NO_STDIO | ||
453 | |||
454 | |||
455 | // get a VERY brief reason for failure | ||
456 | // on most compilers (and ALL modern mainstream compilers) this is threadsafe | ||
457 | STBIDEF const char *stbi_failure_reason (void); | ||
458 | |||
459 | // free the loaded image -- this is just free() | ||
460 | STBIDEF void stbi_image_free (void *retval_from_stbi_load); | ||
461 | |||
462 | // get image dimensions & components without fully decoding | ||
463 | STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp); | ||
464 | STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp); | ||
465 | STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len); | ||
466 | STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *clbk, void *user); | ||
467 | |||
468 | #ifndef STBI_NO_STDIO | ||
469 | STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp); | ||
470 | STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp); | ||
471 | STBIDEF int stbi_is_16_bit (char const *filename); | ||
472 | STBIDEF int stbi_is_16_bit_from_file(FILE *f); | ||
473 | #endif | ||
474 | |||
475 | |||
476 | |||
477 | // for image formats that explicitly notate that they have premultiplied alpha, | ||
478 | // we just return the colors as stored in the file. set this flag to force | ||
479 | // unpremultiplication. results are undefined if the unpremultiply overflow. | ||
480 | STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply); | ||
481 | |||
482 | // indicate whether we should process iphone images back to canonical format, | ||
483 | // or just pass them through "as-is" | ||
484 | STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert); | ||
485 | |||
486 | // flip the image vertically, so the first pixel in the output array is the bottom left | ||
487 | STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip); | ||
488 | |||
489 | // as above, but only applies to images loaded on the thread that calls the function | ||
490 | // this function is only available if your compiler supports thread-local variables; | ||
491 | // calling it will fail to link if your compiler doesn't | ||
492 | STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip); | ||
493 | |||
494 | // ZLIB client - used by PNG, available for other purposes | ||
495 | |||
496 | STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen); | ||
497 | STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header); | ||
498 | STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen); | ||
499 | STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); | ||
500 | |||
501 | STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen); | ||
502 | STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); | ||
503 | |||
504 | |||
505 | #ifdef __cplusplus | ||
506 | } | ||
507 | #endif | ||
508 | |||
509 | // | ||
510 | // | ||
511 | //// end header file ///////////////////////////////////////////////////// | ||
512 | #endif // STBI_INCLUDE_STB_IMAGE_H | ||
513 | |||
514 | #ifdef STB_IMAGE_IMPLEMENTATION | ||
515 | |||
516 | #if defined(STBI_ONLY_JPEG) || defined(STBI_ONLY_PNG) || defined(STBI_ONLY_BMP) \ | ||
517 | || defined(STBI_ONLY_TGA) || defined(STBI_ONLY_GIF) || defined(STBI_ONLY_PSD) \ | ||
518 | || defined(STBI_ONLY_HDR) || defined(STBI_ONLY_PIC) || defined(STBI_ONLY_PNM) \ | ||
519 | || defined(STBI_ONLY_ZLIB) | ||
520 | #ifndef STBI_ONLY_JPEG | ||
521 | #define STBI_NO_JPEG | ||
522 | #endif | ||
523 | #ifndef STBI_ONLY_PNG | ||
524 | #define STBI_NO_PNG | ||
525 | #endif | ||
526 | #ifndef STBI_ONLY_BMP | ||
527 | #define STBI_NO_BMP | ||
528 | #endif | ||
529 | #ifndef STBI_ONLY_PSD | ||
530 | #define STBI_NO_PSD | ||
531 | #endif | ||
532 | #ifndef STBI_ONLY_TGA | ||
533 | #define STBI_NO_TGA | ||
534 | #endif | ||
535 | #ifndef STBI_ONLY_GIF | ||
536 | #define STBI_NO_GIF | ||
537 | #endif | ||
538 | #ifndef STBI_ONLY_HDR | ||
539 | #define STBI_NO_HDR | ||
540 | #endif | ||
541 | #ifndef STBI_ONLY_PIC | ||
542 | #define STBI_NO_PIC | ||
543 | #endif | ||
544 | #ifndef STBI_ONLY_PNM | ||
545 | #define STBI_NO_PNM | ||
546 | #endif | ||
547 | #endif | ||
548 | |||
549 | #if defined(STBI_NO_PNG) && !defined(STBI_SUPPORT_ZLIB) && !defined(STBI_NO_ZLIB) | ||
550 | #define STBI_NO_ZLIB | ||
551 | #endif | ||
552 | |||
553 | |||
554 | #include <stdarg.h> | ||
555 | #include <stddef.h> // ptrdiff_t on osx | ||
556 | #include <stdlib.h> | ||
557 | #include <string.h> | ||
558 | #include <limits.h> | ||
559 | |||
560 | #if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) | ||
561 | #include <math.h> // ldexp, pow | ||
562 | #endif | ||
563 | |||
564 | #ifndef STBI_NO_STDIO | ||
565 | #include <stdio.h> | ||
566 | #endif | ||
567 | |||
568 | #ifndef STBI_ASSERT | ||
569 | #include <assert.h> | ||
570 | #define STBI_ASSERT(x) assert(x) | ||
571 | #endif | ||
572 | |||
573 | #ifdef __cplusplus | ||
574 | #define STBI_EXTERN extern "C" | ||
575 | #else | ||
576 | #define STBI_EXTERN extern | ||
577 | #endif | ||
578 | |||
579 | |||
580 | #ifndef _MSC_VER | ||
581 | #ifdef __cplusplus | ||
582 | #define stbi_inline inline | ||
583 | #else | ||
584 | #define stbi_inline | ||
585 | #endif | ||
586 | #else | ||
587 | #define stbi_inline __forceinline | ||
588 | #endif | ||
589 | |||
590 | #ifndef STBI_NO_THREAD_LOCALS | ||
591 | #if defined(__cplusplus) && __cplusplus >= 201103L | ||
592 | #define STBI_THREAD_LOCAL thread_local | ||
593 | #elif defined(__GNUC__) && __GNUC__ < 5 | ||
594 | #define STBI_THREAD_LOCAL __thread | ||
595 | #elif defined(_MSC_VER) | ||
596 | #define STBI_THREAD_LOCAL __declspec(thread) | ||
597 | #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) | ||
598 | #define STBI_THREAD_LOCAL _Thread_local | ||
599 | #endif | ||
600 | |||
601 | #ifndef STBI_THREAD_LOCAL | ||
602 | #if defined(__GNUC__) | ||
603 | #define STBI_THREAD_LOCAL __thread | ||
604 | #endif | ||
605 | #endif | ||
606 | #endif | ||
607 | |||
608 | #ifdef _MSC_VER | ||
609 | typedef unsigned short stbi__uint16; | ||
610 | typedef signed short stbi__int16; | ||
611 | typedef unsigned int stbi__uint32; | ||
612 | typedef signed int stbi__int32; | ||
613 | #else | ||
614 | #include <stdint.h> | ||
615 | typedef uint16_t stbi__uint16; | ||
616 | typedef int16_t stbi__int16; | ||
617 | typedef uint32_t stbi__uint32; | ||
618 | typedef int32_t stbi__int32; | ||
619 | #endif | ||
620 | |||
621 | // should produce compiler error if size is wrong | ||
622 | typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1]; | ||
623 | |||
624 | #ifdef _MSC_VER | ||
625 | #define STBI_NOTUSED(v) (void)(v) | ||
626 | #else | ||
627 | #define STBI_NOTUSED(v) (void)sizeof(v) | ||
628 | #endif | ||
629 | |||
630 | #ifdef _MSC_VER | ||
631 | #define STBI_HAS_LROTL | ||
632 | #endif | ||
633 | |||
634 | #ifdef STBI_HAS_LROTL | ||
635 | #define stbi_lrot(x,y) _lrotl(x,y) | ||
636 | #else | ||
637 | #define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (32 - (y)))) | ||
638 | #endif | ||
639 | |||
640 | #if defined(STBI_MALLOC) && defined(STBI_FREE) && (defined(STBI_REALLOC) || defined(STBI_REALLOC_SIZED)) | ||
641 | // ok | ||
642 | #elif !defined(STBI_MALLOC) && !defined(STBI_FREE) && !defined(STBI_REALLOC) && !defined(STBI_REALLOC_SIZED) | ||
643 | // ok | ||
644 | #else | ||
645 | #error "Must define all or none of STBI_MALLOC, STBI_FREE, and STBI_REALLOC (or STBI_REALLOC_SIZED)." | ||
646 | #endif | ||
647 | |||
648 | #ifndef STBI_MALLOC | ||
649 | #define STBI_MALLOC(sz) malloc(sz) | ||
650 | #define STBI_REALLOC(p,newsz) realloc(p,newsz) | ||
651 | #define STBI_FREE(p) free(p) | ||
652 | #endif | ||
653 | |||
654 | #ifndef STBI_REALLOC_SIZED | ||
655 | #define STBI_REALLOC_SIZED(p,oldsz,newsz) ((void)oldsz, STBI_REALLOC(p,newsz)) | ||
656 | #endif | ||
657 | |||
658 | // x86/x64 detection | ||
659 | #if defined(__x86_64__) || defined(_M_X64) | ||
660 | #define STBI__X64_TARGET | ||
661 | #elif defined(__i386) || defined(_M_IX86) | ||
662 | #define STBI__X86_TARGET | ||
663 | #endif | ||
664 | |||
665 | #if defined(__GNUC__) && defined(STBI__X86_TARGET) && !defined(__SSE2__) && !defined(STBI_NO_SIMD) | ||
666 | // gcc doesn't support sse2 intrinsics unless you compile with -msse2, | ||
667 | // which in turn means it gets to use SSE2 everywhere. This is unfortunate, | ||
668 | // but previous attempts to provide the SSE2 functions with runtime | ||
669 | // detection caused numerous issues. The way architecture extensions are | ||
670 | // exposed in GCC/Clang is, sadly, not really suited for one-file libs. | ||
671 | // New behavior: if compiled with -msse2, we use SSE2 without any | ||
672 | // detection; if not, we don't use it at all. | ||
673 | #define STBI_NO_SIMD | ||
674 | #endif | ||
675 | |||
676 | #if defined(__MINGW32__) && defined(STBI__X86_TARGET) && !defined(STBI_MINGW_ENABLE_SSE2) && !defined(STBI_NO_SIMD) | ||
677 | // Note that __MINGW32__ doesn't actually mean 32-bit, so we have to avoid STBI__X64_TARGET | ||
678 | // | ||
679 | // 32-bit MinGW wants ESP to be 16-byte aligned, but this is not in the | ||
680 | // Windows ABI and VC++ as well as Windows DLLs don't maintain that invariant. | ||
681 | // As a result, enabling SSE2 on 32-bit MinGW is dangerous when not | ||
682 | // simultaneously enabling "-mstackrealign". | ||
683 | // | ||
684 | // See https://github.com/nothings/stb/issues/81 for more information. | ||
685 | // | ||
686 | // So default to no SSE2 on 32-bit MinGW. If you've read this far and added | ||
687 | // -mstackrealign to your build settings, feel free to #define STBI_MINGW_ENABLE_SSE2. | ||
688 | #define STBI_NO_SIMD | ||
689 | #endif | ||
690 | |||
691 | #if !defined(STBI_NO_SIMD) && (defined(STBI__X86_TARGET) || defined(STBI__X64_TARGET)) | ||
692 | #define STBI_SSE2 | ||
693 | #include <emmintrin.h> | ||
694 | |||
695 | #ifdef _MSC_VER | ||
696 | |||
697 | #if _MSC_VER >= 1400 // not VC6 | ||
698 | #include <intrin.h> // __cpuid | ||
699 | static int stbi__cpuid3(void) | ||
700 | { | ||
701 | int info[4]; | ||
702 | __cpuid(info,1); | ||
703 | return info[3]; | ||
704 | } | ||
705 | #else | ||
706 | static int stbi__cpuid3(void) | ||
707 | { | ||
708 | int res; | ||
709 | __asm { | ||
710 | mov eax,1 | ||
711 | cpuid | ||
712 | mov res,edx | ||
713 | } | ||
714 | return res; | ||
715 | } | ||
716 | #endif | ||
717 | |||
718 | #define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name | ||
719 | |||
720 | #if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) | ||
721 | static int stbi__sse2_available(void) | ||
722 | { | ||
723 | int info3 = stbi__cpuid3(); | ||
724 | return ((info3 >> 26) & 1) != 0; | ||
725 | } | ||
726 | #endif | ||
727 | |||
728 | #else // assume GCC-style if not VC++ | ||
729 | #define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) | ||
730 | |||
731 | #if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) | ||
732 | static int stbi__sse2_available(void) | ||
733 | { | ||
734 | // If we're even attempting to compile this on GCC/Clang, that means | ||
735 | // -msse2 is on, which means the compiler is allowed to use SSE2 | ||
736 | // instructions at will, and so are we. | ||
737 | return 1; | ||
738 | } | ||
739 | #endif | ||
740 | |||
741 | #endif | ||
742 | #endif | ||
743 | |||
744 | // ARM NEON | ||
745 | #if defined(STBI_NO_SIMD) && defined(STBI_NEON) | ||
746 | #undef STBI_NEON | ||
747 | #endif | ||
748 | |||
749 | #ifdef STBI_NEON | ||
750 | #include <arm_neon.h> | ||
751 | // assume GCC or Clang on ARM targets | ||
752 | #define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) | ||
753 | #endif | ||
754 | |||
755 | #ifndef STBI_SIMD_ALIGN | ||
756 | #define STBI_SIMD_ALIGN(type, name) type name | ||
757 | #endif | ||
758 | |||
759 | #ifndef STBI_MAX_DIMENSIONS | ||
760 | #define STBI_MAX_DIMENSIONS (1 << 24) | ||
761 | #endif | ||
762 | |||
763 | /////////////////////////////////////////////// | ||
764 | // | ||
765 | // stbi__context struct and start_xxx functions | ||
766 | |||
767 | // stbi__context structure is our basic context used by all images, so it | ||
768 | // contains all the IO context, plus some basic image information | ||
769 | typedef struct | ||
770 | { | ||
771 | stbi__uint32 img_x, img_y; | ||
772 | int img_n, img_out_n; | ||
773 | |||
774 | stbi_io_callbacks io; | ||
775 | void *io_user_data; | ||
776 | |||
777 | int read_from_callbacks; | ||
778 | int buflen; | ||
779 | stbi_uc buffer_start[128]; | ||
780 | int callback_already_read; | ||
781 | |||
782 | stbi_uc *img_buffer, *img_buffer_end; | ||
783 | stbi_uc *img_buffer_original, *img_buffer_original_end; | ||
784 | } stbi__context; | ||
785 | |||
786 | |||
787 | static void stbi__refill_buffer(stbi__context *s); | ||
788 | |||
789 | // initialize a memory-decode context | ||
790 | static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len) | ||
791 | { | ||
792 | s->io.read = NULL; | ||
793 | s->read_from_callbacks = 0; | ||
794 | s->callback_already_read = 0; | ||
795 | s->img_buffer = s->img_buffer_original = (stbi_uc *) buffer; | ||
796 | s->img_buffer_end = s->img_buffer_original_end = (stbi_uc *) buffer+len; | ||
797 | } | ||
798 | |||
799 | // initialize a callback-based context | ||
800 | static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user) | ||
801 | { | ||
802 | s->io = *c; | ||
803 | s->io_user_data = user; | ||
804 | s->buflen = sizeof(s->buffer_start); | ||
805 | s->read_from_callbacks = 1; | ||
806 | s->callback_already_read = 0; | ||
807 | s->img_buffer = s->img_buffer_original = s->buffer_start; | ||
808 | stbi__refill_buffer(s); | ||
809 | s->img_buffer_original_end = s->img_buffer_end; | ||
810 | } | ||
811 | |||
812 | #ifndef STBI_NO_STDIO | ||
813 | |||
814 | static int stbi__stdio_read(void *user, char *data, int size) | ||
815 | { | ||
816 | return (int) fread(data,1,size,(FILE*) user); | ||
817 | } | ||
818 | |||
819 | static void stbi__stdio_skip(void *user, int n) | ||
820 | { | ||
821 | int ch; | ||
822 | fseek((FILE*) user, n, SEEK_CUR); | ||
823 | ch = fgetc((FILE*) user); /* have to read a byte to reset feof()'s flag */ | ||
824 | if (ch != EOF) { | ||
825 | ungetc(ch, (FILE *) user); /* push byte back onto stream if valid. */ | ||
826 | } | ||
827 | } | ||
828 | |||
829 | static int stbi__stdio_eof(void *user) | ||
830 | { | ||
831 | return feof((FILE*) user) || ferror((FILE *) user); | ||
832 | } | ||
833 | |||
834 | static stbi_io_callbacks stbi__stdio_callbacks = | ||
835 | { | ||
836 | stbi__stdio_read, | ||
837 | stbi__stdio_skip, | ||
838 | stbi__stdio_eof, | ||
839 | }; | ||
840 | |||
841 | static void stbi__start_file(stbi__context *s, FILE *f) | ||
842 | { | ||
843 | stbi__start_callbacks(s, &stbi__stdio_callbacks, (void *) f); | ||
844 | } | ||
845 | |||
846 | //static void stop_file(stbi__context *s) { } | ||
847 | |||
848 | #endif // !STBI_NO_STDIO | ||
849 | |||
850 | static void stbi__rewind(stbi__context *s) | ||
851 | { | ||
852 | // conceptually rewind SHOULD rewind to the beginning of the stream, | ||
853 | // but we just rewind to the beginning of the initial buffer, because | ||
854 | // we only use it after doing 'test', which only ever looks at at most 92 bytes | ||
855 | s->img_buffer = s->img_buffer_original; | ||
856 | s->img_buffer_end = s->img_buffer_original_end; | ||
857 | } | ||
858 | |||
859 | enum | ||
860 | { | ||
861 | STBI_ORDER_RGB, | ||
862 | STBI_ORDER_BGR | ||
863 | }; | ||
864 | |||
865 | typedef struct | ||
866 | { | ||
867 | int bits_per_channel; | ||
868 | int num_channels; | ||
869 | int channel_order; | ||
870 | } stbi__result_info; | ||
871 | |||
872 | #ifndef STBI_NO_JPEG | ||
873 | static int stbi__jpeg_test(stbi__context *s); | ||
874 | static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
875 | static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp); | ||
876 | #endif | ||
877 | |||
878 | #ifndef STBI_NO_PNG | ||
879 | static int stbi__png_test(stbi__context *s); | ||
880 | static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
881 | static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp); | ||
882 | static int stbi__png_is16(stbi__context *s); | ||
883 | #endif | ||
884 | |||
885 | #ifndef STBI_NO_BMP | ||
886 | static int stbi__bmp_test(stbi__context *s); | ||
887 | static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
888 | static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp); | ||
889 | #endif | ||
890 | |||
891 | #ifndef STBI_NO_TGA | ||
892 | static int stbi__tga_test(stbi__context *s); | ||
893 | static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
894 | static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp); | ||
895 | #endif | ||
896 | |||
897 | #ifndef STBI_NO_PSD | ||
898 | static int stbi__psd_test(stbi__context *s); | ||
899 | static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc); | ||
900 | static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp); | ||
901 | static int stbi__psd_is16(stbi__context *s); | ||
902 | #endif | ||
903 | |||
904 | #ifndef STBI_NO_HDR | ||
905 | static int stbi__hdr_test(stbi__context *s); | ||
906 | static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
907 | static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp); | ||
908 | #endif | ||
909 | |||
910 | #ifndef STBI_NO_PIC | ||
911 | static int stbi__pic_test(stbi__context *s); | ||
912 | static void *stbi__pic_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
913 | static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp); | ||
914 | #endif | ||
915 | |||
916 | #ifndef STBI_NO_GIF | ||
917 | static int stbi__gif_test(stbi__context *s); | ||
918 | static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
919 | static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp); | ||
920 | static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp); | ||
921 | #endif | ||
922 | |||
923 | #ifndef STBI_NO_PNM | ||
924 | static int stbi__pnm_test(stbi__context *s); | ||
925 | static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); | ||
926 | static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp); | ||
927 | #endif | ||
928 | |||
929 | static | ||
930 | #ifdef STBI_THREAD_LOCAL | ||
931 | STBI_THREAD_LOCAL | ||
932 | #endif | ||
933 | const char *stbi__g_failure_reason; | ||
934 | |||
935 | STBIDEF const char *stbi_failure_reason(void) | ||
936 | { | ||
937 | return stbi__g_failure_reason; | ||
938 | } | ||
939 | |||
940 | #ifndef STBI_NO_FAILURE_STRINGS | ||
941 | static int stbi__err(const char *str) | ||
942 | { | ||
943 | stbi__g_failure_reason = str; | ||
944 | return 0; | ||
945 | } | ||
946 | #endif | ||
947 | |||
948 | static void *stbi__malloc(size_t size) | ||
949 | { | ||
950 | return STBI_MALLOC(size); | ||
951 | } | ||
952 | |||
953 | // stb_image uses ints pervasively, including for offset calculations. | ||
954 | // therefore the largest decoded image size we can support with the | ||
955 | // current code, even on 64-bit targets, is INT_MAX. this is not a | ||
956 | // significant limitation for the intended use case. | ||
957 | // | ||
958 | // we do, however, need to make sure our size calculations don't | ||
959 | // overflow. hence a few helper functions for size calculations that | ||
960 | // multiply integers together, making sure that they're non-negative | ||
961 | // and no overflow occurs. | ||
962 | |||
963 | // return 1 if the sum is valid, 0 on overflow. | ||
964 | // negative terms are considered invalid. | ||
965 | static int stbi__addsizes_valid(int a, int b) | ||
966 | { | ||
967 | if (b < 0) return 0; | ||
968 | // now 0 <= b <= INT_MAX, hence also | ||
969 | // 0 <= INT_MAX - b <= INTMAX. | ||
970 | // And "a + b <= INT_MAX" (which might overflow) is the | ||
971 | // same as a <= INT_MAX - b (no overflow) | ||
972 | return a <= INT_MAX - b; | ||
973 | } | ||
974 | |||
975 | // returns 1 if the product is valid, 0 on overflow. | ||
976 | // negative factors are considered invalid. | ||
977 | static int stbi__mul2sizes_valid(int a, int b) | ||
978 | { | ||
979 | if (a < 0 || b < 0) return 0; | ||
980 | if (b == 0) return 1; // mul-by-0 is always safe | ||
981 | // portable way to check for no overflows in a*b | ||
982 | return a <= INT_MAX/b; | ||
983 | } | ||
984 | |||
985 | #if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) | ||
986 | // returns 1 if "a*b + add" has no negative terms/factors and doesn't overflow | ||
987 | static int stbi__mad2sizes_valid(int a, int b, int add) | ||
988 | { | ||
989 | return stbi__mul2sizes_valid(a, b) && stbi__addsizes_valid(a*b, add); | ||
990 | } | ||
991 | #endif | ||
992 | |||
993 | // returns 1 if "a*b*c + add" has no negative terms/factors and doesn't overflow | ||
994 | static int stbi__mad3sizes_valid(int a, int b, int c, int add) | ||
995 | { | ||
996 | return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && | ||
997 | stbi__addsizes_valid(a*b*c, add); | ||
998 | } | ||
999 | |||
1000 | // returns 1 if "a*b*c*d + add" has no negative terms/factors and doesn't overflow | ||
1001 | #if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) | ||
1002 | static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add) | ||
1003 | { | ||
1004 | return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && | ||
1005 | stbi__mul2sizes_valid(a*b*c, d) && stbi__addsizes_valid(a*b*c*d, add); | ||
1006 | } | ||
1007 | #endif | ||
1008 | |||
1009 | #if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) | ||
1010 | // mallocs with size overflow checking | ||
1011 | static void *stbi__malloc_mad2(int a, int b, int add) | ||
1012 | { | ||
1013 | if (!stbi__mad2sizes_valid(a, b, add)) return NULL; | ||
1014 | return stbi__malloc(a*b + add); | ||
1015 | } | ||
1016 | #endif | ||
1017 | |||
1018 | static void *stbi__malloc_mad3(int a, int b, int c, int add) | ||
1019 | { | ||
1020 | if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL; | ||
1021 | return stbi__malloc(a*b*c + add); | ||
1022 | } | ||
1023 | |||
1024 | #if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) | ||
1025 | static void *stbi__malloc_mad4(int a, int b, int c, int d, int add) | ||
1026 | { | ||
1027 | if (!stbi__mad4sizes_valid(a, b, c, d, add)) return NULL; | ||
1028 | return stbi__malloc(a*b*c*d + add); | ||
1029 | } | ||
1030 | #endif | ||
1031 | |||
1032 | // stbi__err - error | ||
1033 | // stbi__errpf - error returning pointer to float | ||
1034 | // stbi__errpuc - error returning pointer to unsigned char | ||
1035 | |||
1036 | #ifdef STBI_NO_FAILURE_STRINGS | ||
1037 | #define stbi__err(x,y) 0 | ||
1038 | #elif defined(STBI_FAILURE_USERMSG) | ||
1039 | #define stbi__err(x,y) stbi__err(y) | ||
1040 | #else | ||
1041 | #define stbi__err(x,y) stbi__err(x) | ||
1042 | #endif | ||
1043 | |||
1044 | #define stbi__errpf(x,y) ((float *)(size_t) (stbi__err(x,y)?NULL:NULL)) | ||
1045 | #define stbi__errpuc(x,y) ((unsigned char *)(size_t) (stbi__err(x,y)?NULL:NULL)) | ||
1046 | |||
1047 | STBIDEF void stbi_image_free(void *retval_from_stbi_load) | ||
1048 | { | ||
1049 | STBI_FREE(retval_from_stbi_load); | ||
1050 | } | ||
1051 | |||
1052 | #ifndef STBI_NO_LINEAR | ||
1053 | static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp); | ||
1054 | #endif | ||
1055 | |||
1056 | #ifndef STBI_NO_HDR | ||
1057 | static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp); | ||
1058 | #endif | ||
1059 | |||
1060 | static int stbi__vertically_flip_on_load_global = 0; | ||
1061 | |||
1062 | STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip) | ||
1063 | { | ||
1064 | stbi__vertically_flip_on_load_global = flag_true_if_should_flip; | ||
1065 | } | ||
1066 | |||
1067 | #ifndef STBI_THREAD_LOCAL | ||
1068 | #define stbi__vertically_flip_on_load stbi__vertically_flip_on_load_global | ||
1069 | #else | ||
1070 | static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set; | ||
1071 | |||
1072 | STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip) | ||
1073 | { | ||
1074 | stbi__vertically_flip_on_load_local = flag_true_if_should_flip; | ||
1075 | stbi__vertically_flip_on_load_set = 1; | ||
1076 | } | ||
1077 | |||
1078 | #define stbi__vertically_flip_on_load (stbi__vertically_flip_on_load_set \ | ||
1079 | ? stbi__vertically_flip_on_load_local \ | ||
1080 | : stbi__vertically_flip_on_load_global) | ||
1081 | #endif // STBI_THREAD_LOCAL | ||
1082 | |||
1083 | static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) | ||
1084 | { | ||
1085 | memset(ri, 0, sizeof(*ri)); // make sure it's initialized if we add new fields | ||
1086 | ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed | ||
1087 | ri->channel_order = STBI_ORDER_RGB; // all current input & output are this, but this is here so we can add BGR order | ||
1088 | ri->num_channels = 0; | ||
1089 | |||
1090 | #ifndef STBI_NO_JPEG | ||
1091 | if (stbi__jpeg_test(s)) return stbi__jpeg_load(s,x,y,comp,req_comp, ri); | ||
1092 | #endif | ||
1093 | #ifndef STBI_NO_PNG | ||
1094 | if (stbi__png_test(s)) return stbi__png_load(s,x,y,comp,req_comp, ri); | ||
1095 | #endif | ||
1096 | #ifndef STBI_NO_BMP | ||
1097 | if (stbi__bmp_test(s)) return stbi__bmp_load(s,x,y,comp,req_comp, ri); | ||
1098 | #endif | ||
1099 | #ifndef STBI_NO_GIF | ||
1100 | if (stbi__gif_test(s)) return stbi__gif_load(s,x,y,comp,req_comp, ri); | ||
1101 | #endif | ||
1102 | #ifndef STBI_NO_PSD | ||
1103 | if (stbi__psd_test(s)) return stbi__psd_load(s,x,y,comp,req_comp, ri, bpc); | ||
1104 | #else | ||
1105 | STBI_NOTUSED(bpc); | ||
1106 | #endif | ||
1107 | #ifndef STBI_NO_PIC | ||
1108 | if (stbi__pic_test(s)) return stbi__pic_load(s,x,y,comp,req_comp, ri); | ||
1109 | #endif | ||
1110 | #ifndef STBI_NO_PNM | ||
1111 | if (stbi__pnm_test(s)) return stbi__pnm_load(s,x,y,comp,req_comp, ri); | ||
1112 | #endif | ||
1113 | |||
1114 | #ifndef STBI_NO_HDR | ||
1115 | if (stbi__hdr_test(s)) { | ||
1116 | float *hdr = stbi__hdr_load(s, x,y,comp,req_comp, ri); | ||
1117 | return stbi__hdr_to_ldr(hdr, *x, *y, req_comp ? req_comp : *comp); | ||
1118 | } | ||
1119 | #endif | ||
1120 | |||
1121 | #ifndef STBI_NO_TGA | ||
1122 | // test tga last because it's a crappy test! | ||
1123 | if (stbi__tga_test(s)) | ||
1124 | return stbi__tga_load(s,x,y,comp,req_comp, ri); | ||
1125 | #endif | ||
1126 | |||
1127 | return stbi__errpuc("unknown image type", "Image not of any known type, or corrupt"); | ||
1128 | } | ||
1129 | |||
1130 | static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels) | ||
1131 | { | ||
1132 | int i; | ||
1133 | int img_len = w * h * channels; | ||
1134 | stbi_uc *reduced; | ||
1135 | |||
1136 | reduced = (stbi_uc *) stbi__malloc(img_len); | ||
1137 | if (reduced == NULL) return stbi__errpuc("outofmem", "Out of memory"); | ||
1138 | |||
1139 | for (i = 0; i < img_len; ++i) | ||
1140 | reduced[i] = (stbi_uc)((orig[i] >> 8) & 0xFF); // top half of each byte is sufficient approx of 16->8 bit scaling | ||
1141 | |||
1142 | STBI_FREE(orig); | ||
1143 | return reduced; | ||
1144 | } | ||
1145 | |||
1146 | static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels) | ||
1147 | { | ||
1148 | int i; | ||
1149 | int img_len = w * h * channels; | ||
1150 | stbi__uint16 *enlarged; | ||
1151 | |||
1152 | enlarged = (stbi__uint16 *) stbi__malloc(img_len*2); | ||
1153 | if (enlarged == NULL) return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); | ||
1154 | |||
1155 | for (i = 0; i < img_len; ++i) | ||
1156 | enlarged[i] = (stbi__uint16)((orig[i] << 8) + orig[i]); // replicate to high and low byte, maps 0->0, 255->0xffff | ||
1157 | |||
1158 | STBI_FREE(orig); | ||
1159 | return enlarged; | ||
1160 | } | ||
1161 | |||
1162 | static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel) | ||
1163 | { | ||
1164 | int row; | ||
1165 | size_t bytes_per_row = (size_t)w * bytes_per_pixel; | ||
1166 | stbi_uc temp[2048]; | ||
1167 | stbi_uc *bytes = (stbi_uc *)image; | ||
1168 | |||
1169 | for (row = 0; row < (h>>1); row++) { | ||
1170 | stbi_uc *row0 = bytes + row*bytes_per_row; | ||
1171 | stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row; | ||
1172 | // swap row0 with row1 | ||
1173 | size_t bytes_left = bytes_per_row; | ||
1174 | while (bytes_left) { | ||
1175 | size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp); | ||
1176 | memcpy(temp, row0, bytes_copy); | ||
1177 | memcpy(row0, row1, bytes_copy); | ||
1178 | memcpy(row1, temp, bytes_copy); | ||
1179 | row0 += bytes_copy; | ||
1180 | row1 += bytes_copy; | ||
1181 | bytes_left -= bytes_copy; | ||
1182 | } | ||
1183 | } | ||
1184 | } | ||
1185 | |||
1186 | #ifndef STBI_NO_GIF | ||
1187 | static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel) | ||
1188 | { | ||
1189 | int slice; | ||
1190 | int slice_size = w * h * bytes_per_pixel; | ||
1191 | |||
1192 | stbi_uc *bytes = (stbi_uc *)image; | ||
1193 | for (slice = 0; slice < z; ++slice) { | ||
1194 | stbi__vertical_flip(bytes, w, h, bytes_per_pixel); | ||
1195 | bytes += slice_size; | ||
1196 | } | ||
1197 | } | ||
1198 | #endif | ||
1199 | |||
1200 | static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) | ||
1201 | { | ||
1202 | stbi__result_info ri; | ||
1203 | void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 8); | ||
1204 | |||
1205 | if (result == NULL) | ||
1206 | return NULL; | ||
1207 | |||
1208 | // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. | ||
1209 | STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); | ||
1210 | |||
1211 | if (ri.bits_per_channel != 8) { | ||
1212 | result = stbi__convert_16_to_8((stbi__uint16 *) result, *x, *y, req_comp == 0 ? *comp : req_comp); | ||
1213 | ri.bits_per_channel = 8; | ||
1214 | } | ||
1215 | |||
1216 | // @TODO: move stbi__convert_format to here | ||
1217 | |||
1218 | if (stbi__vertically_flip_on_load) { | ||
1219 | int channels = req_comp ? req_comp : *comp; | ||
1220 | stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi_uc)); | ||
1221 | } | ||
1222 | |||
1223 | return (unsigned char *) result; | ||
1224 | } | ||
1225 | |||
1226 | static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) | ||
1227 | { | ||
1228 | stbi__result_info ri; | ||
1229 | void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 16); | ||
1230 | |||
1231 | if (result == NULL) | ||
1232 | return NULL; | ||
1233 | |||
1234 | // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. | ||
1235 | STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); | ||
1236 | |||
1237 | if (ri.bits_per_channel != 16) { | ||
1238 | result = stbi__convert_8_to_16((stbi_uc *) result, *x, *y, req_comp == 0 ? *comp : req_comp); | ||
1239 | ri.bits_per_channel = 16; | ||
1240 | } | ||
1241 | |||
1242 | // @TODO: move stbi__convert_format16 to here | ||
1243 | // @TODO: special case RGB-to-Y (and RGBA-to-YA) for 8-bit-to-16-bit case to keep more precision | ||
1244 | |||
1245 | if (stbi__vertically_flip_on_load) { | ||
1246 | int channels = req_comp ? req_comp : *comp; | ||
1247 | stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi__uint16)); | ||
1248 | } | ||
1249 | |||
1250 | return (stbi__uint16 *) result; | ||
1251 | } | ||
1252 | |||
1253 | #if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR) | ||
1254 | static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp) | ||
1255 | { | ||
1256 | if (stbi__vertically_flip_on_load && result != NULL) { | ||
1257 | int channels = req_comp ? req_comp : *comp; | ||
1258 | stbi__vertical_flip(result, *x, *y, channels * sizeof(float)); | ||
1259 | } | ||
1260 | } | ||
1261 | #endif | ||
1262 | |||
1263 | #ifndef STBI_NO_STDIO | ||
1264 | |||
1265 | #if defined(_MSC_VER) && defined(STBI_WINDOWS_UTF8) | ||
1266 | STBI_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); | ||
1267 | STBI_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); | ||
1268 | #endif | ||
1269 | |||
1270 | #if defined(_MSC_VER) && defined(STBI_WINDOWS_UTF8) | ||
1271 | STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) | ||
1272 | { | ||
1273 | return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); | ||
1274 | } | ||
1275 | #endif | ||
1276 | |||
1277 | static FILE *stbi__fopen(char const *filename, char const *mode) | ||
1278 | { | ||
1279 | FILE *f; | ||
1280 | #if defined(_MSC_VER) && defined(STBI_WINDOWS_UTF8) | ||
1281 | wchar_t wMode[64]; | ||
1282 | wchar_t wFilename[1024]; | ||
1283 | if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename))) | ||
1284 | return 0; | ||
1285 | |||
1286 | if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode))) | ||
1287 | return 0; | ||
1288 | |||
1289 | #if _MSC_VER >= 1400 | ||
1290 | if (0 != _wfopen_s(&f, wFilename, wMode)) | ||
1291 | f = 0; | ||
1292 | #else | ||
1293 | f = _wfopen(wFilename, wMode); | ||
1294 | #endif | ||
1295 | |||
1296 | #elif defined(_MSC_VER) && _MSC_VER >= 1400 | ||
1297 | if (0 != fopen_s(&f, filename, mode)) | ||
1298 | f=0; | ||
1299 | #else | ||
1300 | f = fopen(filename, mode); | ||
1301 | #endif | ||
1302 | return f; | ||
1303 | } | ||
1304 | |||
1305 | |||
1306 | STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp) | ||
1307 | { | ||
1308 | FILE *f = stbi__fopen(filename, "rb"); | ||
1309 | unsigned char *result; | ||
1310 | if (!f) return stbi__errpuc("can't fopen", "Unable to open file"); | ||
1311 | result = stbi_load_from_file(f,x,y,comp,req_comp); | ||
1312 | fclose(f); | ||
1313 | return result; | ||
1314 | } | ||
1315 | |||
1316 | STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) | ||
1317 | { | ||
1318 | unsigned char *result; | ||
1319 | stbi__context s; | ||
1320 | stbi__start_file(&s,f); | ||
1321 | result = stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); | ||
1322 | if (result) { | ||
1323 | // need to 'unget' all the characters in the IO buffer | ||
1324 | fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); | ||
1325 | } | ||
1326 | return result; | ||
1327 | } | ||
1328 | |||
1329 | STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp) | ||
1330 | { | ||
1331 | stbi__uint16 *result; | ||
1332 | stbi__context s; | ||
1333 | stbi__start_file(&s,f); | ||
1334 | result = stbi__load_and_postprocess_16bit(&s,x,y,comp,req_comp); | ||
1335 | if (result) { | ||
1336 | // need to 'unget' all the characters in the IO buffer | ||
1337 | fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); | ||
1338 | } | ||
1339 | return result; | ||
1340 | } | ||
1341 | |||
1342 | STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp) | ||
1343 | { | ||
1344 | FILE *f = stbi__fopen(filename, "rb"); | ||
1345 | stbi__uint16 *result; | ||
1346 | if (!f) return (stbi_us *) stbi__errpuc("can't fopen", "Unable to open file"); | ||
1347 | result = stbi_load_from_file_16(f,x,y,comp,req_comp); | ||
1348 | fclose(f); | ||
1349 | return result; | ||
1350 | } | ||
1351 | |||
1352 | |||
1353 | #endif //!STBI_NO_STDIO | ||
1354 | |||
1355 | STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels) | ||
1356 | { | ||
1357 | stbi__context s; | ||
1358 | stbi__start_mem(&s,buffer,len); | ||
1359 | return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); | ||
1360 | } | ||
1361 | |||
1362 | STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels) | ||
1363 | { | ||
1364 | stbi__context s; | ||
1365 | stbi__start_callbacks(&s, (stbi_io_callbacks *)clbk, user); | ||
1366 | return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); | ||
1367 | } | ||
1368 | |||
1369 | STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) | ||
1370 | { | ||
1371 | stbi__context s; | ||
1372 | stbi__start_mem(&s,buffer,len); | ||
1373 | return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); | ||
1374 | } | ||
1375 | |||
1376 | STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) | ||
1377 | { | ||
1378 | stbi__context s; | ||
1379 | stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); | ||
1380 | return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); | ||
1381 | } | ||
1382 | |||
1383 | #ifndef STBI_NO_GIF | ||
1384 | STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp) | ||
1385 | { | ||
1386 | unsigned char *result; | ||
1387 | stbi__context s; | ||
1388 | stbi__start_mem(&s,buffer,len); | ||
1389 | |||
1390 | result = (unsigned char*) stbi__load_gif_main(&s, delays, x, y, z, comp, req_comp); | ||
1391 | if (stbi__vertically_flip_on_load) { | ||
1392 | stbi__vertical_flip_slices( result, *x, *y, *z, *comp ); | ||
1393 | } | ||
1394 | |||
1395 | return result; | ||
1396 | } | ||
1397 | #endif | ||
1398 | |||
1399 | #ifndef STBI_NO_LINEAR | ||
1400 | static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp) | ||
1401 | { | ||
1402 | unsigned char *data; | ||
1403 | #ifndef STBI_NO_HDR | ||
1404 | if (stbi__hdr_test(s)) { | ||
1405 | stbi__result_info ri; | ||
1406 | float *hdr_data = stbi__hdr_load(s,x,y,comp,req_comp, &ri); | ||
1407 | if (hdr_data) | ||
1408 | stbi__float_postprocess(hdr_data,x,y,comp,req_comp); | ||
1409 | return hdr_data; | ||
1410 | } | ||
1411 | #endif | ||
1412 | data = stbi__load_and_postprocess_8bit(s, x, y, comp, req_comp); | ||
1413 | if (data) | ||
1414 | return stbi__ldr_to_hdr(data, *x, *y, req_comp ? req_comp : *comp); | ||
1415 | return stbi__errpf("unknown image type", "Image not of any known type, or corrupt"); | ||
1416 | } | ||
1417 | |||
1418 | STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) | ||
1419 | { | ||
1420 | stbi__context s; | ||
1421 | stbi__start_mem(&s,buffer,len); | ||
1422 | return stbi__loadf_main(&s,x,y,comp,req_comp); | ||
1423 | } | ||
1424 | |||
1425 | STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) | ||
1426 | { | ||
1427 | stbi__context s; | ||
1428 | stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); | ||
1429 | return stbi__loadf_main(&s,x,y,comp,req_comp); | ||
1430 | } | ||
1431 | |||
1432 | #ifndef STBI_NO_STDIO | ||
1433 | STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp) | ||
1434 | { | ||
1435 | float *result; | ||
1436 | FILE *f = stbi__fopen(filename, "rb"); | ||
1437 | if (!f) return stbi__errpf("can't fopen", "Unable to open file"); | ||
1438 | result = stbi_loadf_from_file(f,x,y,comp,req_comp); | ||
1439 | fclose(f); | ||
1440 | return result; | ||
1441 | } | ||
1442 | |||
1443 | STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) | ||
1444 | { | ||
1445 | stbi__context s; | ||
1446 | stbi__start_file(&s,f); | ||
1447 | return stbi__loadf_main(&s,x,y,comp,req_comp); | ||
1448 | } | ||
1449 | #endif // !STBI_NO_STDIO | ||
1450 | |||
1451 | #endif // !STBI_NO_LINEAR | ||
1452 | |||
1453 | // these is-hdr-or-not is defined independent of whether STBI_NO_LINEAR is | ||
1454 | // defined, for API simplicity; if STBI_NO_LINEAR is defined, it always | ||
1455 | // reports false! | ||
1456 | |||
1457 | STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len) | ||
1458 | { | ||
1459 | #ifndef STBI_NO_HDR | ||
1460 | stbi__context s; | ||
1461 | stbi__start_mem(&s,buffer,len); | ||
1462 | return stbi__hdr_test(&s); | ||
1463 | #else | ||
1464 | STBI_NOTUSED(buffer); | ||
1465 | STBI_NOTUSED(len); | ||
1466 | return 0; | ||
1467 | #endif | ||
1468 | } | ||
1469 | |||
1470 | #ifndef STBI_NO_STDIO | ||
1471 | STBIDEF int stbi_is_hdr (char const *filename) | ||
1472 | { | ||
1473 | FILE *f = stbi__fopen(filename, "rb"); | ||
1474 | int result=0; | ||
1475 | if (f) { | ||
1476 | result = stbi_is_hdr_from_file(f); | ||
1477 | fclose(f); | ||
1478 | } | ||
1479 | return result; | ||
1480 | } | ||
1481 | |||
1482 | STBIDEF int stbi_is_hdr_from_file(FILE *f) | ||
1483 | { | ||
1484 | #ifndef STBI_NO_HDR | ||
1485 | long pos = ftell(f); | ||
1486 | int res; | ||
1487 | stbi__context s; | ||
1488 | stbi__start_file(&s,f); | ||
1489 | res = stbi__hdr_test(&s); | ||
1490 | fseek(f, pos, SEEK_SET); | ||
1491 | return res; | ||
1492 | #else | ||
1493 | STBI_NOTUSED(f); | ||
1494 | return 0; | ||
1495 | #endif | ||
1496 | } | ||
1497 | #endif // !STBI_NO_STDIO | ||
1498 | |||
1499 | STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user) | ||
1500 | { | ||
1501 | #ifndef STBI_NO_HDR | ||
1502 | stbi__context s; | ||
1503 | stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); | ||
1504 | return stbi__hdr_test(&s); | ||
1505 | #else | ||
1506 | STBI_NOTUSED(clbk); | ||
1507 | STBI_NOTUSED(user); | ||
1508 | return 0; | ||
1509 | #endif | ||
1510 | } | ||
1511 | |||
1512 | #ifndef STBI_NO_LINEAR | ||
1513 | static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f; | ||
1514 | |||
1515 | STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; } | ||
1516 | STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; } | ||
1517 | #endif | ||
1518 | |||
1519 | static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f; | ||
1520 | |||
1521 | STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; } | ||
1522 | STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; } | ||
1523 | |||
1524 | |||
1525 | ////////////////////////////////////////////////////////////////////////////// | ||
1526 | // | ||
1527 | // Common code used by all image loaders | ||
1528 | // | ||
1529 | |||
1530 | enum | ||
1531 | { | ||
1532 | STBI__SCAN_load=0, | ||
1533 | STBI__SCAN_type, | ||
1534 | STBI__SCAN_header | ||
1535 | }; | ||
1536 | |||
1537 | static void stbi__refill_buffer(stbi__context *s) | ||
1538 | { | ||
1539 | int n = (s->io.read)(s->io_user_data,(char*)s->buffer_start,s->buflen); | ||
1540 | s->callback_already_read += (int) (s->img_buffer - s->img_buffer_original); | ||
1541 | if (n == 0) { | ||
1542 | // at end of file, treat same as if from memory, but need to handle case | ||
1543 | // where s->img_buffer isn't pointing to safe memory, e.g. 0-byte file | ||
1544 | s->read_from_callbacks = 0; | ||
1545 | s->img_buffer = s->buffer_start; | ||
1546 | s->img_buffer_end = s->buffer_start+1; | ||
1547 | *s->img_buffer = 0; | ||
1548 | } else { | ||
1549 | s->img_buffer = s->buffer_start; | ||
1550 | s->img_buffer_end = s->buffer_start + n; | ||
1551 | } | ||
1552 | } | ||
1553 | |||
1554 | stbi_inline static stbi_uc stbi__get8(stbi__context *s) | ||
1555 | { | ||
1556 | if (s->img_buffer < s->img_buffer_end) | ||
1557 | return *s->img_buffer++; | ||
1558 | if (s->read_from_callbacks) { | ||
1559 | stbi__refill_buffer(s); | ||
1560 | return *s->img_buffer++; | ||
1561 | } | ||
1562 | return 0; | ||
1563 | } | ||
1564 | |||
1565 | #if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) | ||
1566 | // nothing | ||
1567 | #else | ||
1568 | stbi_inline static int stbi__at_eof(stbi__context *s) | ||
1569 | { | ||
1570 | if (s->io.read) { | ||
1571 | if (!(s->io.eof)(s->io_user_data)) return 0; | ||
1572 | // if feof() is true, check if buffer = end | ||
1573 | // special case: we've only got the special 0 character at the end | ||
1574 | if (s->read_from_callbacks == 0) return 1; | ||
1575 | } | ||
1576 | |||
1577 | return s->img_buffer >= s->img_buffer_end; | ||
1578 | } | ||
1579 | #endif | ||
1580 | |||
1581 | #if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) | ||
1582 | // nothing | ||
1583 | #else | ||
1584 | static void stbi__skip(stbi__context *s, int n) | ||
1585 | { | ||
1586 | if (n == 0) return; // already there! | ||
1587 | if (n < 0) { | ||
1588 | s->img_buffer = s->img_buffer_end; | ||
1589 | return; | ||
1590 | } | ||
1591 | if (s->io.read) { | ||
1592 | int blen = (int) (s->img_buffer_end - s->img_buffer); | ||
1593 | if (blen < n) { | ||
1594 | s->img_buffer = s->img_buffer_end; | ||
1595 | (s->io.skip)(s->io_user_data, n - blen); | ||
1596 | return; | ||
1597 | } | ||
1598 | } | ||
1599 | s->img_buffer += n; | ||
1600 | } | ||
1601 | #endif | ||
1602 | |||
1603 | #if defined(STBI_NO_PNG) && defined(STBI_NO_TGA) && defined(STBI_NO_HDR) && defined(STBI_NO_PNM) | ||
1604 | // nothing | ||
1605 | #else | ||
1606 | static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n) | ||
1607 | { | ||
1608 | if (s->io.read) { | ||
1609 | int blen = (int) (s->img_buffer_end - s->img_buffer); | ||
1610 | if (blen < n) { | ||
1611 | int res, count; | ||
1612 | |||
1613 | memcpy(buffer, s->img_buffer, blen); | ||
1614 | |||
1615 | count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen); | ||
1616 | res = (count == (n-blen)); | ||
1617 | s->img_buffer = s->img_buffer_end; | ||
1618 | return res; | ||
1619 | } | ||
1620 | } | ||
1621 | |||
1622 | if (s->img_buffer+n <= s->img_buffer_end) { | ||
1623 | memcpy(buffer, s->img_buffer, n); | ||
1624 | s->img_buffer += n; | ||
1625 | return 1; | ||
1626 | } else | ||
1627 | return 0; | ||
1628 | } | ||
1629 | #endif | ||
1630 | |||
1631 | #if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) | ||
1632 | // nothing | ||
1633 | #else | ||
1634 | static int stbi__get16be(stbi__context *s) | ||
1635 | { | ||
1636 | int z = stbi__get8(s); | ||
1637 | return (z << 8) + stbi__get8(s); | ||
1638 | } | ||
1639 | #endif | ||
1640 | |||
1641 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) | ||
1642 | // nothing | ||
1643 | #else | ||
1644 | static stbi__uint32 stbi__get32be(stbi__context *s) | ||
1645 | { | ||
1646 | stbi__uint32 z = stbi__get16be(s); | ||
1647 | return (z << 16) + stbi__get16be(s); | ||
1648 | } | ||
1649 | #endif | ||
1650 | |||
1651 | #if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) | ||
1652 | // nothing | ||
1653 | #else | ||
1654 | static int stbi__get16le(stbi__context *s) | ||
1655 | { | ||
1656 | int z = stbi__get8(s); | ||
1657 | return z + (stbi__get8(s) << 8); | ||
1658 | } | ||
1659 | #endif | ||
1660 | |||
1661 | #ifndef STBI_NO_BMP | ||
1662 | static stbi__uint32 stbi__get32le(stbi__context *s) | ||
1663 | { | ||
1664 | stbi__uint32 z = stbi__get16le(s); | ||
1665 | return z + (stbi__get16le(s) << 16); | ||
1666 | } | ||
1667 | #endif | ||
1668 | |||
1669 | #define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings | ||
1670 | |||
1671 | #if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) | ||
1672 | // nothing | ||
1673 | #else | ||
1674 | ////////////////////////////////////////////////////////////////////////////// | ||
1675 | // | ||
1676 | // generic converter from built-in img_n to req_comp | ||
1677 | // individual types do this automatically as much as possible (e.g. jpeg | ||
1678 | // does all cases internally since it needs to colorspace convert anyway, | ||
1679 | // and it never has alpha, so very few cases ). png can automatically | ||
1680 | // interleave an alpha=255 channel, but falls back to this for other cases | ||
1681 | // | ||
1682 | // assume data buffer is malloced, so malloc a new one and free that one | ||
1683 | // only failure mode is malloc failing | ||
1684 | |||
1685 | static stbi_uc stbi__compute_y(int r, int g, int b) | ||
1686 | { | ||
1687 | return (stbi_uc) (((r*77) + (g*150) + (29*b)) >> 8); | ||
1688 | } | ||
1689 | #endif | ||
1690 | |||
1691 | #if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) | ||
1692 | // nothing | ||
1693 | #else | ||
1694 | static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y) | ||
1695 | { | ||
1696 | int i,j; | ||
1697 | unsigned char *good; | ||
1698 | |||
1699 | if (req_comp == img_n) return data; | ||
1700 | STBI_ASSERT(req_comp >= 1 && req_comp <= 4); | ||
1701 | |||
1702 | good = (unsigned char *) stbi__malloc_mad3(req_comp, x, y, 0); | ||
1703 | if (good == NULL) { | ||
1704 | STBI_FREE(data); | ||
1705 | return stbi__errpuc("outofmem", "Out of memory"); | ||
1706 | } | ||
1707 | |||
1708 | for (j=0; j < (int) y; ++j) { | ||
1709 | unsigned char *src = data + j * x * img_n ; | ||
1710 | unsigned char *dest = good + j * x * req_comp; | ||
1711 | |||
1712 | #define STBI__COMBO(a,b) ((a)*8+(b)) | ||
1713 | #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) | ||
1714 | // convert source image with img_n components to one with req_comp components; | ||
1715 | // avoid switch per pixel, so use switch per scanline and massive macros | ||
1716 | switch (STBI__COMBO(img_n, req_comp)) { | ||
1717 | STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=255; } break; | ||
1718 | STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; | ||
1719 | STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=255; } break; | ||
1720 | STBI__CASE(2,1) { dest[0]=src[0]; } break; | ||
1721 | STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; | ||
1722 | STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; | ||
1723 | STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=255; } break; | ||
1724 | STBI__CASE(3,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; | ||
1725 | STBI__CASE(3,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = 255; } break; | ||
1726 | STBI__CASE(4,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; | ||
1727 | STBI__CASE(4,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = src[3]; } break; | ||
1728 | STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; | ||
1729 | default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return stbi__errpuc("unsupported", "Unsupported format conversion"); | ||
1730 | } | ||
1731 | #undef STBI__CASE | ||
1732 | } | ||
1733 | |||
1734 | STBI_FREE(data); | ||
1735 | return good; | ||
1736 | } | ||
1737 | #endif | ||
1738 | |||
1739 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) | ||
1740 | // nothing | ||
1741 | #else | ||
1742 | static stbi__uint16 stbi__compute_y_16(int r, int g, int b) | ||
1743 | { | ||
1744 | return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8); | ||
1745 | } | ||
1746 | #endif | ||
1747 | |||
1748 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) | ||
1749 | // nothing | ||
1750 | #else | ||
1751 | static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y) | ||
1752 | { | ||
1753 | int i,j; | ||
1754 | stbi__uint16 *good; | ||
1755 | |||
1756 | if (req_comp == img_n) return data; | ||
1757 | STBI_ASSERT(req_comp >= 1 && req_comp <= 4); | ||
1758 | |||
1759 | good = (stbi__uint16 *) stbi__malloc(req_comp * x * y * 2); | ||
1760 | if (good == NULL) { | ||
1761 | STBI_FREE(data); | ||
1762 | return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); | ||
1763 | } | ||
1764 | |||
1765 | for (j=0; j < (int) y; ++j) { | ||
1766 | stbi__uint16 *src = data + j * x * img_n ; | ||
1767 | stbi__uint16 *dest = good + j * x * req_comp; | ||
1768 | |||
1769 | #define STBI__COMBO(a,b) ((a)*8+(b)) | ||
1770 | #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) | ||
1771 | // convert source image with img_n components to one with req_comp components; | ||
1772 | // avoid switch per pixel, so use switch per scanline and massive macros | ||
1773 | switch (STBI__COMBO(img_n, req_comp)) { | ||
1774 | STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=0xffff; } break; | ||
1775 | STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; | ||
1776 | STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=0xffff; } break; | ||
1777 | STBI__CASE(2,1) { dest[0]=src[0]; } break; | ||
1778 | STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; | ||
1779 | STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; | ||
1780 | STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=0xffff; } break; | ||
1781 | STBI__CASE(3,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; | ||
1782 | STBI__CASE(3,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = 0xffff; } break; | ||
1783 | STBI__CASE(4,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; | ||
1784 | STBI__CASE(4,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = src[3]; } break; | ||
1785 | STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; | ||
1786 | default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return (stbi__uint16*) stbi__errpuc("unsupported", "Unsupported format conversion"); | ||
1787 | } | ||
1788 | #undef STBI__CASE | ||
1789 | } | ||
1790 | |||
1791 | STBI_FREE(data); | ||
1792 | return good; | ||
1793 | } | ||
1794 | #endif | ||
1795 | |||
1796 | #ifndef STBI_NO_LINEAR | ||
1797 | static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp) | ||
1798 | { | ||
1799 | int i,k,n; | ||
1800 | float *output; | ||
1801 | if (!data) return NULL; | ||
1802 | output = (float *) stbi__malloc_mad4(x, y, comp, sizeof(float), 0); | ||
1803 | if (output == NULL) { STBI_FREE(data); return stbi__errpf("outofmem", "Out of memory"); } | ||
1804 | // compute number of non-alpha components | ||
1805 | if (comp & 1) n = comp; else n = comp-1; | ||
1806 | for (i=0; i < x*y; ++i) { | ||
1807 | for (k=0; k < n; ++k) { | ||
1808 | output[i*comp + k] = (float) (pow(data[i*comp+k]/255.0f, stbi__l2h_gamma) * stbi__l2h_scale); | ||
1809 | } | ||
1810 | } | ||
1811 | if (n < comp) { | ||
1812 | for (i=0; i < x*y; ++i) { | ||
1813 | output[i*comp + n] = data[i*comp + n]/255.0f; | ||
1814 | } | ||
1815 | } | ||
1816 | STBI_FREE(data); | ||
1817 | return output; | ||
1818 | } | ||
1819 | #endif | ||
1820 | |||
1821 | #ifndef STBI_NO_HDR | ||
1822 | #define stbi__float2int(x) ((int) (x)) | ||
1823 | static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) | ||
1824 | { | ||
1825 | int i,k,n; | ||
1826 | stbi_uc *output; | ||
1827 | if (!data) return NULL; | ||
1828 | output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0); | ||
1829 | if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); } | ||
1830 | // compute number of non-alpha components | ||
1831 | if (comp & 1) n = comp; else n = comp-1; | ||
1832 | for (i=0; i < x*y; ++i) { | ||
1833 | for (k=0; k < n; ++k) { | ||
1834 | float z = (float) pow(data[i*comp+k]*stbi__h2l_scale_i, stbi__h2l_gamma_i) * 255 + 0.5f; | ||
1835 | if (z < 0) z = 0; | ||
1836 | if (z > 255) z = 255; | ||
1837 | output[i*comp + k] = (stbi_uc) stbi__float2int(z); | ||
1838 | } | ||
1839 | if (k < comp) { | ||
1840 | float z = data[i*comp+k] * 255 + 0.5f; | ||
1841 | if (z < 0) z = 0; | ||
1842 | if (z > 255) z = 255; | ||
1843 | output[i*comp + k] = (stbi_uc) stbi__float2int(z); | ||
1844 | } | ||
1845 | } | ||
1846 | STBI_FREE(data); | ||
1847 | return output; | ||
1848 | } | ||
1849 | #endif | ||
1850 | |||
1851 | ////////////////////////////////////////////////////////////////////////////// | ||
1852 | // | ||
1853 | // "baseline" JPEG/JFIF decoder | ||
1854 | // | ||
1855 | // simple implementation | ||
1856 | // - doesn't support delayed output of y-dimension | ||
1857 | // - simple interface (only one output format: 8-bit interleaved RGB) | ||
1858 | // - doesn't try to recover corrupt jpegs | ||
1859 | // - doesn't allow partial loading, loading multiple at once | ||
1860 | // - still fast on x86 (copying globals into locals doesn't help x86) | ||
1861 | // - allocates lots of intermediate memory (full size of all components) | ||
1862 | // - non-interleaved case requires this anyway | ||
1863 | // - allows good upsampling (see next) | ||
1864 | // high-quality | ||
1865 | // - upsampled channels are bilinearly interpolated, even across blocks | ||
1866 | // - quality integer IDCT derived from IJG's 'slow' | ||
1867 | // performance | ||
1868 | // - fast huffman; reasonable integer IDCT | ||
1869 | // - some SIMD kernels for common paths on targets with SSE2/NEON | ||
1870 | // - uses a lot of intermediate memory, could cache poorly | ||
1871 | |||
1872 | #ifndef STBI_NO_JPEG | ||
1873 | |||
1874 | // huffman decoding acceleration | ||
1875 | #define FAST_BITS 9 // larger handles more cases; smaller stomps less cache | ||
1876 | |||
1877 | typedef struct | ||
1878 | { | ||
1879 | stbi_uc fast[1 << FAST_BITS]; | ||
1880 | // weirdly, repacking this into AoS is a 10% speed loss, instead of a win | ||
1881 | stbi__uint16 code[256]; | ||
1882 | stbi_uc values[256]; | ||
1883 | stbi_uc size[257]; | ||
1884 | unsigned int maxcode[18]; | ||
1885 | int delta[17]; // old 'firstsymbol' - old 'firstcode' | ||
1886 | } stbi__huffman; | ||
1887 | |||
1888 | typedef struct | ||
1889 | { | ||
1890 | stbi__context *s; | ||
1891 | stbi__huffman huff_dc[4]; | ||
1892 | stbi__huffman huff_ac[4]; | ||
1893 | stbi__uint16 dequant[4][64]; | ||
1894 | stbi__int16 fast_ac[4][1 << FAST_BITS]; | ||
1895 | |||
1896 | // sizes for components, interleaved MCUs | ||
1897 | int img_h_max, img_v_max; | ||
1898 | int img_mcu_x, img_mcu_y; | ||
1899 | int img_mcu_w, img_mcu_h; | ||
1900 | |||
1901 | // definition of jpeg image component | ||
1902 | struct | ||
1903 | { | ||
1904 | int id; | ||
1905 | int h,v; | ||
1906 | int tq; | ||
1907 | int hd,ha; | ||
1908 | int dc_pred; | ||
1909 | |||
1910 | int x,y,w2,h2; | ||
1911 | stbi_uc *data; | ||
1912 | void *raw_data, *raw_coeff; | ||
1913 | stbi_uc *linebuf; | ||
1914 | short *coeff; // progressive only | ||
1915 | int coeff_w, coeff_h; // number of 8x8 coefficient blocks | ||
1916 | } img_comp[4]; | ||
1917 | |||
1918 | stbi__uint32 code_buffer; // jpeg entropy-coded buffer | ||
1919 | int code_bits; // number of valid bits | ||
1920 | unsigned char marker; // marker seen while filling entropy buffer | ||
1921 | int nomore; // flag if we saw a marker so must stop | ||
1922 | |||
1923 | int progressive; | ||
1924 | int spec_start; | ||
1925 | int spec_end; | ||
1926 | int succ_high; | ||
1927 | int succ_low; | ||
1928 | int eob_run; | ||
1929 | int jfif; | ||
1930 | int app14_color_transform; // Adobe APP14 tag | ||
1931 | int rgb; | ||
1932 | |||
1933 | int scan_n, order[4]; | ||
1934 | int restart_interval, todo; | ||
1935 | |||
1936 | // kernels | ||
1937 | void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]); | ||
1938 | void (*YCbCr_to_RGB_kernel)(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step); | ||
1939 | stbi_uc *(*resample_row_hv_2_kernel)(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs); | ||
1940 | } stbi__jpeg; | ||
1941 | |||
1942 | static int stbi__build_huffman(stbi__huffman *h, int *count) | ||
1943 | { | ||
1944 | int i,j,k=0; | ||
1945 | unsigned int code; | ||
1946 | // build size list for each symbol (from JPEG spec) | ||
1947 | for (i=0; i < 16; ++i) | ||
1948 | for (j=0; j < count[i]; ++j) | ||
1949 | h->size[k++] = (stbi_uc) (i+1); | ||
1950 | h->size[k] = 0; | ||
1951 | |||
1952 | // compute actual symbols (from jpeg spec) | ||
1953 | code = 0; | ||
1954 | k = 0; | ||
1955 | for(j=1; j <= 16; ++j) { | ||
1956 | // compute delta to add to code to compute symbol id | ||
1957 | h->delta[j] = k - code; | ||
1958 | if (h->size[k] == j) { | ||
1959 | while (h->size[k] == j) | ||
1960 | h->code[k++] = (stbi__uint16) (code++); | ||
1961 | if (code-1 >= (1u << j)) return stbi__err("bad code lengths","Corrupt JPEG"); | ||
1962 | } | ||
1963 | // compute largest code + 1 for this size, preshifted as needed later | ||
1964 | h->maxcode[j] = code << (16-j); | ||
1965 | code <<= 1; | ||
1966 | } | ||
1967 | h->maxcode[j] = 0xffffffff; | ||
1968 | |||
1969 | // build non-spec acceleration table; 255 is flag for not-accelerated | ||
1970 | memset(h->fast, 255, 1 << FAST_BITS); | ||
1971 | for (i=0; i < k; ++i) { | ||
1972 | int s = h->size[i]; | ||
1973 | if (s <= FAST_BITS) { | ||
1974 | int c = h->code[i] << (FAST_BITS-s); | ||
1975 | int m = 1 << (FAST_BITS-s); | ||
1976 | for (j=0; j < m; ++j) { | ||
1977 | h->fast[c+j] = (stbi_uc) i; | ||
1978 | } | ||
1979 | } | ||
1980 | } | ||
1981 | return 1; | ||
1982 | } | ||
1983 | |||
1984 | // build a table that decodes both magnitude and value of small ACs in | ||
1985 | // one go. | ||
1986 | static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h) | ||
1987 | { | ||
1988 | int i; | ||
1989 | for (i=0; i < (1 << FAST_BITS); ++i) { | ||
1990 | stbi_uc fast = h->fast[i]; | ||
1991 | fast_ac[i] = 0; | ||
1992 | if (fast < 255) { | ||
1993 | int rs = h->values[fast]; | ||
1994 | int run = (rs >> 4) & 15; | ||
1995 | int magbits = rs & 15; | ||
1996 | int len = h->size[fast]; | ||
1997 | |||
1998 | if (magbits && len + magbits <= FAST_BITS) { | ||
1999 | // magnitude code followed by receive_extend code | ||
2000 | int k = ((i << len) & ((1 << FAST_BITS) - 1)) >> (FAST_BITS - magbits); | ||
2001 | int m = 1 << (magbits - 1); | ||
2002 | if (k < m) k += (~0U << magbits) + 1; | ||
2003 | // if the result is small enough, we can fit it in fast_ac table | ||
2004 | if (k >= -128 && k <= 127) | ||
2005 | fast_ac[i] = (stbi__int16) ((k * 256) + (run * 16) + (len + magbits)); | ||
2006 | } | ||
2007 | } | ||
2008 | } | ||
2009 | } | ||
2010 | |||
2011 | static void stbi__grow_buffer_unsafe(stbi__jpeg *j) | ||
2012 | { | ||
2013 | do { | ||
2014 | unsigned int b = j->nomore ? 0 : stbi__get8(j->s); | ||
2015 | if (b == 0xff) { | ||
2016 | int c = stbi__get8(j->s); | ||
2017 | while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes | ||
2018 | if (c != 0) { | ||
2019 | j->marker = (unsigned char) c; | ||
2020 | j->nomore = 1; | ||
2021 | return; | ||
2022 | } | ||
2023 | } | ||
2024 | j->code_buffer |= b << (24 - j->code_bits); | ||
2025 | j->code_bits += 8; | ||
2026 | } while (j->code_bits <= 24); | ||
2027 | } | ||
2028 | |||
2029 | // (1 << n) - 1 | ||
2030 | static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535}; | ||
2031 | |||
2032 | // decode a jpeg huffman value from the bitstream | ||
2033 | stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h) | ||
2034 | { | ||
2035 | unsigned int temp; | ||
2036 | int c,k; | ||
2037 | |||
2038 | if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); | ||
2039 | |||
2040 | // look at the top FAST_BITS and determine what symbol ID it is, | ||
2041 | // if the code is <= FAST_BITS | ||
2042 | c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); | ||
2043 | k = h->fast[c]; | ||
2044 | if (k < 255) { | ||
2045 | int s = h->size[k]; | ||
2046 | if (s > j->code_bits) | ||
2047 | return -1; | ||
2048 | j->code_buffer <<= s; | ||
2049 | j->code_bits -= s; | ||
2050 | return h->values[k]; | ||
2051 | } | ||
2052 | |||
2053 | // naive test is to shift the code_buffer down so k bits are | ||
2054 | // valid, then test against maxcode. To speed this up, we've | ||
2055 | // preshifted maxcode left so that it has (16-k) 0s at the | ||
2056 | // end; in other words, regardless of the number of bits, it | ||
2057 | // wants to be compared against something shifted to have 16; | ||
2058 | // that way we don't need to shift inside the loop. | ||
2059 | temp = j->code_buffer >> 16; | ||
2060 | for (k=FAST_BITS+1 ; ; ++k) | ||
2061 | if (temp < h->maxcode[k]) | ||
2062 | break; | ||
2063 | if (k == 17) { | ||
2064 | // error! code not found | ||
2065 | j->code_bits -= 16; | ||
2066 | return -1; | ||
2067 | } | ||
2068 | |||
2069 | if (k > j->code_bits) | ||
2070 | return -1; | ||
2071 | |||
2072 | // convert the huffman code to the symbol id | ||
2073 | c = ((j->code_buffer >> (32 - k)) & stbi__bmask[k]) + h->delta[k]; | ||
2074 | STBI_ASSERT((((j->code_buffer) >> (32 - h->size[c])) & stbi__bmask[h->size[c]]) == h->code[c]); | ||
2075 | |||
2076 | // convert the id to a symbol | ||
2077 | j->code_bits -= k; | ||
2078 | j->code_buffer <<= k; | ||
2079 | return h->values[c]; | ||
2080 | } | ||
2081 | |||
2082 | // bias[n] = (-1<<n) + 1 | ||
2083 | static const int stbi__jbias[16] = {0,-1,-3,-7,-15,-31,-63,-127,-255,-511,-1023,-2047,-4095,-8191,-16383,-32767}; | ||
2084 | |||
2085 | // combined JPEG 'receive' and JPEG 'extend', since baseline | ||
2086 | // always extends everything it receives. | ||
2087 | stbi_inline static int stbi__extend_receive(stbi__jpeg *j, int n) | ||
2088 | { | ||
2089 | unsigned int k; | ||
2090 | int sgn; | ||
2091 | if (j->code_bits < n) stbi__grow_buffer_unsafe(j); | ||
2092 | |||
2093 | sgn = (stbi__int32)j->code_buffer >> 31; // sign bit is always in MSB | ||
2094 | k = stbi_lrot(j->code_buffer, n); | ||
2095 | if (n < 0 || n >= (int) (sizeof(stbi__bmask)/sizeof(*stbi__bmask))) return 0; | ||
2096 | j->code_buffer = k & ~stbi__bmask[n]; | ||
2097 | k &= stbi__bmask[n]; | ||
2098 | j->code_bits -= n; | ||
2099 | return k + (stbi__jbias[n] & ~sgn); | ||
2100 | } | ||
2101 | |||
2102 | // get some unsigned bits | ||
2103 | stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n) | ||
2104 | { | ||
2105 | unsigned int k; | ||
2106 | if (j->code_bits < n) stbi__grow_buffer_unsafe(j); | ||
2107 | k = stbi_lrot(j->code_buffer, n); | ||
2108 | j->code_buffer = k & ~stbi__bmask[n]; | ||
2109 | k &= stbi__bmask[n]; | ||
2110 | j->code_bits -= n; | ||
2111 | return k; | ||
2112 | } | ||
2113 | |||
2114 | stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j) | ||
2115 | { | ||
2116 | unsigned int k; | ||
2117 | if (j->code_bits < 1) stbi__grow_buffer_unsafe(j); | ||
2118 | k = j->code_buffer; | ||
2119 | j->code_buffer <<= 1; | ||
2120 | --j->code_bits; | ||
2121 | return k & 0x80000000; | ||
2122 | } | ||
2123 | |||
2124 | // given a value that's at position X in the zigzag stream, | ||
2125 | // where does it appear in the 8x8 matrix coded as row-major? | ||
2126 | static const stbi_uc stbi__jpeg_dezigzag[64+15] = | ||
2127 | { | ||
2128 | 0, 1, 8, 16, 9, 2, 3, 10, | ||
2129 | 17, 24, 32, 25, 18, 11, 4, 5, | ||
2130 | 12, 19, 26, 33, 40, 48, 41, 34, | ||
2131 | 27, 20, 13, 6, 7, 14, 21, 28, | ||
2132 | 35, 42, 49, 56, 57, 50, 43, 36, | ||
2133 | 29, 22, 15, 23, 30, 37, 44, 51, | ||
2134 | 58, 59, 52, 45, 38, 31, 39, 46, | ||
2135 | 53, 60, 61, 54, 47, 55, 62, 63, | ||
2136 | // let corrupt input sample past end | ||
2137 | 63, 63, 63, 63, 63, 63, 63, 63, | ||
2138 | 63, 63, 63, 63, 63, 63, 63 | ||
2139 | }; | ||
2140 | |||
2141 | // decode one 64-entry block-- | ||
2142 | static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant) | ||
2143 | { | ||
2144 | int diff,dc,k; | ||
2145 | int t; | ||
2146 | |||
2147 | if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); | ||
2148 | t = stbi__jpeg_huff_decode(j, hdc); | ||
2149 | if (t < 0) return stbi__err("bad huffman code","Corrupt JPEG"); | ||
2150 | |||
2151 | // 0 all the ac values now so we can do it 32-bits at a time | ||
2152 | memset(data,0,64*sizeof(data[0])); | ||
2153 | |||
2154 | diff = t ? stbi__extend_receive(j, t) : 0; | ||
2155 | dc = j->img_comp[b].dc_pred + diff; | ||
2156 | j->img_comp[b].dc_pred = dc; | ||
2157 | data[0] = (short) (dc * dequant[0]); | ||
2158 | |||
2159 | // decode AC components, see JPEG spec | ||
2160 | k = 1; | ||
2161 | do { | ||
2162 | unsigned int zig; | ||
2163 | int c,r,s; | ||
2164 | if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); | ||
2165 | c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); | ||
2166 | r = fac[c]; | ||
2167 | if (r) { // fast-AC path | ||
2168 | k += (r >> 4) & 15; // run | ||
2169 | s = r & 15; // combined length | ||
2170 | j->code_buffer <<= s; | ||
2171 | j->code_bits -= s; | ||
2172 | // decode into unzigzag'd location | ||
2173 | zig = stbi__jpeg_dezigzag[k++]; | ||
2174 | data[zig] = (short) ((r >> 8) * dequant[zig]); | ||
2175 | } else { | ||
2176 | int rs = stbi__jpeg_huff_decode(j, hac); | ||
2177 | if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); | ||
2178 | s = rs & 15; | ||
2179 | r = rs >> 4; | ||
2180 | if (s == 0) { | ||
2181 | if (rs != 0xf0) break; // end block | ||
2182 | k += 16; | ||
2183 | } else { | ||
2184 | k += r; | ||
2185 | // decode into unzigzag'd location | ||
2186 | zig = stbi__jpeg_dezigzag[k++]; | ||
2187 | data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]); | ||
2188 | } | ||
2189 | } | ||
2190 | } while (k < 64); | ||
2191 | return 1; | ||
2192 | } | ||
2193 | |||
2194 | static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b) | ||
2195 | { | ||
2196 | int diff,dc; | ||
2197 | int t; | ||
2198 | if (j->spec_end != 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); | ||
2199 | |||
2200 | if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); | ||
2201 | |||
2202 | if (j->succ_high == 0) { | ||
2203 | // first scan for DC coefficient, must be first | ||
2204 | memset(data,0,64*sizeof(data[0])); // 0 all the ac values now | ||
2205 | t = stbi__jpeg_huff_decode(j, hdc); | ||
2206 | if (t == -1) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); | ||
2207 | diff = t ? stbi__extend_receive(j, t) : 0; | ||
2208 | |||
2209 | dc = j->img_comp[b].dc_pred + diff; | ||
2210 | j->img_comp[b].dc_pred = dc; | ||
2211 | data[0] = (short) (dc << j->succ_low); | ||
2212 | } else { | ||
2213 | // refinement scan for DC coefficient | ||
2214 | if (stbi__jpeg_get_bit(j)) | ||
2215 | data[0] += (short) (1 << j->succ_low); | ||
2216 | } | ||
2217 | return 1; | ||
2218 | } | ||
2219 | |||
2220 | // @OPTIMIZE: store non-zigzagged during the decode passes, | ||
2221 | // and only de-zigzag when dequantizing | ||
2222 | static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac) | ||
2223 | { | ||
2224 | int k; | ||
2225 | if (j->spec_start == 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); | ||
2226 | |||
2227 | if (j->succ_high == 0) { | ||
2228 | int shift = j->succ_low; | ||
2229 | |||
2230 | if (j->eob_run) { | ||
2231 | --j->eob_run; | ||
2232 | return 1; | ||
2233 | } | ||
2234 | |||
2235 | k = j->spec_start; | ||
2236 | do { | ||
2237 | unsigned int zig; | ||
2238 | int c,r,s; | ||
2239 | if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); | ||
2240 | c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); | ||
2241 | r = fac[c]; | ||
2242 | if (r) { // fast-AC path | ||
2243 | k += (r >> 4) & 15; // run | ||
2244 | s = r & 15; // combined length | ||
2245 | j->code_buffer <<= s; | ||
2246 | j->code_bits -= s; | ||
2247 | zig = stbi__jpeg_dezigzag[k++]; | ||
2248 | data[zig] = (short) ((r >> 8) << shift); | ||
2249 | } else { | ||
2250 | int rs = stbi__jpeg_huff_decode(j, hac); | ||
2251 | if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); | ||
2252 | s = rs & 15; | ||
2253 | r = rs >> 4; | ||
2254 | if (s == 0) { | ||
2255 | if (r < 15) { | ||
2256 | j->eob_run = (1 << r); | ||
2257 | if (r) | ||
2258 | j->eob_run += stbi__jpeg_get_bits(j, r); | ||
2259 | --j->eob_run; | ||
2260 | break; | ||
2261 | } | ||
2262 | k += 16; | ||
2263 | } else { | ||
2264 | k += r; | ||
2265 | zig = stbi__jpeg_dezigzag[k++]; | ||
2266 | data[zig] = (short) (stbi__extend_receive(j,s) << shift); | ||
2267 | } | ||
2268 | } | ||
2269 | } while (k <= j->spec_end); | ||
2270 | } else { | ||
2271 | // refinement scan for these AC coefficients | ||
2272 | |||
2273 | short bit = (short) (1 << j->succ_low); | ||
2274 | |||
2275 | if (j->eob_run) { | ||
2276 | --j->eob_run; | ||
2277 | for (k = j->spec_start; k <= j->spec_end; ++k) { | ||
2278 | short *p = &data[stbi__jpeg_dezigzag[k]]; | ||
2279 | if (*p != 0) | ||
2280 | if (stbi__jpeg_get_bit(j)) | ||
2281 | if ((*p & bit)==0) { | ||
2282 | if (*p > 0) | ||
2283 | *p += bit; | ||
2284 | else | ||
2285 | *p -= bit; | ||
2286 | } | ||
2287 | } | ||
2288 | } else { | ||
2289 | k = j->spec_start; | ||
2290 | do { | ||
2291 | int r,s; | ||
2292 | int rs = stbi__jpeg_huff_decode(j, hac); // @OPTIMIZE see if we can use the fast path here, advance-by-r is so slow, eh | ||
2293 | if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); | ||
2294 | s = rs & 15; | ||
2295 | r = rs >> 4; | ||
2296 | if (s == 0) { | ||
2297 | if (r < 15) { | ||
2298 | j->eob_run = (1 << r) - 1; | ||
2299 | if (r) | ||
2300 | j->eob_run += stbi__jpeg_get_bits(j, r); | ||
2301 | r = 64; // force end of block | ||
2302 | } else { | ||
2303 | // r=15 s=0 should write 16 0s, so we just do | ||
2304 | // a run of 15 0s and then write s (which is 0), | ||
2305 | // so we don't have to do anything special here | ||
2306 | } | ||
2307 | } else { | ||
2308 | if (s != 1) return stbi__err("bad huffman code", "Corrupt JPEG"); | ||
2309 | // sign bit | ||
2310 | if (stbi__jpeg_get_bit(j)) | ||
2311 | s = bit; | ||
2312 | else | ||
2313 | s = -bit; | ||
2314 | } | ||
2315 | |||
2316 | // advance by r | ||
2317 | while (k <= j->spec_end) { | ||
2318 | short *p = &data[stbi__jpeg_dezigzag[k++]]; | ||
2319 | if (*p != 0) { | ||
2320 | if (stbi__jpeg_get_bit(j)) | ||
2321 | if ((*p & bit)==0) { | ||
2322 | if (*p > 0) | ||
2323 | *p += bit; | ||
2324 | else | ||
2325 | *p -= bit; | ||
2326 | } | ||
2327 | } else { | ||
2328 | if (r == 0) { | ||
2329 | *p = (short) s; | ||
2330 | break; | ||
2331 | } | ||
2332 | --r; | ||
2333 | } | ||
2334 | } | ||
2335 | } while (k <= j->spec_end); | ||
2336 | } | ||
2337 | } | ||
2338 | return 1; | ||
2339 | } | ||
2340 | |||
2341 | // take a -128..127 value and stbi__clamp it and convert to 0..255 | ||
2342 | stbi_inline static stbi_uc stbi__clamp(int x) | ||
2343 | { | ||
2344 | // trick to use a single test to catch both cases | ||
2345 | if ((unsigned int) x > 255) { | ||
2346 | if (x < 0) return 0; | ||
2347 | if (x > 255) return 255; | ||
2348 | } | ||
2349 | return (stbi_uc) x; | ||
2350 | } | ||
2351 | |||
2352 | #define stbi__f2f(x) ((int) (((x) * 4096 + 0.5))) | ||
2353 | #define stbi__fsh(x) ((x) * 4096) | ||
2354 | |||
2355 | // derived from jidctint -- DCT_ISLOW | ||
2356 | #define STBI__IDCT_1D(s0,s1,s2,s3,s4,s5,s6,s7) \ | ||
2357 | int t0,t1,t2,t3,p1,p2,p3,p4,p5,x0,x1,x2,x3; \ | ||
2358 | p2 = s2; \ | ||
2359 | p3 = s6; \ | ||
2360 | p1 = (p2+p3) * stbi__f2f(0.5411961f); \ | ||
2361 | t2 = p1 + p3*stbi__f2f(-1.847759065f); \ | ||
2362 | t3 = p1 + p2*stbi__f2f( 0.765366865f); \ | ||
2363 | p2 = s0; \ | ||
2364 | p3 = s4; \ | ||
2365 | t0 = stbi__fsh(p2+p3); \ | ||
2366 | t1 = stbi__fsh(p2-p3); \ | ||
2367 | x0 = t0+t3; \ | ||
2368 | x3 = t0-t3; \ | ||
2369 | x1 = t1+t2; \ | ||
2370 | x2 = t1-t2; \ | ||
2371 | t0 = s7; \ | ||
2372 | t1 = s5; \ | ||
2373 | t2 = s3; \ | ||
2374 | t3 = s1; \ | ||
2375 | p3 = t0+t2; \ | ||
2376 | p4 = t1+t3; \ | ||
2377 | p1 = t0+t3; \ | ||
2378 | p2 = t1+t2; \ | ||
2379 | p5 = (p3+p4)*stbi__f2f( 1.175875602f); \ | ||
2380 | t0 = t0*stbi__f2f( 0.298631336f); \ | ||
2381 | t1 = t1*stbi__f2f( 2.053119869f); \ | ||
2382 | t2 = t2*stbi__f2f( 3.072711026f); \ | ||
2383 | t3 = t3*stbi__f2f( 1.501321110f); \ | ||
2384 | p1 = p5 + p1*stbi__f2f(-0.899976223f); \ | ||
2385 | p2 = p5 + p2*stbi__f2f(-2.562915447f); \ | ||
2386 | p3 = p3*stbi__f2f(-1.961570560f); \ | ||
2387 | p4 = p4*stbi__f2f(-0.390180644f); \ | ||
2388 | t3 += p1+p4; \ | ||
2389 | t2 += p2+p3; \ | ||
2390 | t1 += p2+p4; \ | ||
2391 | t0 += p1+p3; | ||
2392 | |||
2393 | static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64]) | ||
2394 | { | ||
2395 | int i,val[64],*v=val; | ||
2396 | stbi_uc *o; | ||
2397 | short *d = data; | ||
2398 | |||
2399 | // columns | ||
2400 | for (i=0; i < 8; ++i,++d, ++v) { | ||
2401 | // if all zeroes, shortcut -- this avoids dequantizing 0s and IDCTing | ||
2402 | if (d[ 8]==0 && d[16]==0 && d[24]==0 && d[32]==0 | ||
2403 | && d[40]==0 && d[48]==0 && d[56]==0) { | ||
2404 | // no shortcut 0 seconds | ||
2405 | // (1|2|3|4|5|6|7)==0 0 seconds | ||
2406 | // all separate -0.047 seconds | ||
2407 | // 1 && 2|3 && 4|5 && 6|7: -0.047 seconds | ||
2408 | int dcterm = d[0]*4; | ||
2409 | v[0] = v[8] = v[16] = v[24] = v[32] = v[40] = v[48] = v[56] = dcterm; | ||
2410 | } else { | ||
2411 | STBI__IDCT_1D(d[ 0],d[ 8],d[16],d[24],d[32],d[40],d[48],d[56]) | ||
2412 | // constants scaled things up by 1<<12; let's bring them back | ||
2413 | // down, but keep 2 extra bits of precision | ||
2414 | x0 += 512; x1 += 512; x2 += 512; x3 += 512; | ||
2415 | v[ 0] = (x0+t3) >> 10; | ||
2416 | v[56] = (x0-t3) >> 10; | ||
2417 | v[ 8] = (x1+t2) >> 10; | ||
2418 | v[48] = (x1-t2) >> 10; | ||
2419 | v[16] = (x2+t1) >> 10; | ||
2420 | v[40] = (x2-t1) >> 10; | ||
2421 | v[24] = (x3+t0) >> 10; | ||
2422 | v[32] = (x3-t0) >> 10; | ||
2423 | } | ||
2424 | } | ||
2425 | |||
2426 | for (i=0, v=val, o=out; i < 8; ++i,v+=8,o+=out_stride) { | ||
2427 | // no fast case since the first 1D IDCT spread components out | ||
2428 | STBI__IDCT_1D(v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7]) | ||
2429 | // constants scaled things up by 1<<12, plus we had 1<<2 from first | ||
2430 | // loop, plus horizontal and vertical each scale by sqrt(8) so together | ||
2431 | // we've got an extra 1<<3, so 1<<17 total we need to remove. | ||
2432 | // so we want to round that, which means adding 0.5 * 1<<17, | ||
2433 | // aka 65536. Also, we'll end up with -128 to 127 that we want | ||
2434 | // to encode as 0..255 by adding 128, so we'll add that before the shift | ||
2435 | x0 += 65536 + (128<<17); | ||
2436 | x1 += 65536 + (128<<17); | ||
2437 | x2 += 65536 + (128<<17); | ||
2438 | x3 += 65536 + (128<<17); | ||
2439 | // tried computing the shifts into temps, or'ing the temps to see | ||
2440 | // if any were out of range, but that was slower | ||
2441 | o[0] = stbi__clamp((x0+t3) >> 17); | ||
2442 | o[7] = stbi__clamp((x0-t3) >> 17); | ||
2443 | o[1] = stbi__clamp((x1+t2) >> 17); | ||
2444 | o[6] = stbi__clamp((x1-t2) >> 17); | ||
2445 | o[2] = stbi__clamp((x2+t1) >> 17); | ||
2446 | o[5] = stbi__clamp((x2-t1) >> 17); | ||
2447 | o[3] = stbi__clamp((x3+t0) >> 17); | ||
2448 | o[4] = stbi__clamp((x3-t0) >> 17); | ||
2449 | } | ||
2450 | } | ||
2451 | |||
2452 | #ifdef STBI_SSE2 | ||
2453 | // sse2 integer IDCT. not the fastest possible implementation but it | ||
2454 | // produces bit-identical results to the generic C version so it's | ||
2455 | // fully "transparent". | ||
2456 | static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) | ||
2457 | { | ||
2458 | // This is constructed to match our regular (generic) integer IDCT exactly. | ||
2459 | __m128i row0, row1, row2, row3, row4, row5, row6, row7; | ||
2460 | __m128i tmp; | ||
2461 | |||
2462 | // dot product constant: even elems=x, odd elems=y | ||
2463 | #define dct_const(x,y) _mm_setr_epi16((x),(y),(x),(y),(x),(y),(x),(y)) | ||
2464 | |||
2465 | // out(0) = c0[even]*x + c0[odd]*y (c0, x, y 16-bit, out 32-bit) | ||
2466 | // out(1) = c1[even]*x + c1[odd]*y | ||
2467 | #define dct_rot(out0,out1, x,y,c0,c1) \ | ||
2468 | __m128i c0##lo = _mm_unpacklo_epi16((x),(y)); \ | ||
2469 | __m128i c0##hi = _mm_unpackhi_epi16((x),(y)); \ | ||
2470 | __m128i out0##_l = _mm_madd_epi16(c0##lo, c0); \ | ||
2471 | __m128i out0##_h = _mm_madd_epi16(c0##hi, c0); \ | ||
2472 | __m128i out1##_l = _mm_madd_epi16(c0##lo, c1); \ | ||
2473 | __m128i out1##_h = _mm_madd_epi16(c0##hi, c1) | ||
2474 | |||
2475 | // out = in << 12 (in 16-bit, out 32-bit) | ||
2476 | #define dct_widen(out, in) \ | ||
2477 | __m128i out##_l = _mm_srai_epi32(_mm_unpacklo_epi16(_mm_setzero_si128(), (in)), 4); \ | ||
2478 | __m128i out##_h = _mm_srai_epi32(_mm_unpackhi_epi16(_mm_setzero_si128(), (in)), 4) | ||
2479 | |||
2480 | // wide add | ||
2481 | #define dct_wadd(out, a, b) \ | ||
2482 | __m128i out##_l = _mm_add_epi32(a##_l, b##_l); \ | ||
2483 | __m128i out##_h = _mm_add_epi32(a##_h, b##_h) | ||
2484 | |||
2485 | // wide sub | ||
2486 | #define dct_wsub(out, a, b) \ | ||
2487 | __m128i out##_l = _mm_sub_epi32(a##_l, b##_l); \ | ||
2488 | __m128i out##_h = _mm_sub_epi32(a##_h, b##_h) | ||
2489 | |||
2490 | // butterfly a/b, add bias, then shift by "s" and pack | ||
2491 | #define dct_bfly32o(out0, out1, a,b,bias,s) \ | ||
2492 | { \ | ||
2493 | __m128i abiased_l = _mm_add_epi32(a##_l, bias); \ | ||
2494 | __m128i abiased_h = _mm_add_epi32(a##_h, bias); \ | ||
2495 | dct_wadd(sum, abiased, b); \ | ||
2496 | dct_wsub(dif, abiased, b); \ | ||
2497 | out0 = _mm_packs_epi32(_mm_srai_epi32(sum_l, s), _mm_srai_epi32(sum_h, s)); \ | ||
2498 | out1 = _mm_packs_epi32(_mm_srai_epi32(dif_l, s), _mm_srai_epi32(dif_h, s)); \ | ||
2499 | } | ||
2500 | |||
2501 | // 8-bit interleave step (for transposes) | ||
2502 | #define dct_interleave8(a, b) \ | ||
2503 | tmp = a; \ | ||
2504 | a = _mm_unpacklo_epi8(a, b); \ | ||
2505 | b = _mm_unpackhi_epi8(tmp, b) | ||
2506 | |||
2507 | // 16-bit interleave step (for transposes) | ||
2508 | #define dct_interleave16(a, b) \ | ||
2509 | tmp = a; \ | ||
2510 | a = _mm_unpacklo_epi16(a, b); \ | ||
2511 | b = _mm_unpackhi_epi16(tmp, b) | ||
2512 | |||
2513 | #define dct_pass(bias,shift) \ | ||
2514 | { \ | ||
2515 | /* even part */ \ | ||
2516 | dct_rot(t2e,t3e, row2,row6, rot0_0,rot0_1); \ | ||
2517 | __m128i sum04 = _mm_add_epi16(row0, row4); \ | ||
2518 | __m128i dif04 = _mm_sub_epi16(row0, row4); \ | ||
2519 | dct_widen(t0e, sum04); \ | ||
2520 | dct_widen(t1e, dif04); \ | ||
2521 | dct_wadd(x0, t0e, t3e); \ | ||
2522 | dct_wsub(x3, t0e, t3e); \ | ||
2523 | dct_wadd(x1, t1e, t2e); \ | ||
2524 | dct_wsub(x2, t1e, t2e); \ | ||
2525 | /* odd part */ \ | ||
2526 | dct_rot(y0o,y2o, row7,row3, rot2_0,rot2_1); \ | ||
2527 | dct_rot(y1o,y3o, row5,row1, rot3_0,rot3_1); \ | ||
2528 | __m128i sum17 = _mm_add_epi16(row1, row7); \ | ||
2529 | __m128i sum35 = _mm_add_epi16(row3, row5); \ | ||
2530 | dct_rot(y4o,y5o, sum17,sum35, rot1_0,rot1_1); \ | ||
2531 | dct_wadd(x4, y0o, y4o); \ | ||
2532 | dct_wadd(x5, y1o, y5o); \ | ||
2533 | dct_wadd(x6, y2o, y5o); \ | ||
2534 | dct_wadd(x7, y3o, y4o); \ | ||
2535 | dct_bfly32o(row0,row7, x0,x7,bias,shift); \ | ||
2536 | dct_bfly32o(row1,row6, x1,x6,bias,shift); \ | ||
2537 | dct_bfly32o(row2,row5, x2,x5,bias,shift); \ | ||
2538 | dct_bfly32o(row3,row4, x3,x4,bias,shift); \ | ||
2539 | } | ||
2540 | |||
2541 | __m128i rot0_0 = dct_const(stbi__f2f(0.5411961f), stbi__f2f(0.5411961f) + stbi__f2f(-1.847759065f)); | ||
2542 | __m128i rot0_1 = dct_const(stbi__f2f(0.5411961f) + stbi__f2f( 0.765366865f), stbi__f2f(0.5411961f)); | ||
2543 | __m128i rot1_0 = dct_const(stbi__f2f(1.175875602f) + stbi__f2f(-0.899976223f), stbi__f2f(1.175875602f)); | ||
2544 | __m128i rot1_1 = dct_const(stbi__f2f(1.175875602f), stbi__f2f(1.175875602f) + stbi__f2f(-2.562915447f)); | ||
2545 | __m128i rot2_0 = dct_const(stbi__f2f(-1.961570560f) + stbi__f2f( 0.298631336f), stbi__f2f(-1.961570560f)); | ||
2546 | __m128i rot2_1 = dct_const(stbi__f2f(-1.961570560f), stbi__f2f(-1.961570560f) + stbi__f2f( 3.072711026f)); | ||
2547 | __m128i rot3_0 = dct_const(stbi__f2f(-0.390180644f) + stbi__f2f( 2.053119869f), stbi__f2f(-0.390180644f)); | ||
2548 | __m128i rot3_1 = dct_const(stbi__f2f(-0.390180644f), stbi__f2f(-0.390180644f) + stbi__f2f( 1.501321110f)); | ||
2549 | |||
2550 | // rounding biases in column/row passes, see stbi__idct_block for explanation. | ||
2551 | __m128i bias_0 = _mm_set1_epi32(512); | ||
2552 | __m128i bias_1 = _mm_set1_epi32(65536 + (128<<17)); | ||
2553 | |||
2554 | // load | ||
2555 | row0 = _mm_load_si128((const __m128i *) (data + 0*8)); | ||
2556 | row1 = _mm_load_si128((const __m128i *) (data + 1*8)); | ||
2557 | row2 = _mm_load_si128((const __m128i *) (data + 2*8)); | ||
2558 | row3 = _mm_load_si128((const __m128i *) (data + 3*8)); | ||
2559 | row4 = _mm_load_si128((const __m128i *) (data + 4*8)); | ||
2560 | row5 = _mm_load_si128((const __m128i *) (data + 5*8)); | ||
2561 | row6 = _mm_load_si128((const __m128i *) (data + 6*8)); | ||
2562 | row7 = _mm_load_si128((const __m128i *) (data + 7*8)); | ||
2563 | |||
2564 | // column pass | ||
2565 | dct_pass(bias_0, 10); | ||
2566 | |||
2567 | { | ||
2568 | // 16bit 8x8 transpose pass 1 | ||
2569 | dct_interleave16(row0, row4); | ||
2570 | dct_interleave16(row1, row5); | ||
2571 | dct_interleave16(row2, row6); | ||
2572 | dct_interleave16(row3, row7); | ||
2573 | |||
2574 | // transpose pass 2 | ||
2575 | dct_interleave16(row0, row2); | ||
2576 | dct_interleave16(row1, row3); | ||
2577 | dct_interleave16(row4, row6); | ||
2578 | dct_interleave16(row5, row7); | ||
2579 | |||
2580 | // transpose pass 3 | ||
2581 | dct_interleave16(row0, row1); | ||
2582 | dct_interleave16(row2, row3); | ||
2583 | dct_interleave16(row4, row5); | ||
2584 | dct_interleave16(row6, row7); | ||
2585 | } | ||
2586 | |||
2587 | // row pass | ||
2588 | dct_pass(bias_1, 17); | ||
2589 | |||
2590 | { | ||
2591 | // pack | ||
2592 | __m128i p0 = _mm_packus_epi16(row0, row1); // a0a1a2a3...a7b0b1b2b3...b7 | ||
2593 | __m128i p1 = _mm_packus_epi16(row2, row3); | ||
2594 | __m128i p2 = _mm_packus_epi16(row4, row5); | ||
2595 | __m128i p3 = _mm_packus_epi16(row6, row7); | ||
2596 | |||
2597 | // 8bit 8x8 transpose pass 1 | ||
2598 | dct_interleave8(p0, p2); // a0e0a1e1... | ||
2599 | dct_interleave8(p1, p3); // c0g0c1g1... | ||
2600 | |||
2601 | // transpose pass 2 | ||
2602 | dct_interleave8(p0, p1); // a0c0e0g0... | ||
2603 | dct_interleave8(p2, p3); // b0d0f0h0... | ||
2604 | |||
2605 | // transpose pass 3 | ||
2606 | dct_interleave8(p0, p2); // a0b0c0d0... | ||
2607 | dct_interleave8(p1, p3); // a4b4c4d4... | ||
2608 | |||
2609 | // store | ||
2610 | _mm_storel_epi64((__m128i *) out, p0); out += out_stride; | ||
2611 | _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p0, 0x4e)); out += out_stride; | ||
2612 | _mm_storel_epi64((__m128i *) out, p2); out += out_stride; | ||
2613 | _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p2, 0x4e)); out += out_stride; | ||
2614 | _mm_storel_epi64((__m128i *) out, p1); out += out_stride; | ||
2615 | _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p1, 0x4e)); out += out_stride; | ||
2616 | _mm_storel_epi64((__m128i *) out, p3); out += out_stride; | ||
2617 | _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p3, 0x4e)); | ||
2618 | } | ||
2619 | |||
2620 | #undef dct_const | ||
2621 | #undef dct_rot | ||
2622 | #undef dct_widen | ||
2623 | #undef dct_wadd | ||
2624 | #undef dct_wsub | ||
2625 | #undef dct_bfly32o | ||
2626 | #undef dct_interleave8 | ||
2627 | #undef dct_interleave16 | ||
2628 | #undef dct_pass | ||
2629 | } | ||
2630 | |||
2631 | #endif // STBI_SSE2 | ||
2632 | |||
2633 | #ifdef STBI_NEON | ||
2634 | |||
2635 | // NEON integer IDCT. should produce bit-identical | ||
2636 | // results to the generic C version. | ||
2637 | static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) | ||
2638 | { | ||
2639 | int16x8_t row0, row1, row2, row3, row4, row5, row6, row7; | ||
2640 | |||
2641 | int16x4_t rot0_0 = vdup_n_s16(stbi__f2f(0.5411961f)); | ||
2642 | int16x4_t rot0_1 = vdup_n_s16(stbi__f2f(-1.847759065f)); | ||
2643 | int16x4_t rot0_2 = vdup_n_s16(stbi__f2f( 0.765366865f)); | ||
2644 | int16x4_t rot1_0 = vdup_n_s16(stbi__f2f( 1.175875602f)); | ||
2645 | int16x4_t rot1_1 = vdup_n_s16(stbi__f2f(-0.899976223f)); | ||
2646 | int16x4_t rot1_2 = vdup_n_s16(stbi__f2f(-2.562915447f)); | ||
2647 | int16x4_t rot2_0 = vdup_n_s16(stbi__f2f(-1.961570560f)); | ||
2648 | int16x4_t rot2_1 = vdup_n_s16(stbi__f2f(-0.390180644f)); | ||
2649 | int16x4_t rot3_0 = vdup_n_s16(stbi__f2f( 0.298631336f)); | ||
2650 | int16x4_t rot3_1 = vdup_n_s16(stbi__f2f( 2.053119869f)); | ||
2651 | int16x4_t rot3_2 = vdup_n_s16(stbi__f2f( 3.072711026f)); | ||
2652 | int16x4_t rot3_3 = vdup_n_s16(stbi__f2f( 1.501321110f)); | ||
2653 | |||
2654 | #define dct_long_mul(out, inq, coeff) \ | ||
2655 | int32x4_t out##_l = vmull_s16(vget_low_s16(inq), coeff); \ | ||
2656 | int32x4_t out##_h = vmull_s16(vget_high_s16(inq), coeff) | ||
2657 | |||
2658 | #define dct_long_mac(out, acc, inq, coeff) \ | ||
2659 | int32x4_t out##_l = vmlal_s16(acc##_l, vget_low_s16(inq), coeff); \ | ||
2660 | int32x4_t out##_h = vmlal_s16(acc##_h, vget_high_s16(inq), coeff) | ||
2661 | |||
2662 | #define dct_widen(out, inq) \ | ||
2663 | int32x4_t out##_l = vshll_n_s16(vget_low_s16(inq), 12); \ | ||
2664 | int32x4_t out##_h = vshll_n_s16(vget_high_s16(inq), 12) | ||
2665 | |||
2666 | // wide add | ||
2667 | #define dct_wadd(out, a, b) \ | ||
2668 | int32x4_t out##_l = vaddq_s32(a##_l, b##_l); \ | ||
2669 | int32x4_t out##_h = vaddq_s32(a##_h, b##_h) | ||
2670 | |||
2671 | // wide sub | ||
2672 | #define dct_wsub(out, a, b) \ | ||
2673 | int32x4_t out##_l = vsubq_s32(a##_l, b##_l); \ | ||
2674 | int32x4_t out##_h = vsubq_s32(a##_h, b##_h) | ||
2675 | |||
2676 | // butterfly a/b, then shift using "shiftop" by "s" and pack | ||
2677 | #define dct_bfly32o(out0,out1, a,b,shiftop,s) \ | ||
2678 | { \ | ||
2679 | dct_wadd(sum, a, b); \ | ||
2680 | dct_wsub(dif, a, b); \ | ||
2681 | out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \ | ||
2682 | out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \ | ||
2683 | } | ||
2684 | |||
2685 | #define dct_pass(shiftop, shift) \ | ||
2686 | { \ | ||
2687 | /* even part */ \ | ||
2688 | int16x8_t sum26 = vaddq_s16(row2, row6); \ | ||
2689 | dct_long_mul(p1e, sum26, rot0_0); \ | ||
2690 | dct_long_mac(t2e, p1e, row6, rot0_1); \ | ||
2691 | dct_long_mac(t3e, p1e, row2, rot0_2); \ | ||
2692 | int16x8_t sum04 = vaddq_s16(row0, row4); \ | ||
2693 | int16x8_t dif04 = vsubq_s16(row0, row4); \ | ||
2694 | dct_widen(t0e, sum04); \ | ||
2695 | dct_widen(t1e, dif04); \ | ||
2696 | dct_wadd(x0, t0e, t3e); \ | ||
2697 | dct_wsub(x3, t0e, t3e); \ | ||
2698 | dct_wadd(x1, t1e, t2e); \ | ||
2699 | dct_wsub(x2, t1e, t2e); \ | ||
2700 | /* odd part */ \ | ||
2701 | int16x8_t sum15 = vaddq_s16(row1, row5); \ | ||
2702 | int16x8_t sum17 = vaddq_s16(row1, row7); \ | ||
2703 | int16x8_t sum35 = vaddq_s16(row3, row5); \ | ||
2704 | int16x8_t sum37 = vaddq_s16(row3, row7); \ | ||
2705 | int16x8_t sumodd = vaddq_s16(sum17, sum35); \ | ||
2706 | dct_long_mul(p5o, sumodd, rot1_0); \ | ||
2707 | dct_long_mac(p1o, p5o, sum17, rot1_1); \ | ||
2708 | dct_long_mac(p2o, p5o, sum35, rot1_2); \ | ||
2709 | dct_long_mul(p3o, sum37, rot2_0); \ | ||
2710 | dct_long_mul(p4o, sum15, rot2_1); \ | ||
2711 | dct_wadd(sump13o, p1o, p3o); \ | ||
2712 | dct_wadd(sump24o, p2o, p4o); \ | ||
2713 | dct_wadd(sump23o, p2o, p3o); \ | ||
2714 | dct_wadd(sump14o, p1o, p4o); \ | ||
2715 | dct_long_mac(x4, sump13o, row7, rot3_0); \ | ||
2716 | dct_long_mac(x5, sump24o, row5, rot3_1); \ | ||
2717 | dct_long_mac(x6, sump23o, row3, rot3_2); \ | ||
2718 | dct_long_mac(x7, sump14o, row1, rot3_3); \ | ||
2719 | dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \ | ||
2720 | dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \ | ||
2721 | dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \ | ||
2722 | dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \ | ||
2723 | } | ||
2724 | |||
2725 | // load | ||
2726 | row0 = vld1q_s16(data + 0*8); | ||
2727 | row1 = vld1q_s16(data + 1*8); | ||
2728 | row2 = vld1q_s16(data + 2*8); | ||
2729 | row3 = vld1q_s16(data + 3*8); | ||
2730 | row4 = vld1q_s16(data + 4*8); | ||
2731 | row5 = vld1q_s16(data + 5*8); | ||
2732 | row6 = vld1q_s16(data + 6*8); | ||
2733 | row7 = vld1q_s16(data + 7*8); | ||
2734 | |||
2735 | // add DC bias | ||
2736 | row0 = vaddq_s16(row0, vsetq_lane_s16(1024, vdupq_n_s16(0), 0)); | ||
2737 | |||
2738 | // column pass | ||
2739 | dct_pass(vrshrn_n_s32, 10); | ||
2740 | |||
2741 | // 16bit 8x8 transpose | ||
2742 | { | ||
2743 | // these three map to a single VTRN.16, VTRN.32, and VSWP, respectively. | ||
2744 | // whether compilers actually get this is another story, sadly. | ||
2745 | #define dct_trn16(x, y) { int16x8x2_t t = vtrnq_s16(x, y); x = t.val[0]; y = t.val[1]; } | ||
2746 | #define dct_trn32(x, y) { int32x4x2_t t = vtrnq_s32(vreinterpretq_s32_s16(x), vreinterpretq_s32_s16(y)); x = vreinterpretq_s16_s32(t.val[0]); y = vreinterpretq_s16_s32(t.val[1]); } | ||
2747 | #define dct_trn64(x, y) { int16x8_t x0 = x; int16x8_t y0 = y; x = vcombine_s16(vget_low_s16(x0), vget_low_s16(y0)); y = vcombine_s16(vget_high_s16(x0), vget_high_s16(y0)); } | ||
2748 | |||
2749 | // pass 1 | ||
2750 | dct_trn16(row0, row1); // a0b0a2b2a4b4a6b6 | ||
2751 | dct_trn16(row2, row3); | ||
2752 | dct_trn16(row4, row5); | ||
2753 | dct_trn16(row6, row7); | ||
2754 | |||
2755 | // pass 2 | ||
2756 | dct_trn32(row0, row2); // a0b0c0d0a4b4c4d4 | ||
2757 | dct_trn32(row1, row3); | ||
2758 | dct_trn32(row4, row6); | ||
2759 | dct_trn32(row5, row7); | ||
2760 | |||
2761 | // pass 3 | ||
2762 | dct_trn64(row0, row4); // a0b0c0d0e0f0g0h0 | ||
2763 | dct_trn64(row1, row5); | ||
2764 | dct_trn64(row2, row6); | ||
2765 | dct_trn64(row3, row7); | ||
2766 | |||
2767 | #undef dct_trn16 | ||
2768 | #undef dct_trn32 | ||
2769 | #undef dct_trn64 | ||
2770 | } | ||
2771 | |||
2772 | // row pass | ||
2773 | // vrshrn_n_s32 only supports shifts up to 16, we need | ||
2774 | // 17. so do a non-rounding shift of 16 first then follow | ||
2775 | // up with a rounding shift by 1. | ||
2776 | dct_pass(vshrn_n_s32, 16); | ||
2777 | |||
2778 | { | ||
2779 | // pack and round | ||
2780 | uint8x8_t p0 = vqrshrun_n_s16(row0, 1); | ||
2781 | uint8x8_t p1 = vqrshrun_n_s16(row1, 1); | ||
2782 | uint8x8_t p2 = vqrshrun_n_s16(row2, 1); | ||
2783 | uint8x8_t p3 = vqrshrun_n_s16(row3, 1); | ||
2784 | uint8x8_t p4 = vqrshrun_n_s16(row4, 1); | ||
2785 | uint8x8_t p5 = vqrshrun_n_s16(row5, 1); | ||
2786 | uint8x8_t p6 = vqrshrun_n_s16(row6, 1); | ||
2787 | uint8x8_t p7 = vqrshrun_n_s16(row7, 1); | ||
2788 | |||
2789 | // again, these can translate into one instruction, but often don't. | ||
2790 | #define dct_trn8_8(x, y) { uint8x8x2_t t = vtrn_u8(x, y); x = t.val[0]; y = t.val[1]; } | ||
2791 | #define dct_trn8_16(x, y) { uint16x4x2_t t = vtrn_u16(vreinterpret_u16_u8(x), vreinterpret_u16_u8(y)); x = vreinterpret_u8_u16(t.val[0]); y = vreinterpret_u8_u16(t.val[1]); } | ||
2792 | #define dct_trn8_32(x, y) { uint32x2x2_t t = vtrn_u32(vreinterpret_u32_u8(x), vreinterpret_u32_u8(y)); x = vreinterpret_u8_u32(t.val[0]); y = vreinterpret_u8_u32(t.val[1]); } | ||
2793 | |||
2794 | // sadly can't use interleaved stores here since we only write | ||
2795 | // 8 bytes to each scan line! | ||
2796 | |||
2797 | // 8x8 8-bit transpose pass 1 | ||
2798 | dct_trn8_8(p0, p1); | ||
2799 | dct_trn8_8(p2, p3); | ||
2800 | dct_trn8_8(p4, p5); | ||
2801 | dct_trn8_8(p6, p7); | ||
2802 | |||
2803 | // pass 2 | ||
2804 | dct_trn8_16(p0, p2); | ||
2805 | dct_trn8_16(p1, p3); | ||
2806 | dct_trn8_16(p4, p6); | ||
2807 | dct_trn8_16(p5, p7); | ||
2808 | |||
2809 | // pass 3 | ||
2810 | dct_trn8_32(p0, p4); | ||
2811 | dct_trn8_32(p1, p5); | ||
2812 | dct_trn8_32(p2, p6); | ||
2813 | dct_trn8_32(p3, p7); | ||
2814 | |||
2815 | // store | ||
2816 | vst1_u8(out, p0); out += out_stride; | ||
2817 | vst1_u8(out, p1); out += out_stride; | ||
2818 | vst1_u8(out, p2); out += out_stride; | ||
2819 | vst1_u8(out, p3); out += out_stride; | ||
2820 | vst1_u8(out, p4); out += out_stride; | ||
2821 | vst1_u8(out, p5); out += out_stride; | ||
2822 | vst1_u8(out, p6); out += out_stride; | ||
2823 | vst1_u8(out, p7); | ||
2824 | |||
2825 | #undef dct_trn8_8 | ||
2826 | #undef dct_trn8_16 | ||
2827 | #undef dct_trn8_32 | ||
2828 | } | ||
2829 | |||
2830 | #undef dct_long_mul | ||
2831 | #undef dct_long_mac | ||
2832 | #undef dct_widen | ||
2833 | #undef dct_wadd | ||
2834 | #undef dct_wsub | ||
2835 | #undef dct_bfly32o | ||
2836 | #undef dct_pass | ||
2837 | } | ||
2838 | |||
2839 | #endif // STBI_NEON | ||
2840 | |||
2841 | #define STBI__MARKER_none 0xff | ||
2842 | // if there's a pending marker from the entropy stream, return that | ||
2843 | // otherwise, fetch from the stream and get a marker. if there's no | ||
2844 | // marker, return 0xff, which is never a valid marker value | ||
2845 | static stbi_uc stbi__get_marker(stbi__jpeg *j) | ||
2846 | { | ||
2847 | stbi_uc x; | ||
2848 | if (j->marker != STBI__MARKER_none) { x = j->marker; j->marker = STBI__MARKER_none; return x; } | ||
2849 | x = stbi__get8(j->s); | ||
2850 | if (x != 0xff) return STBI__MARKER_none; | ||
2851 | while (x == 0xff) | ||
2852 | x = stbi__get8(j->s); // consume repeated 0xff fill bytes | ||
2853 | return x; | ||
2854 | } | ||
2855 | |||
2856 | // in each scan, we'll have scan_n components, and the order | ||
2857 | // of the components is specified by order[] | ||
2858 | #define STBI__RESTART(x) ((x) >= 0xd0 && (x) <= 0xd7) | ||
2859 | |||
2860 | // after a restart interval, stbi__jpeg_reset the entropy decoder and | ||
2861 | // the dc prediction | ||
2862 | static void stbi__jpeg_reset(stbi__jpeg *j) | ||
2863 | { | ||
2864 | j->code_bits = 0; | ||
2865 | j->code_buffer = 0; | ||
2866 | j->nomore = 0; | ||
2867 | j->img_comp[0].dc_pred = j->img_comp[1].dc_pred = j->img_comp[2].dc_pred = j->img_comp[3].dc_pred = 0; | ||
2868 | j->marker = STBI__MARKER_none; | ||
2869 | j->todo = j->restart_interval ? j->restart_interval : 0x7fffffff; | ||
2870 | j->eob_run = 0; | ||
2871 | // no more than 1<<31 MCUs if no restart_interal? that's plenty safe, | ||
2872 | // since we don't even allow 1<<30 pixels | ||
2873 | } | ||
2874 | |||
2875 | static int stbi__parse_entropy_coded_data(stbi__jpeg *z) | ||
2876 | { | ||
2877 | stbi__jpeg_reset(z); | ||
2878 | if (!z->progressive) { | ||
2879 | if (z->scan_n == 1) { | ||
2880 | int i,j; | ||
2881 | STBI_SIMD_ALIGN(short, data[64]); | ||
2882 | int n = z->order[0]; | ||
2883 | // non-interleaved data, we just need to process one block at a time, | ||
2884 | // in trivial scanline order | ||
2885 | // number of blocks to do just depends on how many actual "pixels" this | ||
2886 | // component has, independent of interleaved MCU blocking and such | ||
2887 | int w = (z->img_comp[n].x+7) >> 3; | ||
2888 | int h = (z->img_comp[n].y+7) >> 3; | ||
2889 | for (j=0; j < h; ++j) { | ||
2890 | for (i=0; i < w; ++i) { | ||
2891 | int ha = z->img_comp[n].ha; | ||
2892 | if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; | ||
2893 | z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); | ||
2894 | // every data block is an MCU, so countdown the restart interval | ||
2895 | if (--z->todo <= 0) { | ||
2896 | if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); | ||
2897 | // if it's NOT a restart, then just bail, so we get corrupt data | ||
2898 | // rather than no data | ||
2899 | if (!STBI__RESTART(z->marker)) return 1; | ||
2900 | stbi__jpeg_reset(z); | ||
2901 | } | ||
2902 | } | ||
2903 | } | ||
2904 | return 1; | ||
2905 | } else { // interleaved | ||
2906 | int i,j,k,x,y; | ||
2907 | STBI_SIMD_ALIGN(short, data[64]); | ||
2908 | for (j=0; j < z->img_mcu_y; ++j) { | ||
2909 | for (i=0; i < z->img_mcu_x; ++i) { | ||
2910 | // scan an interleaved mcu... process scan_n components in order | ||
2911 | for (k=0; k < z->scan_n; ++k) { | ||
2912 | int n = z->order[k]; | ||
2913 | // scan out an mcu's worth of this component; that's just determined | ||
2914 | // by the basic H and V specified for the component | ||
2915 | for (y=0; y < z->img_comp[n].v; ++y) { | ||
2916 | for (x=0; x < z->img_comp[n].h; ++x) { | ||
2917 | int x2 = (i*z->img_comp[n].h + x)*8; | ||
2918 | int y2 = (j*z->img_comp[n].v + y)*8; | ||
2919 | int ha = z->img_comp[n].ha; | ||
2920 | if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; | ||
2921 | z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*y2+x2, z->img_comp[n].w2, data); | ||
2922 | } | ||
2923 | } | ||
2924 | } | ||
2925 | // after all interleaved components, that's an interleaved MCU, | ||
2926 | // so now count down the restart interval | ||
2927 | if (--z->todo <= 0) { | ||
2928 | if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); | ||
2929 | if (!STBI__RESTART(z->marker)) return 1; | ||
2930 | stbi__jpeg_reset(z); | ||
2931 | } | ||
2932 | } | ||
2933 | } | ||
2934 | return 1; | ||
2935 | } | ||
2936 | } else { | ||
2937 | if (z->scan_n == 1) { | ||
2938 | int i,j; | ||
2939 | int n = z->order[0]; | ||
2940 | // non-interleaved data, we just need to process one block at a time, | ||
2941 | // in trivial scanline order | ||
2942 | // number of blocks to do just depends on how many actual "pixels" this | ||
2943 | // component has, independent of interleaved MCU blocking and such | ||
2944 | int w = (z->img_comp[n].x+7) >> 3; | ||
2945 | int h = (z->img_comp[n].y+7) >> 3; | ||
2946 | for (j=0; j < h; ++j) { | ||
2947 | for (i=0; i < w; ++i) { | ||
2948 | short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); | ||
2949 | if (z->spec_start == 0) { | ||
2950 | if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) | ||
2951 | return 0; | ||
2952 | } else { | ||
2953 | int ha = z->img_comp[n].ha; | ||
2954 | if (!stbi__jpeg_decode_block_prog_ac(z, data, &z->huff_ac[ha], z->fast_ac[ha])) | ||
2955 | return 0; | ||
2956 | } | ||
2957 | // every data block is an MCU, so countdown the restart interval | ||
2958 | if (--z->todo <= 0) { | ||
2959 | if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); | ||
2960 | if (!STBI__RESTART(z->marker)) return 1; | ||
2961 | stbi__jpeg_reset(z); | ||
2962 | } | ||
2963 | } | ||
2964 | } | ||
2965 | return 1; | ||
2966 | } else { // interleaved | ||
2967 | int i,j,k,x,y; | ||
2968 | for (j=0; j < z->img_mcu_y; ++j) { | ||
2969 | for (i=0; i < z->img_mcu_x; ++i) { | ||
2970 | // scan an interleaved mcu... process scan_n components in order | ||
2971 | for (k=0; k < z->scan_n; ++k) { | ||
2972 | int n = z->order[k]; | ||
2973 | // scan out an mcu's worth of this component; that's just determined | ||
2974 | // by the basic H and V specified for the component | ||
2975 | for (y=0; y < z->img_comp[n].v; ++y) { | ||
2976 | for (x=0; x < z->img_comp[n].h; ++x) { | ||
2977 | int x2 = (i*z->img_comp[n].h + x); | ||
2978 | int y2 = (j*z->img_comp[n].v + y); | ||
2979 | short *data = z->img_comp[n].coeff + 64 * (x2 + y2 * z->img_comp[n].coeff_w); | ||
2980 | if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) | ||
2981 | return 0; | ||
2982 | } | ||
2983 | } | ||
2984 | } | ||
2985 | // after all interleaved components, that's an interleaved MCU, | ||
2986 | // so now count down the restart interval | ||
2987 | if (--z->todo <= 0) { | ||
2988 | if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); | ||
2989 | if (!STBI__RESTART(z->marker)) return 1; | ||
2990 | stbi__jpeg_reset(z); | ||
2991 | } | ||
2992 | } | ||
2993 | } | ||
2994 | return 1; | ||
2995 | } | ||
2996 | } | ||
2997 | } | ||
2998 | |||
2999 | static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant) | ||
3000 | { | ||
3001 | int i; | ||
3002 | for (i=0; i < 64; ++i) | ||
3003 | data[i] *= dequant[i]; | ||
3004 | } | ||
3005 | |||
3006 | static void stbi__jpeg_finish(stbi__jpeg *z) | ||
3007 | { | ||
3008 | if (z->progressive) { | ||
3009 | // dequantize and idct the data | ||
3010 | int i,j,n; | ||
3011 | for (n=0; n < z->s->img_n; ++n) { | ||
3012 | int w = (z->img_comp[n].x+7) >> 3; | ||
3013 | int h = (z->img_comp[n].y+7) >> 3; | ||
3014 | for (j=0; j < h; ++j) { | ||
3015 | for (i=0; i < w; ++i) { | ||
3016 | short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); | ||
3017 | stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]); | ||
3018 | z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); | ||
3019 | } | ||
3020 | } | ||
3021 | } | ||
3022 | } | ||
3023 | } | ||
3024 | |||
3025 | static int stbi__process_marker(stbi__jpeg *z, int m) | ||
3026 | { | ||
3027 | int L; | ||
3028 | switch (m) { | ||
3029 | case STBI__MARKER_none: // no marker found | ||
3030 | return stbi__err("expected marker","Corrupt JPEG"); | ||
3031 | |||
3032 | case 0xDD: // DRI - specify restart interval | ||
3033 | if (stbi__get16be(z->s) != 4) return stbi__err("bad DRI len","Corrupt JPEG"); | ||
3034 | z->restart_interval = stbi__get16be(z->s); | ||
3035 | return 1; | ||
3036 | |||
3037 | case 0xDB: // DQT - define quantization table | ||
3038 | L = stbi__get16be(z->s)-2; | ||
3039 | while (L > 0) { | ||
3040 | int q = stbi__get8(z->s); | ||
3041 | int p = q >> 4, sixteen = (p != 0); | ||
3042 | int t = q & 15,i; | ||
3043 | if (p != 0 && p != 1) return stbi__err("bad DQT type","Corrupt JPEG"); | ||
3044 | if (t > 3) return stbi__err("bad DQT table","Corrupt JPEG"); | ||
3045 | |||
3046 | for (i=0; i < 64; ++i) | ||
3047 | z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(z->s)); | ||
3048 | L -= (sixteen ? 129 : 65); | ||
3049 | } | ||
3050 | return L==0; | ||
3051 | |||
3052 | case 0xC4: // DHT - define huffman table | ||
3053 | L = stbi__get16be(z->s)-2; | ||
3054 | while (L > 0) { | ||
3055 | stbi_uc *v; | ||
3056 | int sizes[16],i,n=0; | ||
3057 | int q = stbi__get8(z->s); | ||
3058 | int tc = q >> 4; | ||
3059 | int th = q & 15; | ||
3060 | if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG"); | ||
3061 | for (i=0; i < 16; ++i) { | ||
3062 | sizes[i] = stbi__get8(z->s); | ||
3063 | n += sizes[i]; | ||
3064 | } | ||
3065 | L -= 17; | ||
3066 | if (tc == 0) { | ||
3067 | if (!stbi__build_huffman(z->huff_dc+th, sizes)) return 0; | ||
3068 | v = z->huff_dc[th].values; | ||
3069 | } else { | ||
3070 | if (!stbi__build_huffman(z->huff_ac+th, sizes)) return 0; | ||
3071 | v = z->huff_ac[th].values; | ||
3072 | } | ||
3073 | for (i=0; i < n; ++i) | ||
3074 | v[i] = stbi__get8(z->s); | ||
3075 | if (tc != 0) | ||
3076 | stbi__build_fast_ac(z->fast_ac[th], z->huff_ac + th); | ||
3077 | L -= n; | ||
3078 | } | ||
3079 | return L==0; | ||
3080 | } | ||
3081 | |||
3082 | // check for comment block or APP blocks | ||
3083 | if ((m >= 0xE0 && m <= 0xEF) || m == 0xFE) { | ||
3084 | L = stbi__get16be(z->s); | ||
3085 | if (L < 2) { | ||
3086 | if (m == 0xFE) | ||
3087 | return stbi__err("bad COM len","Corrupt JPEG"); | ||
3088 | else | ||
3089 | return stbi__err("bad APP len","Corrupt JPEG"); | ||
3090 | } | ||
3091 | L -= 2; | ||
3092 | |||
3093 | if (m == 0xE0 && L >= 5) { // JFIF APP0 segment | ||
3094 | static const unsigned char tag[5] = {'J','F','I','F','\0'}; | ||
3095 | int ok = 1; | ||
3096 | int i; | ||
3097 | for (i=0; i < 5; ++i) | ||
3098 | if (stbi__get8(z->s) != tag[i]) | ||
3099 | ok = 0; | ||
3100 | L -= 5; | ||
3101 | if (ok) | ||
3102 | z->jfif = 1; | ||
3103 | } else if (m == 0xEE && L >= 12) { // Adobe APP14 segment | ||
3104 | static const unsigned char tag[6] = {'A','d','o','b','e','\0'}; | ||
3105 | int ok = 1; | ||
3106 | int i; | ||
3107 | for (i=0; i < 6; ++i) | ||
3108 | if (stbi__get8(z->s) != tag[i]) | ||
3109 | ok = 0; | ||
3110 | L -= 6; | ||
3111 | if (ok) { | ||
3112 | stbi__get8(z->s); // version | ||
3113 | stbi__get16be(z->s); // flags0 | ||
3114 | stbi__get16be(z->s); // flags1 | ||
3115 | z->app14_color_transform = stbi__get8(z->s); // color transform | ||
3116 | L -= 6; | ||
3117 | } | ||
3118 | } | ||
3119 | |||
3120 | stbi__skip(z->s, L); | ||
3121 | return 1; | ||
3122 | } | ||
3123 | |||
3124 | return stbi__err("unknown marker","Corrupt JPEG"); | ||
3125 | } | ||
3126 | |||
3127 | // after we see SOS | ||
3128 | static int stbi__process_scan_header(stbi__jpeg *z) | ||
3129 | { | ||
3130 | int i; | ||
3131 | int Ls = stbi__get16be(z->s); | ||
3132 | z->scan_n = stbi__get8(z->s); | ||
3133 | if (z->scan_n < 1 || z->scan_n > 4 || z->scan_n > (int) z->s->img_n) return stbi__err("bad SOS component count","Corrupt JPEG"); | ||
3134 | if (Ls != 6+2*z->scan_n) return stbi__err("bad SOS len","Corrupt JPEG"); | ||
3135 | for (i=0; i < z->scan_n; ++i) { | ||
3136 | int id = stbi__get8(z->s), which; | ||
3137 | int q = stbi__get8(z->s); | ||
3138 | for (which = 0; which < z->s->img_n; ++which) | ||
3139 | if (z->img_comp[which].id == id) | ||
3140 | break; | ||
3141 | if (which == z->s->img_n) return 0; // no match | ||
3142 | z->img_comp[which].hd = q >> 4; if (z->img_comp[which].hd > 3) return stbi__err("bad DC huff","Corrupt JPEG"); | ||
3143 | z->img_comp[which].ha = q & 15; if (z->img_comp[which].ha > 3) return stbi__err("bad AC huff","Corrupt JPEG"); | ||
3144 | z->order[i] = which; | ||
3145 | } | ||
3146 | |||
3147 | { | ||
3148 | int aa; | ||
3149 | z->spec_start = stbi__get8(z->s); | ||
3150 | z->spec_end = stbi__get8(z->s); // should be 63, but might be 0 | ||
3151 | aa = stbi__get8(z->s); | ||
3152 | z->succ_high = (aa >> 4); | ||
3153 | z->succ_low = (aa & 15); | ||
3154 | if (z->progressive) { | ||
3155 | if (z->spec_start > 63 || z->spec_end > 63 || z->spec_start > z->spec_end || z->succ_high > 13 || z->succ_low > 13) | ||
3156 | return stbi__err("bad SOS", "Corrupt JPEG"); | ||
3157 | } else { | ||
3158 | if (z->spec_start != 0) return stbi__err("bad SOS","Corrupt JPEG"); | ||
3159 | if (z->succ_high != 0 || z->succ_low != 0) return stbi__err("bad SOS","Corrupt JPEG"); | ||
3160 | z->spec_end = 63; | ||
3161 | } | ||
3162 | } | ||
3163 | |||
3164 | return 1; | ||
3165 | } | ||
3166 | |||
3167 | static int stbi__free_jpeg_components(stbi__jpeg *z, int ncomp, int why) | ||
3168 | { | ||
3169 | int i; | ||
3170 | for (i=0; i < ncomp; ++i) { | ||
3171 | if (z->img_comp[i].raw_data) { | ||
3172 | STBI_FREE(z->img_comp[i].raw_data); | ||
3173 | z->img_comp[i].raw_data = NULL; | ||
3174 | z->img_comp[i].data = NULL; | ||
3175 | } | ||
3176 | if (z->img_comp[i].raw_coeff) { | ||
3177 | STBI_FREE(z->img_comp[i].raw_coeff); | ||
3178 | z->img_comp[i].raw_coeff = 0; | ||
3179 | z->img_comp[i].coeff = 0; | ||
3180 | } | ||
3181 | if (z->img_comp[i].linebuf) { | ||
3182 | STBI_FREE(z->img_comp[i].linebuf); | ||
3183 | z->img_comp[i].linebuf = NULL; | ||
3184 | } | ||
3185 | } | ||
3186 | return why; | ||
3187 | } | ||
3188 | |||
3189 | static int stbi__process_frame_header(stbi__jpeg *z, int scan) | ||
3190 | { | ||
3191 | stbi__context *s = z->s; | ||
3192 | int Lf,p,i,q, h_max=1,v_max=1,c; | ||
3193 | Lf = stbi__get16be(s); if (Lf < 11) return stbi__err("bad SOF len","Corrupt JPEG"); // JPEG | ||
3194 | p = stbi__get8(s); if (p != 8) return stbi__err("only 8-bit","JPEG format not supported: 8-bit only"); // JPEG baseline | ||
3195 | s->img_y = stbi__get16be(s); if (s->img_y == 0) return stbi__err("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG | ||
3196 | s->img_x = stbi__get16be(s); if (s->img_x == 0) return stbi__err("0 width","Corrupt JPEG"); // JPEG requires | ||
3197 | if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); | ||
3198 | if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); | ||
3199 | c = stbi__get8(s); | ||
3200 | if (c != 3 && c != 1 && c != 4) return stbi__err("bad component count","Corrupt JPEG"); | ||
3201 | s->img_n = c; | ||
3202 | for (i=0; i < c; ++i) { | ||
3203 | z->img_comp[i].data = NULL; | ||
3204 | z->img_comp[i].linebuf = NULL; | ||
3205 | } | ||
3206 | |||
3207 | if (Lf != 8+3*s->img_n) return stbi__err("bad SOF len","Corrupt JPEG"); | ||
3208 | |||
3209 | z->rgb = 0; | ||
3210 | for (i=0; i < s->img_n; ++i) { | ||
3211 | static const unsigned char rgb[3] = { 'R', 'G', 'B' }; | ||
3212 | z->img_comp[i].id = stbi__get8(s); | ||
3213 | if (s->img_n == 3 && z->img_comp[i].id == rgb[i]) | ||
3214 | ++z->rgb; | ||
3215 | q = stbi__get8(s); | ||
3216 | z->img_comp[i].h = (q >> 4); if (!z->img_comp[i].h || z->img_comp[i].h > 4) return stbi__err("bad H","Corrupt JPEG"); | ||
3217 | z->img_comp[i].v = q & 15; if (!z->img_comp[i].v || z->img_comp[i].v > 4) return stbi__err("bad V","Corrupt JPEG"); | ||
3218 | z->img_comp[i].tq = stbi__get8(s); if (z->img_comp[i].tq > 3) return stbi__err("bad TQ","Corrupt JPEG"); | ||
3219 | } | ||
3220 | |||
3221 | if (scan != STBI__SCAN_load) return 1; | ||
3222 | |||
3223 | if (!stbi__mad3sizes_valid(s->img_x, s->img_y, s->img_n, 0)) return stbi__err("too large", "Image too large to decode"); | ||
3224 | |||
3225 | for (i=0; i < s->img_n; ++i) { | ||
3226 | if (z->img_comp[i].h > h_max) h_max = z->img_comp[i].h; | ||
3227 | if (z->img_comp[i].v > v_max) v_max = z->img_comp[i].v; | ||
3228 | } | ||
3229 | |||
3230 | // compute interleaved mcu info | ||
3231 | z->img_h_max = h_max; | ||
3232 | z->img_v_max = v_max; | ||
3233 | z->img_mcu_w = h_max * 8; | ||
3234 | z->img_mcu_h = v_max * 8; | ||
3235 | // these sizes can't be more than 17 bits | ||
3236 | z->img_mcu_x = (s->img_x + z->img_mcu_w-1) / z->img_mcu_w; | ||
3237 | z->img_mcu_y = (s->img_y + z->img_mcu_h-1) / z->img_mcu_h; | ||
3238 | |||
3239 | for (i=0; i < s->img_n; ++i) { | ||
3240 | // number of effective pixels (e.g. for non-interleaved MCU) | ||
3241 | z->img_comp[i].x = (s->img_x * z->img_comp[i].h + h_max-1) / h_max; | ||
3242 | z->img_comp[i].y = (s->img_y * z->img_comp[i].v + v_max-1) / v_max; | ||
3243 | // to simplify generation, we'll allocate enough memory to decode | ||
3244 | // the bogus oversized data from using interleaved MCUs and their | ||
3245 | // big blocks (e.g. a 16x16 iMCU on an image of width 33); we won't | ||
3246 | // discard the extra data until colorspace conversion | ||
3247 | // | ||
3248 | // img_mcu_x, img_mcu_y: <=17 bits; comp[i].h and .v are <=4 (checked earlier) | ||
3249 | // so these muls can't overflow with 32-bit ints (which we require) | ||
3250 | z->img_comp[i].w2 = z->img_mcu_x * z->img_comp[i].h * 8; | ||
3251 | z->img_comp[i].h2 = z->img_mcu_y * z->img_comp[i].v * 8; | ||
3252 | z->img_comp[i].coeff = 0; | ||
3253 | z->img_comp[i].raw_coeff = 0; | ||
3254 | z->img_comp[i].linebuf = NULL; | ||
3255 | z->img_comp[i].raw_data = stbi__malloc_mad2(z->img_comp[i].w2, z->img_comp[i].h2, 15); | ||
3256 | if (z->img_comp[i].raw_data == NULL) | ||
3257 | return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); | ||
3258 | // align blocks for idct using mmx/sse | ||
3259 | z->img_comp[i].data = (stbi_uc*) (((size_t) z->img_comp[i].raw_data + 15) & ~15); | ||
3260 | if (z->progressive) { | ||
3261 | // w2, h2 are multiples of 8 (see above) | ||
3262 | z->img_comp[i].coeff_w = z->img_comp[i].w2 / 8; | ||
3263 | z->img_comp[i].coeff_h = z->img_comp[i].h2 / 8; | ||
3264 | z->img_comp[i].raw_coeff = stbi__malloc_mad3(z->img_comp[i].w2, z->img_comp[i].h2, sizeof(short), 15); | ||
3265 | if (z->img_comp[i].raw_coeff == NULL) | ||
3266 | return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); | ||
3267 | z->img_comp[i].coeff = (short*) (((size_t) z->img_comp[i].raw_coeff + 15) & ~15); | ||
3268 | } | ||
3269 | } | ||
3270 | |||
3271 | return 1; | ||
3272 | } | ||
3273 | |||
3274 | // use comparisons since in some cases we handle more than one case (e.g. SOF) | ||
3275 | #define stbi__DNL(x) ((x) == 0xdc) | ||
3276 | #define stbi__SOI(x) ((x) == 0xd8) | ||
3277 | #define stbi__EOI(x) ((x) == 0xd9) | ||
3278 | #define stbi__SOF(x) ((x) == 0xc0 || (x) == 0xc1 || (x) == 0xc2) | ||
3279 | #define stbi__SOS(x) ((x) == 0xda) | ||
3280 | |||
3281 | #define stbi__SOF_progressive(x) ((x) == 0xc2) | ||
3282 | |||
3283 | static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan) | ||
3284 | { | ||
3285 | int m; | ||
3286 | z->jfif = 0; | ||
3287 | z->app14_color_transform = -1; // valid values are 0,1,2 | ||
3288 | z->marker = STBI__MARKER_none; // initialize cached marker to empty | ||
3289 | m = stbi__get_marker(z); | ||
3290 | if (!stbi__SOI(m)) return stbi__err("no SOI","Corrupt JPEG"); | ||
3291 | if (scan == STBI__SCAN_type) return 1; | ||
3292 | m = stbi__get_marker(z); | ||
3293 | while (!stbi__SOF(m)) { | ||
3294 | if (!stbi__process_marker(z,m)) return 0; | ||
3295 | m = stbi__get_marker(z); | ||
3296 | while (m == STBI__MARKER_none) { | ||
3297 | // some files have extra padding after their blocks, so ok, we'll scan | ||
3298 | if (stbi__at_eof(z->s)) return stbi__err("no SOF", "Corrupt JPEG"); | ||
3299 | m = stbi__get_marker(z); | ||
3300 | } | ||
3301 | } | ||
3302 | z->progressive = stbi__SOF_progressive(m); | ||
3303 | if (!stbi__process_frame_header(z, scan)) return 0; | ||
3304 | return 1; | ||
3305 | } | ||
3306 | |||
3307 | // decode image to YCbCr format | ||
3308 | static int stbi__decode_jpeg_image(stbi__jpeg *j) | ||
3309 | { | ||
3310 | int m; | ||
3311 | for (m = 0; m < 4; m++) { | ||
3312 | j->img_comp[m].raw_data = NULL; | ||
3313 | j->img_comp[m].raw_coeff = NULL; | ||
3314 | } | ||
3315 | j->restart_interval = 0; | ||
3316 | if (!stbi__decode_jpeg_header(j, STBI__SCAN_load)) return 0; | ||
3317 | m = stbi__get_marker(j); | ||
3318 | while (!stbi__EOI(m)) { | ||
3319 | if (stbi__SOS(m)) { | ||
3320 | if (!stbi__process_scan_header(j)) return 0; | ||
3321 | if (!stbi__parse_entropy_coded_data(j)) return 0; | ||
3322 | if (j->marker == STBI__MARKER_none ) { | ||
3323 | // handle 0s at the end of image data from IP Kamera 9060 | ||
3324 | while (!stbi__at_eof(j->s)) { | ||
3325 | int x = stbi__get8(j->s); | ||
3326 | if (x == 255) { | ||
3327 | j->marker = stbi__get8(j->s); | ||
3328 | break; | ||
3329 | } | ||
3330 | } | ||
3331 | // if we reach eof without hitting a marker, stbi__get_marker() below will fail and we'll eventually return 0 | ||
3332 | } | ||
3333 | } else if (stbi__DNL(m)) { | ||
3334 | int Ld = stbi__get16be(j->s); | ||
3335 | stbi__uint32 NL = stbi__get16be(j->s); | ||
3336 | if (Ld != 4) return stbi__err("bad DNL len", "Corrupt JPEG"); | ||
3337 | if (NL != j->s->img_y) return stbi__err("bad DNL height", "Corrupt JPEG"); | ||
3338 | } else { | ||
3339 | if (!stbi__process_marker(j, m)) return 0; | ||
3340 | } | ||
3341 | m = stbi__get_marker(j); | ||
3342 | } | ||
3343 | if (j->progressive) | ||
3344 | stbi__jpeg_finish(j); | ||
3345 | return 1; | ||
3346 | } | ||
3347 | |||
3348 | // static jfif-centered resampling (across block boundaries) | ||
3349 | |||
3350 | typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1, | ||
3351 | int w, int hs); | ||
3352 | |||
3353 | #define stbi__div4(x) ((stbi_uc) ((x) >> 2)) | ||
3354 | |||
3355 | static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) | ||
3356 | { | ||
3357 | STBI_NOTUSED(out); | ||
3358 | STBI_NOTUSED(in_far); | ||
3359 | STBI_NOTUSED(w); | ||
3360 | STBI_NOTUSED(hs); | ||
3361 | return in_near; | ||
3362 | } | ||
3363 | |||
3364 | static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) | ||
3365 | { | ||
3366 | // need to generate two samples vertically for every one in input | ||
3367 | int i; | ||
3368 | STBI_NOTUSED(hs); | ||
3369 | for (i=0; i < w; ++i) | ||
3370 | out[i] = stbi__div4(3*in_near[i] + in_far[i] + 2); | ||
3371 | return out; | ||
3372 | } | ||
3373 | |||
3374 | static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) | ||
3375 | { | ||
3376 | // need to generate two samples horizontally for every one in input | ||
3377 | int i; | ||
3378 | stbi_uc *input = in_near; | ||
3379 | |||
3380 | if (w == 1) { | ||
3381 | // if only one sample, can't do any interpolation | ||
3382 | out[0] = out[1] = input[0]; | ||
3383 | return out; | ||
3384 | } | ||
3385 | |||
3386 | out[0] = input[0]; | ||
3387 | out[1] = stbi__div4(input[0]*3 + input[1] + 2); | ||
3388 | for (i=1; i < w-1; ++i) { | ||
3389 | int n = 3*input[i]+2; | ||
3390 | out[i*2+0] = stbi__div4(n+input[i-1]); | ||
3391 | out[i*2+1] = stbi__div4(n+input[i+1]); | ||
3392 | } | ||
3393 | out[i*2+0] = stbi__div4(input[w-2]*3 + input[w-1] + 2); | ||
3394 | out[i*2+1] = input[w-1]; | ||
3395 | |||
3396 | STBI_NOTUSED(in_far); | ||
3397 | STBI_NOTUSED(hs); | ||
3398 | |||
3399 | return out; | ||
3400 | } | ||
3401 | |||
3402 | #define stbi__div16(x) ((stbi_uc) ((x) >> 4)) | ||
3403 | |||
3404 | static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) | ||
3405 | { | ||
3406 | // need to generate 2x2 samples for every one in input | ||
3407 | int i,t0,t1; | ||
3408 | if (w == 1) { | ||
3409 | out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); | ||
3410 | return out; | ||
3411 | } | ||
3412 | |||
3413 | t1 = 3*in_near[0] + in_far[0]; | ||
3414 | out[0] = stbi__div4(t1+2); | ||
3415 | for (i=1; i < w; ++i) { | ||
3416 | t0 = t1; | ||
3417 | t1 = 3*in_near[i]+in_far[i]; | ||
3418 | out[i*2-1] = stbi__div16(3*t0 + t1 + 8); | ||
3419 | out[i*2 ] = stbi__div16(3*t1 + t0 + 8); | ||
3420 | } | ||
3421 | out[w*2-1] = stbi__div4(t1+2); | ||
3422 | |||
3423 | STBI_NOTUSED(hs); | ||
3424 | |||
3425 | return out; | ||
3426 | } | ||
3427 | |||
3428 | #if defined(STBI_SSE2) || defined(STBI_NEON) | ||
3429 | static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) | ||
3430 | { | ||
3431 | // need to generate 2x2 samples for every one in input | ||
3432 | int i=0,t0,t1; | ||
3433 | |||
3434 | if (w == 1) { | ||
3435 | out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); | ||
3436 | return out; | ||
3437 | } | ||
3438 | |||
3439 | t1 = 3*in_near[0] + in_far[0]; | ||
3440 | // process groups of 8 pixels for as long as we can. | ||
3441 | // note we can't handle the last pixel in a row in this loop | ||
3442 | // because we need to handle the filter boundary conditions. | ||
3443 | for (; i < ((w-1) & ~7); i += 8) { | ||
3444 | #if defined(STBI_SSE2) | ||
3445 | // load and perform the vertical filtering pass | ||
3446 | // this uses 3*x + y = 4*x + (y - x) | ||
3447 | __m128i zero = _mm_setzero_si128(); | ||
3448 | __m128i farb = _mm_loadl_epi64((__m128i *) (in_far + i)); | ||
3449 | __m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i)); | ||
3450 | __m128i farw = _mm_unpacklo_epi8(farb, zero); | ||
3451 | __m128i nearw = _mm_unpacklo_epi8(nearb, zero); | ||
3452 | __m128i diff = _mm_sub_epi16(farw, nearw); | ||
3453 | __m128i nears = _mm_slli_epi16(nearw, 2); | ||
3454 | __m128i curr = _mm_add_epi16(nears, diff); // current row | ||
3455 | |||
3456 | // horizontal filter works the same based on shifted vers of current | ||
3457 | // row. "prev" is current row shifted right by 1 pixel; we need to | ||
3458 | // insert the previous pixel value (from t1). | ||
3459 | // "next" is current row shifted left by 1 pixel, with first pixel | ||
3460 | // of next block of 8 pixels added in. | ||
3461 | __m128i prv0 = _mm_slli_si128(curr, 2); | ||
3462 | __m128i nxt0 = _mm_srli_si128(curr, 2); | ||
3463 | __m128i prev = _mm_insert_epi16(prv0, t1, 0); | ||
3464 | __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7); | ||
3465 | |||
3466 | // horizontal filter, polyphase implementation since it's convenient: | ||
3467 | // even pixels = 3*cur + prev = cur*4 + (prev - cur) | ||
3468 | // odd pixels = 3*cur + next = cur*4 + (next - cur) | ||
3469 | // note the shared term. | ||
3470 | __m128i bias = _mm_set1_epi16(8); | ||
3471 | __m128i curs = _mm_slli_epi16(curr, 2); | ||
3472 | __m128i prvd = _mm_sub_epi16(prev, curr); | ||
3473 | __m128i nxtd = _mm_sub_epi16(next, curr); | ||
3474 | __m128i curb = _mm_add_epi16(curs, bias); | ||
3475 | __m128i even = _mm_add_epi16(prvd, curb); | ||
3476 | __m128i odd = _mm_add_epi16(nxtd, curb); | ||
3477 | |||
3478 | // interleave even and odd pixels, then undo scaling. | ||
3479 | __m128i int0 = _mm_unpacklo_epi16(even, odd); | ||
3480 | __m128i int1 = _mm_unpackhi_epi16(even, odd); | ||
3481 | __m128i de0 = _mm_srli_epi16(int0, 4); | ||
3482 | __m128i de1 = _mm_srli_epi16(int1, 4); | ||
3483 | |||
3484 | // pack and write output | ||
3485 | __m128i outv = _mm_packus_epi16(de0, de1); | ||
3486 | _mm_storeu_si128((__m128i *) (out + i*2), outv); | ||
3487 | #elif defined(STBI_NEON) | ||
3488 | // load and perform the vertical filtering pass | ||
3489 | // this uses 3*x + y = 4*x + (y - x) | ||
3490 | uint8x8_t farb = vld1_u8(in_far + i); | ||
3491 | uint8x8_t nearb = vld1_u8(in_near + i); | ||
3492 | int16x8_t diff = vreinterpretq_s16_u16(vsubl_u8(farb, nearb)); | ||
3493 | int16x8_t nears = vreinterpretq_s16_u16(vshll_n_u8(nearb, 2)); | ||
3494 | int16x8_t curr = vaddq_s16(nears, diff); // current row | ||
3495 | |||
3496 | // horizontal filter works the same based on shifted vers of current | ||
3497 | // row. "prev" is current row shifted right by 1 pixel; we need to | ||
3498 | // insert the previous pixel value (from t1). | ||
3499 | // "next" is current row shifted left by 1 pixel, with first pixel | ||
3500 | // of next block of 8 pixels added in. | ||
3501 | int16x8_t prv0 = vextq_s16(curr, curr, 7); | ||
3502 | int16x8_t nxt0 = vextq_s16(curr, curr, 1); | ||
3503 | int16x8_t prev = vsetq_lane_s16(t1, prv0, 0); | ||
3504 | int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7); | ||
3505 | |||
3506 | // horizontal filter, polyphase implementation since it's convenient: | ||
3507 | // even pixels = 3*cur + prev = cur*4 + (prev - cur) | ||
3508 | // odd pixels = 3*cur + next = cur*4 + (next - cur) | ||
3509 | // note the shared term. | ||
3510 | int16x8_t curs = vshlq_n_s16(curr, 2); | ||
3511 | int16x8_t prvd = vsubq_s16(prev, curr); | ||
3512 | int16x8_t nxtd = vsubq_s16(next, curr); | ||
3513 | int16x8_t even = vaddq_s16(curs, prvd); | ||
3514 | int16x8_t odd = vaddq_s16(curs, nxtd); | ||
3515 | |||
3516 | // undo scaling and round, then store with even/odd phases interleaved | ||
3517 | uint8x8x2_t o; | ||
3518 | o.val[0] = vqrshrun_n_s16(even, 4); | ||
3519 | o.val[1] = vqrshrun_n_s16(odd, 4); | ||
3520 | vst2_u8(out + i*2, o); | ||
3521 | #endif | ||
3522 | |||
3523 | // "previous" value for next iter | ||
3524 | t1 = 3*in_near[i+7] + in_far[i+7]; | ||
3525 | } | ||
3526 | |||
3527 | t0 = t1; | ||
3528 | t1 = 3*in_near[i] + in_far[i]; | ||
3529 | out[i*2] = stbi__div16(3*t1 + t0 + 8); | ||
3530 | |||
3531 | for (++i; i < w; ++i) { | ||
3532 | t0 = t1; | ||
3533 | t1 = 3*in_near[i]+in_far[i]; | ||
3534 | out[i*2-1] = stbi__div16(3*t0 + t1 + 8); | ||
3535 | out[i*2 ] = stbi__div16(3*t1 + t0 + 8); | ||
3536 | } | ||
3537 | out[w*2-1] = stbi__div4(t1+2); | ||
3538 | |||
3539 | STBI_NOTUSED(hs); | ||
3540 | |||
3541 | return out; | ||
3542 | } | ||
3543 | #endif | ||
3544 | |||
3545 | static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) | ||
3546 | { | ||
3547 | // resample with nearest-neighbor | ||
3548 | int i,j; | ||
3549 | STBI_NOTUSED(in_far); | ||
3550 | for (i=0; i < w; ++i) | ||
3551 | for (j=0; j < hs; ++j) | ||
3552 | out[i*hs+j] = in_near[i]; | ||
3553 | return out; | ||
3554 | } | ||
3555 | |||
3556 | // this is a reduced-precision calculation of YCbCr-to-RGB introduced | ||
3557 | // to make sure the code produces the same results in both SIMD and scalar | ||
3558 | #define stbi__float2fixed(x) (((int) ((x) * 4096.0f + 0.5f)) << 8) | ||
3559 | static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step) | ||
3560 | { | ||
3561 | int i; | ||
3562 | for (i=0; i < count; ++i) { | ||
3563 | int y_fixed = (y[i] << 20) + (1<<19); // rounding | ||
3564 | int r,g,b; | ||
3565 | int cr = pcr[i] - 128; | ||
3566 | int cb = pcb[i] - 128; | ||
3567 | r = y_fixed + cr* stbi__float2fixed(1.40200f); | ||
3568 | g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); | ||
3569 | b = y_fixed + cb* stbi__float2fixed(1.77200f); | ||
3570 | r >>= 20; | ||
3571 | g >>= 20; | ||
3572 | b >>= 20; | ||
3573 | if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } | ||
3574 | if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } | ||
3575 | if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } | ||
3576 | out[0] = (stbi_uc)r; | ||
3577 | out[1] = (stbi_uc)g; | ||
3578 | out[2] = (stbi_uc)b; | ||
3579 | out[3] = 255; | ||
3580 | out += step; | ||
3581 | } | ||
3582 | } | ||
3583 | |||
3584 | #if defined(STBI_SSE2) || defined(STBI_NEON) | ||
3585 | static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi_uc const *pcb, stbi_uc const *pcr, int count, int step) | ||
3586 | { | ||
3587 | int i = 0; | ||
3588 | |||
3589 | #ifdef STBI_SSE2 | ||
3590 | // step == 3 is pretty ugly on the final interleave, and i'm not convinced | ||
3591 | // it's useful in practice (you wouldn't use it for textures, for example). | ||
3592 | // so just accelerate step == 4 case. | ||
3593 | if (step == 4) { | ||
3594 | // this is a fairly straightforward implementation and not super-optimized. | ||
3595 | __m128i signflip = _mm_set1_epi8(-0x80); | ||
3596 | __m128i cr_const0 = _mm_set1_epi16( (short) ( 1.40200f*4096.0f+0.5f)); | ||
3597 | __m128i cr_const1 = _mm_set1_epi16( - (short) ( 0.71414f*4096.0f+0.5f)); | ||
3598 | __m128i cb_const0 = _mm_set1_epi16( - (short) ( 0.34414f*4096.0f+0.5f)); | ||
3599 | __m128i cb_const1 = _mm_set1_epi16( (short) ( 1.77200f*4096.0f+0.5f)); | ||
3600 | __m128i y_bias = _mm_set1_epi8((char) (unsigned char) 128); | ||
3601 | __m128i xw = _mm_set1_epi16(255); // alpha channel | ||
3602 | |||
3603 | for (; i+7 < count; i += 8) { | ||
3604 | // load | ||
3605 | __m128i y_bytes = _mm_loadl_epi64((__m128i *) (y+i)); | ||
3606 | __m128i cr_bytes = _mm_loadl_epi64((__m128i *) (pcr+i)); | ||
3607 | __m128i cb_bytes = _mm_loadl_epi64((__m128i *) (pcb+i)); | ||
3608 | __m128i cr_biased = _mm_xor_si128(cr_bytes, signflip); // -128 | ||
3609 | __m128i cb_biased = _mm_xor_si128(cb_bytes, signflip); // -128 | ||
3610 | |||
3611 | // unpack to short (and left-shift cr, cb by 8) | ||
3612 | __m128i yw = _mm_unpacklo_epi8(y_bias, y_bytes); | ||
3613 | __m128i crw = _mm_unpacklo_epi8(_mm_setzero_si128(), cr_biased); | ||
3614 | __m128i cbw = _mm_unpacklo_epi8(_mm_setzero_si128(), cb_biased); | ||
3615 | |||
3616 | // color transform | ||
3617 | __m128i yws = _mm_srli_epi16(yw, 4); | ||
3618 | __m128i cr0 = _mm_mulhi_epi16(cr_const0, crw); | ||
3619 | __m128i cb0 = _mm_mulhi_epi16(cb_const0, cbw); | ||
3620 | __m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1); | ||
3621 | __m128i cr1 = _mm_mulhi_epi16(crw, cr_const1); | ||
3622 | __m128i rws = _mm_add_epi16(cr0, yws); | ||
3623 | __m128i gwt = _mm_add_epi16(cb0, yws); | ||
3624 | __m128i bws = _mm_add_epi16(yws, cb1); | ||
3625 | __m128i gws = _mm_add_epi16(gwt, cr1); | ||
3626 | |||
3627 | // descale | ||
3628 | __m128i rw = _mm_srai_epi16(rws, 4); | ||
3629 | __m128i bw = _mm_srai_epi16(bws, 4); | ||
3630 | __m128i gw = _mm_srai_epi16(gws, 4); | ||
3631 | |||
3632 | // back to byte, set up for transpose | ||
3633 | __m128i brb = _mm_packus_epi16(rw, bw); | ||
3634 | __m128i gxb = _mm_packus_epi16(gw, xw); | ||
3635 | |||
3636 | // transpose to interleave channels | ||
3637 | __m128i t0 = _mm_unpacklo_epi8(brb, gxb); | ||
3638 | __m128i t1 = _mm_unpackhi_epi8(brb, gxb); | ||
3639 | __m128i o0 = _mm_unpacklo_epi16(t0, t1); | ||
3640 | __m128i o1 = _mm_unpackhi_epi16(t0, t1); | ||
3641 | |||
3642 | // store | ||
3643 | _mm_storeu_si128((__m128i *) (out + 0), o0); | ||
3644 | _mm_storeu_si128((__m128i *) (out + 16), o1); | ||
3645 | out += 32; | ||
3646 | } | ||
3647 | } | ||
3648 | #endif | ||
3649 | |||
3650 | #ifdef STBI_NEON | ||
3651 | // in this version, step=3 support would be easy to add. but is there demand? | ||
3652 | if (step == 4) { | ||
3653 | // this is a fairly straightforward implementation and not super-optimized. | ||
3654 | uint8x8_t signflip = vdup_n_u8(0x80); | ||
3655 | int16x8_t cr_const0 = vdupq_n_s16( (short) ( 1.40200f*4096.0f+0.5f)); | ||
3656 | int16x8_t cr_const1 = vdupq_n_s16( - (short) ( 0.71414f*4096.0f+0.5f)); | ||
3657 | int16x8_t cb_const0 = vdupq_n_s16( - (short) ( 0.34414f*4096.0f+0.5f)); | ||
3658 | int16x8_t cb_const1 = vdupq_n_s16( (short) ( 1.77200f*4096.0f+0.5f)); | ||
3659 | |||
3660 | for (; i+7 < count; i += 8) { | ||
3661 | // load | ||
3662 | uint8x8_t y_bytes = vld1_u8(y + i); | ||
3663 | uint8x8_t cr_bytes = vld1_u8(pcr + i); | ||
3664 | uint8x8_t cb_bytes = vld1_u8(pcb + i); | ||
3665 | int8x8_t cr_biased = vreinterpret_s8_u8(vsub_u8(cr_bytes, signflip)); | ||
3666 | int8x8_t cb_biased = vreinterpret_s8_u8(vsub_u8(cb_bytes, signflip)); | ||
3667 | |||
3668 | // expand to s16 | ||
3669 | int16x8_t yws = vreinterpretq_s16_u16(vshll_n_u8(y_bytes, 4)); | ||
3670 | int16x8_t crw = vshll_n_s8(cr_biased, 7); | ||
3671 | int16x8_t cbw = vshll_n_s8(cb_biased, 7); | ||
3672 | |||
3673 | // color transform | ||
3674 | int16x8_t cr0 = vqdmulhq_s16(crw, cr_const0); | ||
3675 | int16x8_t cb0 = vqdmulhq_s16(cbw, cb_const0); | ||
3676 | int16x8_t cr1 = vqdmulhq_s16(crw, cr_const1); | ||
3677 | int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1); | ||
3678 | int16x8_t rws = vaddq_s16(yws, cr0); | ||
3679 | int16x8_t gws = vaddq_s16(vaddq_s16(yws, cb0), cr1); | ||
3680 | int16x8_t bws = vaddq_s16(yws, cb1); | ||
3681 | |||
3682 | // undo scaling, round, convert to byte | ||
3683 | uint8x8x4_t o; | ||
3684 | o.val[0] = vqrshrun_n_s16(rws, 4); | ||
3685 | o.val[1] = vqrshrun_n_s16(gws, 4); | ||
3686 | o.val[2] = vqrshrun_n_s16(bws, 4); | ||
3687 | o.val[3] = vdup_n_u8(255); | ||
3688 | |||
3689 | // store, interleaving r/g/b/a | ||
3690 | vst4_u8(out, o); | ||
3691 | out += 8*4; | ||
3692 | } | ||
3693 | } | ||
3694 | #endif | ||
3695 | |||
3696 | for (; i < count; ++i) { | ||
3697 | int y_fixed = (y[i] << 20) + (1<<19); // rounding | ||
3698 | int r,g,b; | ||
3699 | int cr = pcr[i] - 128; | ||
3700 | int cb = pcb[i] - 128; | ||
3701 | r = y_fixed + cr* stbi__float2fixed(1.40200f); | ||
3702 | g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); | ||
3703 | b = y_fixed + cb* stbi__float2fixed(1.77200f); | ||
3704 | r >>= 20; | ||
3705 | g >>= 20; | ||
3706 | b >>= 20; | ||
3707 | if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } | ||
3708 | if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } | ||
3709 | if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } | ||
3710 | out[0] = (stbi_uc)r; | ||
3711 | out[1] = (stbi_uc)g; | ||
3712 | out[2] = (stbi_uc)b; | ||
3713 | out[3] = 255; | ||
3714 | out += step; | ||
3715 | } | ||
3716 | } | ||
3717 | #endif | ||
3718 | |||
3719 | // set up the kernels | ||
3720 | static void stbi__setup_jpeg(stbi__jpeg *j) | ||
3721 | { | ||
3722 | j->idct_block_kernel = stbi__idct_block; | ||
3723 | j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_row; | ||
3724 | j->resample_row_hv_2_kernel = stbi__resample_row_hv_2; | ||
3725 | |||
3726 | #ifdef STBI_SSE2 | ||
3727 | if (stbi__sse2_available()) { | ||
3728 | j->idct_block_kernel = stbi__idct_simd; | ||
3729 | j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; | ||
3730 | j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; | ||
3731 | } | ||
3732 | #endif | ||
3733 | |||
3734 | #ifdef STBI_NEON | ||
3735 | j->idct_block_kernel = stbi__idct_simd; | ||
3736 | j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; | ||
3737 | j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; | ||
3738 | #endif | ||
3739 | } | ||
3740 | |||
3741 | // clean up the temporary component buffers | ||
3742 | static void stbi__cleanup_jpeg(stbi__jpeg *j) | ||
3743 | { | ||
3744 | stbi__free_jpeg_components(j, j->s->img_n, 0); | ||
3745 | } | ||
3746 | |||
3747 | typedef struct | ||
3748 | { | ||
3749 | resample_row_func resample; | ||
3750 | stbi_uc *line0,*line1; | ||
3751 | int hs,vs; // expansion factor in each axis | ||
3752 | int w_lores; // horizontal pixels pre-expansion | ||
3753 | int ystep; // how far through vertical expansion we are | ||
3754 | int ypos; // which pre-expansion row we're on | ||
3755 | } stbi__resample; | ||
3756 | |||
3757 | // fast 0..255 * 0..255 => 0..255 rounded multiplication | ||
3758 | static stbi_uc stbi__blinn_8x8(stbi_uc x, stbi_uc y) | ||
3759 | { | ||
3760 | unsigned int t = x*y + 128; | ||
3761 | return (stbi_uc) ((t + (t >>8)) >> 8); | ||
3762 | } | ||
3763 | |||
3764 | static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp, int req_comp) | ||
3765 | { | ||
3766 | int n, decode_n, is_rgb; | ||
3767 | z->s->img_n = 0; // make stbi__cleanup_jpeg safe | ||
3768 | |||
3769 | // validate req_comp | ||
3770 | if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); | ||
3771 | |||
3772 | // load a jpeg image from whichever source, but leave in YCbCr format | ||
3773 | if (!stbi__decode_jpeg_image(z)) { stbi__cleanup_jpeg(z); return NULL; } | ||
3774 | |||
3775 | // determine actual number of components to generate | ||
3776 | n = req_comp ? req_comp : z->s->img_n >= 3 ? 3 : 1; | ||
3777 | |||
3778 | is_rgb = z->s->img_n == 3 && (z->rgb == 3 || (z->app14_color_transform == 0 && !z->jfif)); | ||
3779 | |||
3780 | if (z->s->img_n == 3 && n < 3 && !is_rgb) | ||
3781 | decode_n = 1; | ||
3782 | else | ||
3783 | decode_n = z->s->img_n; | ||
3784 | |||
3785 | // resample and color-convert | ||
3786 | { | ||
3787 | int k; | ||
3788 | unsigned int i,j; | ||
3789 | stbi_uc *output; | ||
3790 | stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL }; | ||
3791 | |||
3792 | stbi__resample res_comp[4]; | ||
3793 | |||
3794 | for (k=0; k < decode_n; ++k) { | ||
3795 | stbi__resample *r = &res_comp[k]; | ||
3796 | |||
3797 | // allocate line buffer big enough for upsampling off the edges | ||
3798 | // with upsample factor of 4 | ||
3799 | z->img_comp[k].linebuf = (stbi_uc *) stbi__malloc(z->s->img_x + 3); | ||
3800 | if (!z->img_comp[k].linebuf) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } | ||
3801 | |||
3802 | r->hs = z->img_h_max / z->img_comp[k].h; | ||
3803 | r->vs = z->img_v_max / z->img_comp[k].v; | ||
3804 | r->ystep = r->vs >> 1; | ||
3805 | r->w_lores = (z->s->img_x + r->hs-1) / r->hs; | ||
3806 | r->ypos = 0; | ||
3807 | r->line0 = r->line1 = z->img_comp[k].data; | ||
3808 | |||
3809 | if (r->hs == 1 && r->vs == 1) r->resample = resample_row_1; | ||
3810 | else if (r->hs == 1 && r->vs == 2) r->resample = stbi__resample_row_v_2; | ||
3811 | else if (r->hs == 2 && r->vs == 1) r->resample = stbi__resample_row_h_2; | ||
3812 | else if (r->hs == 2 && r->vs == 2) r->resample = z->resample_row_hv_2_kernel; | ||
3813 | else r->resample = stbi__resample_row_generic; | ||
3814 | } | ||
3815 | |||
3816 | // can't error after this so, this is safe | ||
3817 | output = (stbi_uc *) stbi__malloc_mad3(n, z->s->img_x, z->s->img_y, 1); | ||
3818 | if (!output) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } | ||
3819 | |||
3820 | // now go ahead and resample | ||
3821 | for (j=0; j < z->s->img_y; ++j) { | ||
3822 | stbi_uc *out = output + n * z->s->img_x * j; | ||
3823 | for (k=0; k < decode_n; ++k) { | ||
3824 | stbi__resample *r = &res_comp[k]; | ||
3825 | int y_bot = r->ystep >= (r->vs >> 1); | ||
3826 | coutput[k] = r->resample(z->img_comp[k].linebuf, | ||
3827 | y_bot ? r->line1 : r->line0, | ||
3828 | y_bot ? r->line0 : r->line1, | ||
3829 | r->w_lores, r->hs); | ||
3830 | if (++r->ystep >= r->vs) { | ||
3831 | r->ystep = 0; | ||
3832 | r->line0 = r->line1; | ||
3833 | if (++r->ypos < z->img_comp[k].y) | ||
3834 | r->line1 += z->img_comp[k].w2; | ||
3835 | } | ||
3836 | } | ||
3837 | if (n >= 3) { | ||
3838 | stbi_uc *y = coutput[0]; | ||
3839 | if (z->s->img_n == 3) { | ||
3840 | if (is_rgb) { | ||
3841 | for (i=0; i < z->s->img_x; ++i) { | ||
3842 | out[0] = y[i]; | ||
3843 | out[1] = coutput[1][i]; | ||
3844 | out[2] = coutput[2][i]; | ||
3845 | out[3] = 255; | ||
3846 | out += n; | ||
3847 | } | ||
3848 | } else { | ||
3849 | z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); | ||
3850 | } | ||
3851 | } else if (z->s->img_n == 4) { | ||
3852 | if (z->app14_color_transform == 0) { // CMYK | ||
3853 | for (i=0; i < z->s->img_x; ++i) { | ||
3854 | stbi_uc m = coutput[3][i]; | ||
3855 | out[0] = stbi__blinn_8x8(coutput[0][i], m); | ||
3856 | out[1] = stbi__blinn_8x8(coutput[1][i], m); | ||
3857 | out[2] = stbi__blinn_8x8(coutput[2][i], m); | ||
3858 | out[3] = 255; | ||
3859 | out += n; | ||
3860 | } | ||
3861 | } else if (z->app14_color_transform == 2) { // YCCK | ||
3862 | z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); | ||
3863 | for (i=0; i < z->s->img_x; ++i) { | ||
3864 | stbi_uc m = coutput[3][i]; | ||
3865 | out[0] = stbi__blinn_8x8(255 - out[0], m); | ||
3866 | out[1] = stbi__blinn_8x8(255 - out[1], m); | ||
3867 | out[2] = stbi__blinn_8x8(255 - out[2], m); | ||
3868 | out += n; | ||
3869 | } | ||
3870 | } else { // YCbCr + alpha? Ignore the fourth channel for now | ||
3871 | z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); | ||
3872 | } | ||
3873 | } else | ||
3874 | for (i=0; i < z->s->img_x; ++i) { | ||
3875 | out[0] = out[1] = out[2] = y[i]; | ||
3876 | out[3] = 255; // not used if n==3 | ||
3877 | out += n; | ||
3878 | } | ||
3879 | } else { | ||
3880 | if (is_rgb) { | ||
3881 | if (n == 1) | ||
3882 | for (i=0; i < z->s->img_x; ++i) | ||
3883 | *out++ = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); | ||
3884 | else { | ||
3885 | for (i=0; i < z->s->img_x; ++i, out += 2) { | ||
3886 | out[0] = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); | ||
3887 | out[1] = 255; | ||
3888 | } | ||
3889 | } | ||
3890 | } else if (z->s->img_n == 4 && z->app14_color_transform == 0) { | ||
3891 | for (i=0; i < z->s->img_x; ++i) { | ||
3892 | stbi_uc m = coutput[3][i]; | ||
3893 | stbi_uc r = stbi__blinn_8x8(coutput[0][i], m); | ||
3894 | stbi_uc g = stbi__blinn_8x8(coutput[1][i], m); | ||
3895 | stbi_uc b = stbi__blinn_8x8(coutput[2][i], m); | ||
3896 | out[0] = stbi__compute_y(r, g, b); | ||
3897 | out[1] = 255; | ||
3898 | out += n; | ||
3899 | } | ||
3900 | } else if (z->s->img_n == 4 && z->app14_color_transform == 2) { | ||
3901 | for (i=0; i < z->s->img_x; ++i) { | ||
3902 | out[0] = stbi__blinn_8x8(255 - coutput[0][i], coutput[3][i]); | ||
3903 | out[1] = 255; | ||
3904 | out += n; | ||
3905 | } | ||
3906 | } else { | ||
3907 | stbi_uc *y = coutput[0]; | ||
3908 | if (n == 1) | ||
3909 | for (i=0; i < z->s->img_x; ++i) out[i] = y[i]; | ||
3910 | else | ||
3911 | for (i=0; i < z->s->img_x; ++i) { *out++ = y[i]; *out++ = 255; } | ||
3912 | } | ||
3913 | } | ||
3914 | } | ||
3915 | stbi__cleanup_jpeg(z); | ||
3916 | *out_x = z->s->img_x; | ||
3917 | *out_y = z->s->img_y; | ||
3918 | if (comp) *comp = z->s->img_n >= 3 ? 3 : 1; // report original components, not output | ||
3919 | return output; | ||
3920 | } | ||
3921 | } | ||
3922 | |||
3923 | static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
3924 | { | ||
3925 | unsigned char* result; | ||
3926 | stbi__jpeg* j = (stbi__jpeg*) stbi__malloc(sizeof(stbi__jpeg)); | ||
3927 | STBI_NOTUSED(ri); | ||
3928 | j->s = s; | ||
3929 | stbi__setup_jpeg(j); | ||
3930 | result = load_jpeg_image(j, x,y,comp,req_comp); | ||
3931 | STBI_FREE(j); | ||
3932 | return result; | ||
3933 | } | ||
3934 | |||
3935 | static int stbi__jpeg_test(stbi__context *s) | ||
3936 | { | ||
3937 | int r; | ||
3938 | stbi__jpeg* j = (stbi__jpeg*)stbi__malloc(sizeof(stbi__jpeg)); | ||
3939 | j->s = s; | ||
3940 | stbi__setup_jpeg(j); | ||
3941 | r = stbi__decode_jpeg_header(j, STBI__SCAN_type); | ||
3942 | stbi__rewind(s); | ||
3943 | STBI_FREE(j); | ||
3944 | return r; | ||
3945 | } | ||
3946 | |||
3947 | static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp) | ||
3948 | { | ||
3949 | if (!stbi__decode_jpeg_header(j, STBI__SCAN_header)) { | ||
3950 | stbi__rewind( j->s ); | ||
3951 | return 0; | ||
3952 | } | ||
3953 | if (x) *x = j->s->img_x; | ||
3954 | if (y) *y = j->s->img_y; | ||
3955 | if (comp) *comp = j->s->img_n >= 3 ? 3 : 1; | ||
3956 | return 1; | ||
3957 | } | ||
3958 | |||
3959 | static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp) | ||
3960 | { | ||
3961 | int result; | ||
3962 | stbi__jpeg* j = (stbi__jpeg*) (stbi__malloc(sizeof(stbi__jpeg))); | ||
3963 | j->s = s; | ||
3964 | result = stbi__jpeg_info_raw(j, x, y, comp); | ||
3965 | STBI_FREE(j); | ||
3966 | return result; | ||
3967 | } | ||
3968 | #endif | ||
3969 | |||
3970 | // public domain zlib decode v0.2 Sean Barrett 2006-11-18 | ||
3971 | // simple implementation | ||
3972 | // - all input must be provided in an upfront buffer | ||
3973 | // - all output is written to a single output buffer (can malloc/realloc) | ||
3974 | // performance | ||
3975 | // - fast huffman | ||
3976 | |||
3977 | #ifndef STBI_NO_ZLIB | ||
3978 | |||
3979 | // fast-way is faster to check than jpeg huffman, but slow way is slower | ||
3980 | #define STBI__ZFAST_BITS 9 // accelerate all cases in default tables | ||
3981 | #define STBI__ZFAST_MASK ((1 << STBI__ZFAST_BITS) - 1) | ||
3982 | |||
3983 | // zlib-style huffman encoding | ||
3984 | // (jpegs packs from left, zlib from right, so can't share code) | ||
3985 | typedef struct | ||
3986 | { | ||
3987 | stbi__uint16 fast[1 << STBI__ZFAST_BITS]; | ||
3988 | stbi__uint16 firstcode[16]; | ||
3989 | int maxcode[17]; | ||
3990 | stbi__uint16 firstsymbol[16]; | ||
3991 | stbi_uc size[288]; | ||
3992 | stbi__uint16 value[288]; | ||
3993 | } stbi__zhuffman; | ||
3994 | |||
3995 | stbi_inline static int stbi__bitreverse16(int n) | ||
3996 | { | ||
3997 | n = ((n & 0xAAAA) >> 1) | ((n & 0x5555) << 1); | ||
3998 | n = ((n & 0xCCCC) >> 2) | ((n & 0x3333) << 2); | ||
3999 | n = ((n & 0xF0F0) >> 4) | ((n & 0x0F0F) << 4); | ||
4000 | n = ((n & 0xFF00) >> 8) | ((n & 0x00FF) << 8); | ||
4001 | return n; | ||
4002 | } | ||
4003 | |||
4004 | stbi_inline static int stbi__bit_reverse(int v, int bits) | ||
4005 | { | ||
4006 | STBI_ASSERT(bits <= 16); | ||
4007 | // to bit reverse n bits, reverse 16 and shift | ||
4008 | // e.g. 11 bits, bit reverse and shift away 5 | ||
4009 | return stbi__bitreverse16(v) >> (16-bits); | ||
4010 | } | ||
4011 | |||
4012 | static int stbi__zbuild_huffman(stbi__zhuffman *z, const stbi_uc *sizelist, int num) | ||
4013 | { | ||
4014 | int i,k=0; | ||
4015 | int code, next_code[16], sizes[17]; | ||
4016 | |||
4017 | // DEFLATE spec for generating codes | ||
4018 | memset(sizes, 0, sizeof(sizes)); | ||
4019 | memset(z->fast, 0, sizeof(z->fast)); | ||
4020 | for (i=0; i < num; ++i) | ||
4021 | ++sizes[sizelist[i]]; | ||
4022 | sizes[0] = 0; | ||
4023 | for (i=1; i < 16; ++i) | ||
4024 | if (sizes[i] > (1 << i)) | ||
4025 | return stbi__err("bad sizes", "Corrupt PNG"); | ||
4026 | code = 0; | ||
4027 | for (i=1; i < 16; ++i) { | ||
4028 | next_code[i] = code; | ||
4029 | z->firstcode[i] = (stbi__uint16) code; | ||
4030 | z->firstsymbol[i] = (stbi__uint16) k; | ||
4031 | code = (code + sizes[i]); | ||
4032 | if (sizes[i]) | ||
4033 | if (code-1 >= (1 << i)) return stbi__err("bad codelengths","Corrupt PNG"); | ||
4034 | z->maxcode[i] = code << (16-i); // preshift for inner loop | ||
4035 | code <<= 1; | ||
4036 | k += sizes[i]; | ||
4037 | } | ||
4038 | z->maxcode[16] = 0x10000; // sentinel | ||
4039 | for (i=0; i < num; ++i) { | ||
4040 | int s = sizelist[i]; | ||
4041 | if (s) { | ||
4042 | int c = next_code[s] - z->firstcode[s] + z->firstsymbol[s]; | ||
4043 | stbi__uint16 fastv = (stbi__uint16) ((s << 9) | i); | ||
4044 | z->size [c] = (stbi_uc ) s; | ||
4045 | z->value[c] = (stbi__uint16) i; | ||
4046 | if (s <= STBI__ZFAST_BITS) { | ||
4047 | int j = stbi__bit_reverse(next_code[s],s); | ||
4048 | while (j < (1 << STBI__ZFAST_BITS)) { | ||
4049 | z->fast[j] = fastv; | ||
4050 | j += (1 << s); | ||
4051 | } | ||
4052 | } | ||
4053 | ++next_code[s]; | ||
4054 | } | ||
4055 | } | ||
4056 | return 1; | ||
4057 | } | ||
4058 | |||
4059 | // zlib-from-memory implementation for PNG reading | ||
4060 | // because PNG allows splitting the zlib stream arbitrarily, | ||
4061 | // and it's annoying structurally to have PNG call ZLIB call PNG, | ||
4062 | // we require PNG read all the IDATs and combine them into a single | ||
4063 | // memory buffer | ||
4064 | |||
4065 | typedef struct | ||
4066 | { | ||
4067 | stbi_uc *zbuffer, *zbuffer_end; | ||
4068 | int num_bits; | ||
4069 | stbi__uint32 code_buffer; | ||
4070 | |||
4071 | char *zout; | ||
4072 | char *zout_start; | ||
4073 | char *zout_end; | ||
4074 | int z_expandable; | ||
4075 | |||
4076 | stbi__zhuffman z_length, z_distance; | ||
4077 | } stbi__zbuf; | ||
4078 | |||
4079 | stbi_inline static int stbi__zeof(stbi__zbuf *z) | ||
4080 | { | ||
4081 | return (z->zbuffer >= z->zbuffer_end); | ||
4082 | } | ||
4083 | |||
4084 | stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z) | ||
4085 | { | ||
4086 | return stbi__zeof(z) ? 0 : *z->zbuffer++; | ||
4087 | } | ||
4088 | |||
4089 | static void stbi__fill_bits(stbi__zbuf *z) | ||
4090 | { | ||
4091 | do { | ||
4092 | if (z->code_buffer >= (1U << z->num_bits)) { | ||
4093 | z->zbuffer = z->zbuffer_end; /* treat this as EOF so we fail. */ | ||
4094 | return; | ||
4095 | } | ||
4096 | z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits; | ||
4097 | z->num_bits += 8; | ||
4098 | } while (z->num_bits <= 24); | ||
4099 | } | ||
4100 | |||
4101 | stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n) | ||
4102 | { | ||
4103 | unsigned int k; | ||
4104 | if (z->num_bits < n) stbi__fill_bits(z); | ||
4105 | k = z->code_buffer & ((1 << n) - 1); | ||
4106 | z->code_buffer >>= n; | ||
4107 | z->num_bits -= n; | ||
4108 | return k; | ||
4109 | } | ||
4110 | |||
4111 | static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) | ||
4112 | { | ||
4113 | int b,s,k; | ||
4114 | // not resolved by fast table, so compute it the slow way | ||
4115 | // use jpeg approach, which requires MSbits at top | ||
4116 | k = stbi__bit_reverse(a->code_buffer, 16); | ||
4117 | for (s=STBI__ZFAST_BITS+1; ; ++s) | ||
4118 | if (k < z->maxcode[s]) | ||
4119 | break; | ||
4120 | if (s >= 16) return -1; // invalid code! | ||
4121 | // code size is s, so: | ||
4122 | b = (k >> (16-s)) - z->firstcode[s] + z->firstsymbol[s]; | ||
4123 | if (b >= (int) sizeof (z->size)) return -1; // some data was corrupt somewhere! | ||
4124 | if (z->size[b] != s) return -1; // was originally an assert, but report failure instead. | ||
4125 | a->code_buffer >>= s; | ||
4126 | a->num_bits -= s; | ||
4127 | return z->value[b]; | ||
4128 | } | ||
4129 | |||
4130 | stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z) | ||
4131 | { | ||
4132 | int b,s; | ||
4133 | if (a->num_bits < 16) { | ||
4134 | if (stbi__zeof(a)) { | ||
4135 | return -1; /* report error for unexpected end of data. */ | ||
4136 | } | ||
4137 | stbi__fill_bits(a); | ||
4138 | } | ||
4139 | b = z->fast[a->code_buffer & STBI__ZFAST_MASK]; | ||
4140 | if (b) { | ||
4141 | s = b >> 9; | ||
4142 | a->code_buffer >>= s; | ||
4143 | a->num_bits -= s; | ||
4144 | return b & 511; | ||
4145 | } | ||
4146 | return stbi__zhuffman_decode_slowpath(a, z); | ||
4147 | } | ||
4148 | |||
4149 | static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to make room for n bytes | ||
4150 | { | ||
4151 | char *q; | ||
4152 | unsigned int cur, limit, old_limit; | ||
4153 | z->zout = zout; | ||
4154 | if (!z->z_expandable) return stbi__err("output buffer limit","Corrupt PNG"); | ||
4155 | cur = (unsigned int) (z->zout - z->zout_start); | ||
4156 | limit = old_limit = (unsigned) (z->zout_end - z->zout_start); | ||
4157 | if (UINT_MAX - cur < (unsigned) n) return stbi__err("outofmem", "Out of memory"); | ||
4158 | while (cur + n > limit) { | ||
4159 | if(limit > UINT_MAX / 2) return stbi__err("outofmem", "Out of memory"); | ||
4160 | limit *= 2; | ||
4161 | } | ||
4162 | q = (char *) STBI_REALLOC_SIZED(z->zout_start, old_limit, limit); | ||
4163 | STBI_NOTUSED(old_limit); | ||
4164 | if (q == NULL) return stbi__err("outofmem", "Out of memory"); | ||
4165 | z->zout_start = q; | ||
4166 | z->zout = q + cur; | ||
4167 | z->zout_end = q + limit; | ||
4168 | return 1; | ||
4169 | } | ||
4170 | |||
4171 | static const int stbi__zlength_base[31] = { | ||
4172 | 3,4,5,6,7,8,9,10,11,13, | ||
4173 | 15,17,19,23,27,31,35,43,51,59, | ||
4174 | 67,83,99,115,131,163,195,227,258,0,0 }; | ||
4175 | |||
4176 | static const int stbi__zlength_extra[31]= | ||
4177 | { 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 }; | ||
4178 | |||
4179 | static const int stbi__zdist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193, | ||
4180 | 257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0}; | ||
4181 | |||
4182 | static const int stbi__zdist_extra[32] = | ||
4183 | { 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13}; | ||
4184 | |||
4185 | static int stbi__parse_huffman_block(stbi__zbuf *a) | ||
4186 | { | ||
4187 | char *zout = a->zout; | ||
4188 | for(;;) { | ||
4189 | int z = stbi__zhuffman_decode(a, &a->z_length); | ||
4190 | if (z < 256) { | ||
4191 | if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); // error in huffman codes | ||
4192 | if (zout >= a->zout_end) { | ||
4193 | if (!stbi__zexpand(a, zout, 1)) return 0; | ||
4194 | zout = a->zout; | ||
4195 | } | ||
4196 | *zout++ = (char) z; | ||
4197 | } else { | ||
4198 | stbi_uc *p; | ||
4199 | int len,dist; | ||
4200 | if (z == 256) { | ||
4201 | a->zout = zout; | ||
4202 | return 1; | ||
4203 | } | ||
4204 | z -= 257; | ||
4205 | len = stbi__zlength_base[z]; | ||
4206 | if (stbi__zlength_extra[z]) len += stbi__zreceive(a, stbi__zlength_extra[z]); | ||
4207 | z = stbi__zhuffman_decode(a, &a->z_distance); | ||
4208 | if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); | ||
4209 | dist = stbi__zdist_base[z]; | ||
4210 | if (stbi__zdist_extra[z]) dist += stbi__zreceive(a, stbi__zdist_extra[z]); | ||
4211 | if (zout - a->zout_start < dist) return stbi__err("bad dist","Corrupt PNG"); | ||
4212 | if (zout + len > a->zout_end) { | ||
4213 | if (!stbi__zexpand(a, zout, len)) return 0; | ||
4214 | zout = a->zout; | ||
4215 | } | ||
4216 | p = (stbi_uc *) (zout - dist); | ||
4217 | if (dist == 1) { // run of one byte; common in images. | ||
4218 | stbi_uc v = *p; | ||
4219 | if (len) { do *zout++ = v; while (--len); } | ||
4220 | } else { | ||
4221 | if (len) { do *zout++ = *p++; while (--len); } | ||
4222 | } | ||
4223 | } | ||
4224 | } | ||
4225 | } | ||
4226 | |||
4227 | static int stbi__compute_huffman_codes(stbi__zbuf *a) | ||
4228 | { | ||
4229 | static const stbi_uc length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 }; | ||
4230 | stbi__zhuffman z_codelength; | ||
4231 | stbi_uc lencodes[286+32+137];//padding for maximum single op | ||
4232 | stbi_uc codelength_sizes[19]; | ||
4233 | int i,n; | ||
4234 | |||
4235 | int hlit = stbi__zreceive(a,5) + 257; | ||
4236 | int hdist = stbi__zreceive(a,5) + 1; | ||
4237 | int hclen = stbi__zreceive(a,4) + 4; | ||
4238 | int ntot = hlit + hdist; | ||
4239 | |||
4240 | memset(codelength_sizes, 0, sizeof(codelength_sizes)); | ||
4241 | for (i=0; i < hclen; ++i) { | ||
4242 | int s = stbi__zreceive(a,3); | ||
4243 | codelength_sizes[length_dezigzag[i]] = (stbi_uc) s; | ||
4244 | } | ||
4245 | if (!stbi__zbuild_huffman(&z_codelength, codelength_sizes, 19)) return 0; | ||
4246 | |||
4247 | n = 0; | ||
4248 | while (n < ntot) { | ||
4249 | int c = stbi__zhuffman_decode(a, &z_codelength); | ||
4250 | if (c < 0 || c >= 19) return stbi__err("bad codelengths", "Corrupt PNG"); | ||
4251 | if (c < 16) | ||
4252 | lencodes[n++] = (stbi_uc) c; | ||
4253 | else { | ||
4254 | stbi_uc fill = 0; | ||
4255 | if (c == 16) { | ||
4256 | c = stbi__zreceive(a,2)+3; | ||
4257 | if (n == 0) return stbi__err("bad codelengths", "Corrupt PNG"); | ||
4258 | fill = lencodes[n-1]; | ||
4259 | } else if (c == 17) { | ||
4260 | c = stbi__zreceive(a,3)+3; | ||
4261 | } else if (c == 18) { | ||
4262 | c = stbi__zreceive(a,7)+11; | ||
4263 | } else { | ||
4264 | return stbi__err("bad codelengths", "Corrupt PNG"); | ||
4265 | } | ||
4266 | if (ntot - n < c) return stbi__err("bad codelengths", "Corrupt PNG"); | ||
4267 | memset(lencodes+n, fill, c); | ||
4268 | n += c; | ||
4269 | } | ||
4270 | } | ||
4271 | if (n != ntot) return stbi__err("bad codelengths","Corrupt PNG"); | ||
4272 | if (!stbi__zbuild_huffman(&a->z_length, lencodes, hlit)) return 0; | ||
4273 | if (!stbi__zbuild_huffman(&a->z_distance, lencodes+hlit, hdist)) return 0; | ||
4274 | return 1; | ||
4275 | } | ||
4276 | |||
4277 | static int stbi__parse_uncompressed_block(stbi__zbuf *a) | ||
4278 | { | ||
4279 | stbi_uc header[4]; | ||
4280 | int len,nlen,k; | ||
4281 | if (a->num_bits & 7) | ||
4282 | stbi__zreceive(a, a->num_bits & 7); // discard | ||
4283 | // drain the bit-packed data into header | ||
4284 | k = 0; | ||
4285 | while (a->num_bits > 0) { | ||
4286 | header[k++] = (stbi_uc) (a->code_buffer & 255); // suppress MSVC run-time check | ||
4287 | a->code_buffer >>= 8; | ||
4288 | a->num_bits -= 8; | ||
4289 | } | ||
4290 | if (a->num_bits < 0) return stbi__err("zlib corrupt","Corrupt PNG"); | ||
4291 | // now fill header the normal way | ||
4292 | while (k < 4) | ||
4293 | header[k++] = stbi__zget8(a); | ||
4294 | len = header[1] * 256 + header[0]; | ||
4295 | nlen = header[3] * 256 + header[2]; | ||
4296 | if (nlen != (len ^ 0xffff)) return stbi__err("zlib corrupt","Corrupt PNG"); | ||
4297 | if (a->zbuffer + len > a->zbuffer_end) return stbi__err("read past buffer","Corrupt PNG"); | ||
4298 | if (a->zout + len > a->zout_end) | ||
4299 | if (!stbi__zexpand(a, a->zout, len)) return 0; | ||
4300 | memcpy(a->zout, a->zbuffer, len); | ||
4301 | a->zbuffer += len; | ||
4302 | a->zout += len; | ||
4303 | return 1; | ||
4304 | } | ||
4305 | |||
4306 | static int stbi__parse_zlib_header(stbi__zbuf *a) | ||
4307 | { | ||
4308 | int cmf = stbi__zget8(a); | ||
4309 | int cm = cmf & 15; | ||
4310 | /* int cinfo = cmf >> 4; */ | ||
4311 | int flg = stbi__zget8(a); | ||
4312 | if (stbi__zeof(a)) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec | ||
4313 | if ((cmf*256+flg) % 31 != 0) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec | ||
4314 | if (flg & 32) return stbi__err("no preset dict","Corrupt PNG"); // preset dictionary not allowed in png | ||
4315 | if (cm != 8) return stbi__err("bad compression","Corrupt PNG"); // DEFLATE required for png | ||
4316 | // window = 1 << (8 + cinfo)... but who cares, we fully buffer output | ||
4317 | return 1; | ||
4318 | } | ||
4319 | |||
4320 | static const stbi_uc stbi__zdefault_length[288] = | ||
4321 | { | ||
4322 | 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, | ||
4323 | 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, | ||
4324 | 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, | ||
4325 | 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, | ||
4326 | 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, | ||
4327 | 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, | ||
4328 | 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, | ||
4329 | 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, | ||
4330 | 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8 | ||
4331 | }; | ||
4332 | static const stbi_uc stbi__zdefault_distance[32] = | ||
4333 | { | ||
4334 | 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5 | ||
4335 | }; | ||
4336 | /* | ||
4337 | Init algorithm: | ||
4338 | { | ||
4339 | int i; // use <= to match clearly with spec | ||
4340 | for (i=0; i <= 143; ++i) stbi__zdefault_length[i] = 8; | ||
4341 | for ( ; i <= 255; ++i) stbi__zdefault_length[i] = 9; | ||
4342 | for ( ; i <= 279; ++i) stbi__zdefault_length[i] = 7; | ||
4343 | for ( ; i <= 287; ++i) stbi__zdefault_length[i] = 8; | ||
4344 | |||
4345 | for (i=0; i <= 31; ++i) stbi__zdefault_distance[i] = 5; | ||
4346 | } | ||
4347 | */ | ||
4348 | |||
4349 | static int stbi__parse_zlib(stbi__zbuf *a, int parse_header) | ||
4350 | { | ||
4351 | int final, type; | ||
4352 | if (parse_header) | ||
4353 | if (!stbi__parse_zlib_header(a)) return 0; | ||
4354 | a->num_bits = 0; | ||
4355 | a->code_buffer = 0; | ||
4356 | do { | ||
4357 | final = stbi__zreceive(a,1); | ||
4358 | type = stbi__zreceive(a,2); | ||
4359 | if (type == 0) { | ||
4360 | if (!stbi__parse_uncompressed_block(a)) return 0; | ||
4361 | } else if (type == 3) { | ||
4362 | return 0; | ||
4363 | } else { | ||
4364 | if (type == 1) { | ||
4365 | // use fixed code lengths | ||
4366 | if (!stbi__zbuild_huffman(&a->z_length , stbi__zdefault_length , 288)) return 0; | ||
4367 | if (!stbi__zbuild_huffman(&a->z_distance, stbi__zdefault_distance, 32)) return 0; | ||
4368 | } else { | ||
4369 | if (!stbi__compute_huffman_codes(a)) return 0; | ||
4370 | } | ||
4371 | if (!stbi__parse_huffman_block(a)) return 0; | ||
4372 | } | ||
4373 | } while (!final); | ||
4374 | return 1; | ||
4375 | } | ||
4376 | |||
4377 | static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header) | ||
4378 | { | ||
4379 | a->zout_start = obuf; | ||
4380 | a->zout = obuf; | ||
4381 | a->zout_end = obuf + olen; | ||
4382 | a->z_expandable = exp; | ||
4383 | |||
4384 | return stbi__parse_zlib(a, parse_header); | ||
4385 | } | ||
4386 | |||
4387 | STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen) | ||
4388 | { | ||
4389 | stbi__zbuf a; | ||
4390 | char *p = (char *) stbi__malloc(initial_size); | ||
4391 | if (p == NULL) return NULL; | ||
4392 | a.zbuffer = (stbi_uc *) buffer; | ||
4393 | a.zbuffer_end = (stbi_uc *) buffer + len; | ||
4394 | if (stbi__do_zlib(&a, p, initial_size, 1, 1)) { | ||
4395 | if (outlen) *outlen = (int) (a.zout - a.zout_start); | ||
4396 | return a.zout_start; | ||
4397 | } else { | ||
4398 | STBI_FREE(a.zout_start); | ||
4399 | return NULL; | ||
4400 | } | ||
4401 | } | ||
4402 | |||
4403 | STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen) | ||
4404 | { | ||
4405 | return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen); | ||
4406 | } | ||
4407 | |||
4408 | STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header) | ||
4409 | { | ||
4410 | stbi__zbuf a; | ||
4411 | char *p = (char *) stbi__malloc(initial_size); | ||
4412 | if (p == NULL) return NULL; | ||
4413 | a.zbuffer = (stbi_uc *) buffer; | ||
4414 | a.zbuffer_end = (stbi_uc *) buffer + len; | ||
4415 | if (stbi__do_zlib(&a, p, initial_size, 1, parse_header)) { | ||
4416 | if (outlen) *outlen = (int) (a.zout - a.zout_start); | ||
4417 | return a.zout_start; | ||
4418 | } else { | ||
4419 | STBI_FREE(a.zout_start); | ||
4420 | return NULL; | ||
4421 | } | ||
4422 | } | ||
4423 | |||
4424 | STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const *ibuffer, int ilen) | ||
4425 | { | ||
4426 | stbi__zbuf a; | ||
4427 | a.zbuffer = (stbi_uc *) ibuffer; | ||
4428 | a.zbuffer_end = (stbi_uc *) ibuffer + ilen; | ||
4429 | if (stbi__do_zlib(&a, obuffer, olen, 0, 1)) | ||
4430 | return (int) (a.zout - a.zout_start); | ||
4431 | else | ||
4432 | return -1; | ||
4433 | } | ||
4434 | |||
4435 | STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen) | ||
4436 | { | ||
4437 | stbi__zbuf a; | ||
4438 | char *p = (char *) stbi__malloc(16384); | ||
4439 | if (p == NULL) return NULL; | ||
4440 | a.zbuffer = (stbi_uc *) buffer; | ||
4441 | a.zbuffer_end = (stbi_uc *) buffer+len; | ||
4442 | if (stbi__do_zlib(&a, p, 16384, 1, 0)) { | ||
4443 | if (outlen) *outlen = (int) (a.zout - a.zout_start); | ||
4444 | return a.zout_start; | ||
4445 | } else { | ||
4446 | STBI_FREE(a.zout_start); | ||
4447 | return NULL; | ||
4448 | } | ||
4449 | } | ||
4450 | |||
4451 | STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen) | ||
4452 | { | ||
4453 | stbi__zbuf a; | ||
4454 | a.zbuffer = (stbi_uc *) ibuffer; | ||
4455 | a.zbuffer_end = (stbi_uc *) ibuffer + ilen; | ||
4456 | if (stbi__do_zlib(&a, obuffer, olen, 0, 0)) | ||
4457 | return (int) (a.zout - a.zout_start); | ||
4458 | else | ||
4459 | return -1; | ||
4460 | } | ||
4461 | #endif | ||
4462 | |||
4463 | // public domain "baseline" PNG decoder v0.10 Sean Barrett 2006-11-18 | ||
4464 | // simple implementation | ||
4465 | // - only 8-bit samples | ||
4466 | // - no CRC checking | ||
4467 | // - allocates lots of intermediate memory | ||
4468 | // - avoids problem of streaming data between subsystems | ||
4469 | // - avoids explicit window management | ||
4470 | // performance | ||
4471 | // - uses stb_zlib, a PD zlib implementation with fast huffman decoding | ||
4472 | |||
4473 | #ifndef STBI_NO_PNG | ||
4474 | typedef struct | ||
4475 | { | ||
4476 | stbi__uint32 length; | ||
4477 | stbi__uint32 type; | ||
4478 | } stbi__pngchunk; | ||
4479 | |||
4480 | static stbi__pngchunk stbi__get_chunk_header(stbi__context *s) | ||
4481 | { | ||
4482 | stbi__pngchunk c; | ||
4483 | c.length = stbi__get32be(s); | ||
4484 | c.type = stbi__get32be(s); | ||
4485 | return c; | ||
4486 | } | ||
4487 | |||
4488 | static int stbi__check_png_header(stbi__context *s) | ||
4489 | { | ||
4490 | static const stbi_uc png_sig[8] = { 137,80,78,71,13,10,26,10 }; | ||
4491 | int i; | ||
4492 | for (i=0; i < 8; ++i) | ||
4493 | if (stbi__get8(s) != png_sig[i]) return stbi__err("bad png sig","Not a PNG"); | ||
4494 | return 1; | ||
4495 | } | ||
4496 | |||
4497 | typedef struct | ||
4498 | { | ||
4499 | stbi__context *s; | ||
4500 | stbi_uc *idata, *expanded, *out; | ||
4501 | int depth; | ||
4502 | } stbi__png; | ||
4503 | |||
4504 | |||
4505 | enum { | ||
4506 | STBI__F_none=0, | ||
4507 | STBI__F_sub=1, | ||
4508 | STBI__F_up=2, | ||
4509 | STBI__F_avg=3, | ||
4510 | STBI__F_paeth=4, | ||
4511 | // synthetic filters used for first scanline to avoid needing a dummy row of 0s | ||
4512 | STBI__F_avg_first, | ||
4513 | STBI__F_paeth_first | ||
4514 | }; | ||
4515 | |||
4516 | static stbi_uc first_row_filter[5] = | ||
4517 | { | ||
4518 | STBI__F_none, | ||
4519 | STBI__F_sub, | ||
4520 | STBI__F_none, | ||
4521 | STBI__F_avg_first, | ||
4522 | STBI__F_paeth_first | ||
4523 | }; | ||
4524 | |||
4525 | static int stbi__paeth(int a, int b, int c) | ||
4526 | { | ||
4527 | int p = a + b - c; | ||
4528 | int pa = abs(p-a); | ||
4529 | int pb = abs(p-b); | ||
4530 | int pc = abs(p-c); | ||
4531 | if (pa <= pb && pa <= pc) return a; | ||
4532 | if (pb <= pc) return b; | ||
4533 | return c; | ||
4534 | } | ||
4535 | |||
4536 | static const stbi_uc stbi__depth_scale_table[9] = { 0, 0xff, 0x55, 0, 0x11, 0,0,0, 0x01 }; | ||
4537 | |||
4538 | // create the png data from post-deflated data | ||
4539 | static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color) | ||
4540 | { | ||
4541 | int bytes = (depth == 16? 2 : 1); | ||
4542 | stbi__context *s = a->s; | ||
4543 | stbi__uint32 i,j,stride = x*out_n*bytes; | ||
4544 | stbi__uint32 img_len, img_width_bytes; | ||
4545 | int k; | ||
4546 | int img_n = s->img_n; // copy it into a local for later | ||
4547 | |||
4548 | int output_bytes = out_n*bytes; | ||
4549 | int filter_bytes = img_n*bytes; | ||
4550 | int width = x; | ||
4551 | |||
4552 | STBI_ASSERT(out_n == s->img_n || out_n == s->img_n+1); | ||
4553 | a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end into | ||
4554 | if (!a->out) return stbi__err("outofmem", "Out of memory"); | ||
4555 | |||
4556 | if (!stbi__mad3sizes_valid(img_n, x, depth, 7)) return stbi__err("too large", "Corrupt PNG"); | ||
4557 | img_width_bytes = (((img_n * x * depth) + 7) >> 3); | ||
4558 | img_len = (img_width_bytes + 1) * y; | ||
4559 | |||
4560 | // we used to check for exact match between raw_len and img_len on non-interlaced PNGs, | ||
4561 | // but issue #276 reported a PNG in the wild that had extra data at the end (all zeros), | ||
4562 | // so just check for raw_len < img_len always. | ||
4563 | if (raw_len < img_len) return stbi__err("not enough pixels","Corrupt PNG"); | ||
4564 | |||
4565 | for (j=0; j < y; ++j) { | ||
4566 | stbi_uc *cur = a->out + stride*j; | ||
4567 | stbi_uc *prior; | ||
4568 | int filter = *raw++; | ||
4569 | |||
4570 | if (filter > 4) | ||
4571 | return stbi__err("invalid filter","Corrupt PNG"); | ||
4572 | |||
4573 | if (depth < 8) { | ||
4574 | if (img_width_bytes > x) return stbi__err("invalid width","Corrupt PNG"); | ||
4575 | cur += x*out_n - img_width_bytes; // store output to the rightmost img_len bytes, so we can decode in place | ||
4576 | filter_bytes = 1; | ||
4577 | width = img_width_bytes; | ||
4578 | } | ||
4579 | prior = cur - stride; // bugfix: need to compute this after 'cur +=' computation above | ||
4580 | |||
4581 | // if first row, use special filter that doesn't sample previous row | ||
4582 | if (j == 0) filter = first_row_filter[filter]; | ||
4583 | |||
4584 | // handle first byte explicitly | ||
4585 | for (k=0; k < filter_bytes; ++k) { | ||
4586 | switch (filter) { | ||
4587 | case STBI__F_none : cur[k] = raw[k]; break; | ||
4588 | case STBI__F_sub : cur[k] = raw[k]; break; | ||
4589 | case STBI__F_up : cur[k] = STBI__BYTECAST(raw[k] + prior[k]); break; | ||
4590 | case STBI__F_avg : cur[k] = STBI__BYTECAST(raw[k] + (prior[k]>>1)); break; | ||
4591 | case STBI__F_paeth : cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(0,prior[k],0)); break; | ||
4592 | case STBI__F_avg_first : cur[k] = raw[k]; break; | ||
4593 | case STBI__F_paeth_first: cur[k] = raw[k]; break; | ||
4594 | } | ||
4595 | } | ||
4596 | |||
4597 | if (depth == 8) { | ||
4598 | if (img_n != out_n) | ||
4599 | cur[img_n] = 255; // first pixel | ||
4600 | raw += img_n; | ||
4601 | cur += out_n; | ||
4602 | prior += out_n; | ||
4603 | } else if (depth == 16) { | ||
4604 | if (img_n != out_n) { | ||
4605 | cur[filter_bytes] = 255; // first pixel top byte | ||
4606 | cur[filter_bytes+1] = 255; // first pixel bottom byte | ||
4607 | } | ||
4608 | raw += filter_bytes; | ||
4609 | cur += output_bytes; | ||
4610 | prior += output_bytes; | ||
4611 | } else { | ||
4612 | raw += 1; | ||
4613 | cur += 1; | ||
4614 | prior += 1; | ||
4615 | } | ||
4616 | |||
4617 | // this is a little gross, so that we don't switch per-pixel or per-component | ||
4618 | if (depth < 8 || img_n == out_n) { | ||
4619 | int nk = (width - 1)*filter_bytes; | ||
4620 | #define STBI__CASE(f) \ | ||
4621 | case f: \ | ||
4622 | for (k=0; k < nk; ++k) | ||
4623 | switch (filter) { | ||
4624 | // "none" filter turns into a memcpy here; make that explicit. | ||
4625 | case STBI__F_none: memcpy(cur, raw, nk); break; | ||
4626 | STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); } break; | ||
4627 | STBI__CASE(STBI__F_up) { cur[k] = STBI__BYTECAST(raw[k] + prior[k]); } break; | ||
4628 | STBI__CASE(STBI__F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); } break; | ||
4629 | STBI__CASE(STBI__F_paeth) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],prior[k],prior[k-filter_bytes])); } break; | ||
4630 | STBI__CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1)); } break; | ||
4631 | STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes],0,0)); } break; | ||
4632 | } | ||
4633 | #undef STBI__CASE | ||
4634 | raw += nk; | ||
4635 | } else { | ||
4636 | STBI_ASSERT(img_n+1 == out_n); | ||
4637 | #define STBI__CASE(f) \ | ||
4638 | case f: \ | ||
4639 | for (i=x-1; i >= 1; --i, cur[filter_bytes]=255,raw+=filter_bytes,cur+=output_bytes,prior+=output_bytes) \ | ||
4640 | for (k=0; k < filter_bytes; ++k) | ||
4641 | switch (filter) { | ||
4642 | STBI__CASE(STBI__F_none) { cur[k] = raw[k]; } break; | ||
4643 | STBI__CASE(STBI__F_sub) { cur[k] = STBI__BYTECAST(raw[k] + cur[k- output_bytes]); } break; | ||
4644 | STBI__CASE(STBI__F_up) { cur[k] = STBI__BYTECAST(raw[k] + prior[k]); } break; | ||
4645 | STBI__CASE(STBI__F_avg) { cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k- output_bytes])>>1)); } break; | ||
4646 | STBI__CASE(STBI__F_paeth) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],prior[k],prior[k- output_bytes])); } break; | ||
4647 | STBI__CASE(STBI__F_avg_first) { cur[k] = STBI__BYTECAST(raw[k] + (cur[k- output_bytes] >> 1)); } break; | ||
4648 | STBI__CASE(STBI__F_paeth_first) { cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k- output_bytes],0,0)); } break; | ||
4649 | } | ||
4650 | #undef STBI__CASE | ||
4651 | |||
4652 | // the loop above sets the high byte of the pixels' alpha, but for | ||
4653 | // 16 bit png files we also need the low byte set. we'll do that here. | ||
4654 | if (depth == 16) { | ||
4655 | cur = a->out + stride*j; // start at the beginning of the row again | ||
4656 | for (i=0; i < x; ++i,cur+=output_bytes) { | ||
4657 | cur[filter_bytes+1] = 255; | ||
4658 | } | ||
4659 | } | ||
4660 | } | ||
4661 | } | ||
4662 | |||
4663 | // we make a separate pass to expand bits to pixels; for performance, | ||
4664 | // this could run two scanlines behind the above code, so it won't | ||
4665 | // intefere with filtering but will still be in the cache. | ||
4666 | if (depth < 8) { | ||
4667 | for (j=0; j < y; ++j) { | ||
4668 | stbi_uc *cur = a->out + stride*j; | ||
4669 | stbi_uc *in = a->out + stride*j + x*out_n - img_width_bytes; | ||
4670 | // unpack 1/2/4-bit into a 8-bit buffer. allows us to keep the common 8-bit path optimal at minimal cost for 1/2/4-bit | ||
4671 | // png guarante byte alignment, if width is not multiple of 8/4/2 we'll decode dummy trailing data that will be skipped in the later loop | ||
4672 | stbi_uc scale = (color == 0) ? stbi__depth_scale_table[depth] : 1; // scale grayscale values to 0..255 range | ||
4673 | |||
4674 | // note that the final byte might overshoot and write more data than desired. | ||
4675 | // we can allocate enough data that this never writes out of memory, but it | ||
4676 | // could also overwrite the next scanline. can it overwrite non-empty data | ||
4677 | // on the next scanline? yes, consider 1-pixel-wide scanlines with 1-bit-per-pixel. | ||
4678 | // so we need to explicitly clamp the final ones | ||
4679 | |||
4680 | if (depth == 4) { | ||
4681 | for (k=x*img_n; k >= 2; k-=2, ++in) { | ||
4682 | *cur++ = scale * ((*in >> 4) ); | ||
4683 | *cur++ = scale * ((*in ) & 0x0f); | ||
4684 | } | ||
4685 | if (k > 0) *cur++ = scale * ((*in >> 4) ); | ||
4686 | } else if (depth == 2) { | ||
4687 | for (k=x*img_n; k >= 4; k-=4, ++in) { | ||
4688 | *cur++ = scale * ((*in >> 6) ); | ||
4689 | *cur++ = scale * ((*in >> 4) & 0x03); | ||
4690 | *cur++ = scale * ((*in >> 2) & 0x03); | ||
4691 | *cur++ = scale * ((*in ) & 0x03); | ||
4692 | } | ||
4693 | if (k > 0) *cur++ = scale * ((*in >> 6) ); | ||
4694 | if (k > 1) *cur++ = scale * ((*in >> 4) & 0x03); | ||
4695 | if (k > 2) *cur++ = scale * ((*in >> 2) & 0x03); | ||
4696 | } else if (depth == 1) { | ||
4697 | for (k=x*img_n; k >= 8; k-=8, ++in) { | ||
4698 | *cur++ = scale * ((*in >> 7) ); | ||
4699 | *cur++ = scale * ((*in >> 6) & 0x01); | ||
4700 | *cur++ = scale * ((*in >> 5) & 0x01); | ||
4701 | *cur++ = scale * ((*in >> 4) & 0x01); | ||
4702 | *cur++ = scale * ((*in >> 3) & 0x01); | ||
4703 | *cur++ = scale * ((*in >> 2) & 0x01); | ||
4704 | *cur++ = scale * ((*in >> 1) & 0x01); | ||
4705 | *cur++ = scale * ((*in ) & 0x01); | ||
4706 | } | ||
4707 | if (k > 0) *cur++ = scale * ((*in >> 7) ); | ||
4708 | if (k > 1) *cur++ = scale * ((*in >> 6) & 0x01); | ||
4709 | if (k > 2) *cur++ = scale * ((*in >> 5) & 0x01); | ||
4710 | if (k > 3) *cur++ = scale * ((*in >> 4) & 0x01); | ||
4711 | if (k > 4) *cur++ = scale * ((*in >> 3) & 0x01); | ||
4712 | if (k > 5) *cur++ = scale * ((*in >> 2) & 0x01); | ||
4713 | if (k > 6) *cur++ = scale * ((*in >> 1) & 0x01); | ||
4714 | } | ||
4715 | if (img_n != out_n) { | ||
4716 | int q; | ||
4717 | // insert alpha = 255 | ||
4718 | cur = a->out + stride*j; | ||
4719 | if (img_n == 1) { | ||
4720 | for (q=x-1; q >= 0; --q) { | ||
4721 | cur[q*2+1] = 255; | ||
4722 | cur[q*2+0] = cur[q]; | ||
4723 | } | ||
4724 | } else { | ||
4725 | STBI_ASSERT(img_n == 3); | ||
4726 | for (q=x-1; q >= 0; --q) { | ||
4727 | cur[q*4+3] = 255; | ||
4728 | cur[q*4+2] = cur[q*3+2]; | ||
4729 | cur[q*4+1] = cur[q*3+1]; | ||
4730 | cur[q*4+0] = cur[q*3+0]; | ||
4731 | } | ||
4732 | } | ||
4733 | } | ||
4734 | } | ||
4735 | } else if (depth == 16) { | ||
4736 | // force the image data from big-endian to platform-native. | ||
4737 | // this is done in a separate pass due to the decoding relying | ||
4738 | // on the data being untouched, but could probably be done | ||
4739 | // per-line during decode if care is taken. | ||
4740 | stbi_uc *cur = a->out; | ||
4741 | stbi__uint16 *cur16 = (stbi__uint16*)cur; | ||
4742 | |||
4743 | for(i=0; i < x*y*out_n; ++i,cur16++,cur+=2) { | ||
4744 | *cur16 = (cur[0] << 8) | cur[1]; | ||
4745 | } | ||
4746 | } | ||
4747 | |||
4748 | return 1; | ||
4749 | } | ||
4750 | |||
4751 | static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced) | ||
4752 | { | ||
4753 | int bytes = (depth == 16 ? 2 : 1); | ||
4754 | int out_bytes = out_n * bytes; | ||
4755 | stbi_uc *final; | ||
4756 | int p; | ||
4757 | if (!interlaced) | ||
4758 | return stbi__create_png_image_raw(a, image_data, image_data_len, out_n, a->s->img_x, a->s->img_y, depth, color); | ||
4759 | |||
4760 | // de-interlacing | ||
4761 | final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0); | ||
4762 | for (p=0; p < 7; ++p) { | ||
4763 | int xorig[] = { 0,4,0,2,0,1,0 }; | ||
4764 | int yorig[] = { 0,0,4,0,2,0,1 }; | ||
4765 | int xspc[] = { 8,8,4,4,2,2,1 }; | ||
4766 | int yspc[] = { 8,8,8,4,4,2,2 }; | ||
4767 | int i,j,x,y; | ||
4768 | // pass1_x[4] = 0, pass1_x[5] = 1, pass1_x[12] = 1 | ||
4769 | x = (a->s->img_x - xorig[p] + xspc[p]-1) / xspc[p]; | ||
4770 | y = (a->s->img_y - yorig[p] + yspc[p]-1) / yspc[p]; | ||
4771 | if (x && y) { | ||
4772 | stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y; | ||
4773 | if (!stbi__create_png_image_raw(a, image_data, image_data_len, out_n, x, y, depth, color)) { | ||
4774 | STBI_FREE(final); | ||
4775 | return 0; | ||
4776 | } | ||
4777 | for (j=0; j < y; ++j) { | ||
4778 | for (i=0; i < x; ++i) { | ||
4779 | int out_y = j*yspc[p]+yorig[p]; | ||
4780 | int out_x = i*xspc[p]+xorig[p]; | ||
4781 | memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes, | ||
4782 | a->out + (j*x+i)*out_bytes, out_bytes); | ||
4783 | } | ||
4784 | } | ||
4785 | STBI_FREE(a->out); | ||
4786 | image_data += img_len; | ||
4787 | image_data_len -= img_len; | ||
4788 | } | ||
4789 | } | ||
4790 | a->out = final; | ||
4791 | |||
4792 | return 1; | ||
4793 | } | ||
4794 | |||
4795 | static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n) | ||
4796 | { | ||
4797 | stbi__context *s = z->s; | ||
4798 | stbi__uint32 i, pixel_count = s->img_x * s->img_y; | ||
4799 | stbi_uc *p = z->out; | ||
4800 | |||
4801 | // compute color-based transparency, assuming we've | ||
4802 | // already got 255 as the alpha value in the output | ||
4803 | STBI_ASSERT(out_n == 2 || out_n == 4); | ||
4804 | |||
4805 | if (out_n == 2) { | ||
4806 | for (i=0; i < pixel_count; ++i) { | ||
4807 | p[1] = (p[0] == tc[0] ? 0 : 255); | ||
4808 | p += 2; | ||
4809 | } | ||
4810 | } else { | ||
4811 | for (i=0; i < pixel_count; ++i) { | ||
4812 | if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) | ||
4813 | p[3] = 0; | ||
4814 | p += 4; | ||
4815 | } | ||
4816 | } | ||
4817 | return 1; | ||
4818 | } | ||
4819 | |||
4820 | static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n) | ||
4821 | { | ||
4822 | stbi__context *s = z->s; | ||
4823 | stbi__uint32 i, pixel_count = s->img_x * s->img_y; | ||
4824 | stbi__uint16 *p = (stbi__uint16*) z->out; | ||
4825 | |||
4826 | // compute color-based transparency, assuming we've | ||
4827 | // already got 65535 as the alpha value in the output | ||
4828 | STBI_ASSERT(out_n == 2 || out_n == 4); | ||
4829 | |||
4830 | if (out_n == 2) { | ||
4831 | for (i = 0; i < pixel_count; ++i) { | ||
4832 | p[1] = (p[0] == tc[0] ? 0 : 65535); | ||
4833 | p += 2; | ||
4834 | } | ||
4835 | } else { | ||
4836 | for (i = 0; i < pixel_count; ++i) { | ||
4837 | if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) | ||
4838 | p[3] = 0; | ||
4839 | p += 4; | ||
4840 | } | ||
4841 | } | ||
4842 | return 1; | ||
4843 | } | ||
4844 | |||
4845 | static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n) | ||
4846 | { | ||
4847 | stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y; | ||
4848 | stbi_uc *p, *temp_out, *orig = a->out; | ||
4849 | |||
4850 | p = (stbi_uc *) stbi__malloc_mad2(pixel_count, pal_img_n, 0); | ||
4851 | if (p == NULL) return stbi__err("outofmem", "Out of memory"); | ||
4852 | |||
4853 | // between here and free(out) below, exitting would leak | ||
4854 | temp_out = p; | ||
4855 | |||
4856 | if (pal_img_n == 3) { | ||
4857 | for (i=0; i < pixel_count; ++i) { | ||
4858 | int n = orig[i]*4; | ||
4859 | p[0] = palette[n ]; | ||
4860 | p[1] = palette[n+1]; | ||
4861 | p[2] = palette[n+2]; | ||
4862 | p += 3; | ||
4863 | } | ||
4864 | } else { | ||
4865 | for (i=0; i < pixel_count; ++i) { | ||
4866 | int n = orig[i]*4; | ||
4867 | p[0] = palette[n ]; | ||
4868 | p[1] = palette[n+1]; | ||
4869 | p[2] = palette[n+2]; | ||
4870 | p[3] = palette[n+3]; | ||
4871 | p += 4; | ||
4872 | } | ||
4873 | } | ||
4874 | STBI_FREE(a->out); | ||
4875 | a->out = temp_out; | ||
4876 | |||
4877 | STBI_NOTUSED(len); | ||
4878 | |||
4879 | return 1; | ||
4880 | } | ||
4881 | |||
4882 | static int stbi__unpremultiply_on_load = 0; | ||
4883 | static int stbi__de_iphone_flag = 0; | ||
4884 | |||
4885 | STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply) | ||
4886 | { | ||
4887 | stbi__unpremultiply_on_load = flag_true_if_should_unpremultiply; | ||
4888 | } | ||
4889 | |||
4890 | STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert) | ||
4891 | { | ||
4892 | stbi__de_iphone_flag = flag_true_if_should_convert; | ||
4893 | } | ||
4894 | |||
4895 | static void stbi__de_iphone(stbi__png *z) | ||
4896 | { | ||
4897 | stbi__context *s = z->s; | ||
4898 | stbi__uint32 i, pixel_count = s->img_x * s->img_y; | ||
4899 | stbi_uc *p = z->out; | ||
4900 | |||
4901 | if (s->img_out_n == 3) { // convert bgr to rgb | ||
4902 | for (i=0; i < pixel_count; ++i) { | ||
4903 | stbi_uc t = p[0]; | ||
4904 | p[0] = p[2]; | ||
4905 | p[2] = t; | ||
4906 | p += 3; | ||
4907 | } | ||
4908 | } else { | ||
4909 | STBI_ASSERT(s->img_out_n == 4); | ||
4910 | if (stbi__unpremultiply_on_load) { | ||
4911 | // convert bgr to rgb and unpremultiply | ||
4912 | for (i=0; i < pixel_count; ++i) { | ||
4913 | stbi_uc a = p[3]; | ||
4914 | stbi_uc t = p[0]; | ||
4915 | if (a) { | ||
4916 | stbi_uc half = a / 2; | ||
4917 | p[0] = (p[2] * 255 + half) / a; | ||
4918 | p[1] = (p[1] * 255 + half) / a; | ||
4919 | p[2] = ( t * 255 + half) / a; | ||
4920 | } else { | ||
4921 | p[0] = p[2]; | ||
4922 | p[2] = t; | ||
4923 | } | ||
4924 | p += 4; | ||
4925 | } | ||
4926 | } else { | ||
4927 | // convert bgr to rgb | ||
4928 | for (i=0; i < pixel_count; ++i) { | ||
4929 | stbi_uc t = p[0]; | ||
4930 | p[0] = p[2]; | ||
4931 | p[2] = t; | ||
4932 | p += 4; | ||
4933 | } | ||
4934 | } | ||
4935 | } | ||
4936 | } | ||
4937 | |||
4938 | #define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c) << 8) + (unsigned) (d)) | ||
4939 | |||
4940 | static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp) | ||
4941 | { | ||
4942 | stbi_uc palette[1024], pal_img_n=0; | ||
4943 | stbi_uc has_trans=0, tc[3]={0}; | ||
4944 | stbi__uint16 tc16[3]; | ||
4945 | stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; | ||
4946 | int first=1,k,interlace=0, color=0, is_iphone=0; | ||
4947 | stbi__context *s = z->s; | ||
4948 | |||
4949 | z->expanded = NULL; | ||
4950 | z->idata = NULL; | ||
4951 | z->out = NULL; | ||
4952 | |||
4953 | if (!stbi__check_png_header(s)) return 0; | ||
4954 | |||
4955 | if (scan == STBI__SCAN_type) return 1; | ||
4956 | |||
4957 | for (;;) { | ||
4958 | stbi__pngchunk c = stbi__get_chunk_header(s); | ||
4959 | switch (c.type) { | ||
4960 | case STBI__PNG_TYPE('C','g','B','I'): | ||
4961 | is_iphone = 1; | ||
4962 | stbi__skip(s, c.length); | ||
4963 | break; | ||
4964 | case STBI__PNG_TYPE('I','H','D','R'): { | ||
4965 | int comp,filter; | ||
4966 | if (!first) return stbi__err("multiple IHDR","Corrupt PNG"); | ||
4967 | first = 0; | ||
4968 | if (c.length != 13) return stbi__err("bad IHDR len","Corrupt PNG"); | ||
4969 | s->img_x = stbi__get32be(s); | ||
4970 | s->img_y = stbi__get32be(s); | ||
4971 | if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); | ||
4972 | if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); | ||
4973 | z->depth = stbi__get8(s); if (z->depth != 1 && z->depth != 2 && z->depth != 4 && z->depth != 8 && z->depth != 16) return stbi__err("1/2/4/8/16-bit only","PNG not supported: 1/2/4/8/16-bit only"); | ||
4974 | color = stbi__get8(s); if (color > 6) return stbi__err("bad ctype","Corrupt PNG"); | ||
4975 | if (color == 3 && z->depth == 16) return stbi__err("bad ctype","Corrupt PNG"); | ||
4976 | if (color == 3) pal_img_n = 3; else if (color & 1) return stbi__err("bad ctype","Corrupt PNG"); | ||
4977 | comp = stbi__get8(s); if (comp) return stbi__err("bad comp method","Corrupt PNG"); | ||
4978 | filter= stbi__get8(s); if (filter) return stbi__err("bad filter method","Corrupt PNG"); | ||
4979 | interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG"); | ||
4980 | if (!s->img_x || !s->img_y) return stbi__err("0-pixel image","Corrupt PNG"); | ||
4981 | if (!pal_img_n) { | ||
4982 | s->img_n = (color & 2 ? 3 : 1) + (color & 4 ? 1 : 0); | ||
4983 | if ((1 << 30) / s->img_x / s->img_n < s->img_y) return stbi__err("too large", "Image too large to decode"); | ||
4984 | if (scan == STBI__SCAN_header) return 1; | ||
4985 | } else { | ||
4986 | // if paletted, then pal_n is our final components, and | ||
4987 | // img_n is # components to decompress/filter. | ||
4988 | s->img_n = 1; | ||
4989 | if ((1 << 30) / s->img_x / 4 < s->img_y) return stbi__err("too large","Corrupt PNG"); | ||
4990 | // if SCAN_header, have to scan to see if we have a tRNS | ||
4991 | } | ||
4992 | break; | ||
4993 | } | ||
4994 | |||
4995 | case STBI__PNG_TYPE('P','L','T','E'): { | ||
4996 | if (first) return stbi__err("first not IHDR", "Corrupt PNG"); | ||
4997 | if (c.length > 256*3) return stbi__err("invalid PLTE","Corrupt PNG"); | ||
4998 | pal_len = c.length / 3; | ||
4999 | if (pal_len * 3 != c.length) return stbi__err("invalid PLTE","Corrupt PNG"); | ||
5000 | for (i=0; i < pal_len; ++i) { | ||
5001 | palette[i*4+0] = stbi__get8(s); | ||
5002 | palette[i*4+1] = stbi__get8(s); | ||
5003 | palette[i*4+2] = stbi__get8(s); | ||
5004 | palette[i*4+3] = 255; | ||
5005 | } | ||
5006 | break; | ||
5007 | } | ||
5008 | |||
5009 | case STBI__PNG_TYPE('t','R','N','S'): { | ||
5010 | if (first) return stbi__err("first not IHDR", "Corrupt PNG"); | ||
5011 | if (z->idata) return stbi__err("tRNS after IDAT","Corrupt PNG"); | ||
5012 | if (pal_img_n) { | ||
5013 | if (scan == STBI__SCAN_header) { s->img_n = 4; return 1; } | ||
5014 | if (pal_len == 0) return stbi__err("tRNS before PLTE","Corrupt PNG"); | ||
5015 | if (c.length > pal_len) return stbi__err("bad tRNS len","Corrupt PNG"); | ||
5016 | pal_img_n = 4; | ||
5017 | for (i=0; i < c.length; ++i) | ||
5018 | palette[i*4+3] = stbi__get8(s); | ||
5019 | } else { | ||
5020 | if (!(s->img_n & 1)) return stbi__err("tRNS with alpha","Corrupt PNG"); | ||
5021 | if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG"); | ||
5022 | has_trans = 1; | ||
5023 | if (z->depth == 16) { | ||
5024 | for (k = 0; k < s->img_n; ++k) tc16[k] = (stbi__uint16)stbi__get16be(s); // copy the values as-is | ||
5025 | } else { | ||
5026 | for (k = 0; k < s->img_n; ++k) tc[k] = (stbi_uc)(stbi__get16be(s) & 255) * stbi__depth_scale_table[z->depth]; // non 8-bit images will be larger | ||
5027 | } | ||
5028 | } | ||
5029 | break; | ||
5030 | } | ||
5031 | |||
5032 | case STBI__PNG_TYPE('I','D','A','T'): { | ||
5033 | if (first) return stbi__err("first not IHDR", "Corrupt PNG"); | ||
5034 | if (pal_img_n && !pal_len) return stbi__err("no PLTE","Corrupt PNG"); | ||
5035 | if (scan == STBI__SCAN_header) { s->img_n = pal_img_n; return 1; } | ||
5036 | if ((int)(ioff + c.length) < (int)ioff) return 0; | ||
5037 | if (ioff + c.length > idata_limit) { | ||
5038 | stbi__uint32 idata_limit_old = idata_limit; | ||
5039 | stbi_uc *p; | ||
5040 | if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096; | ||
5041 | while (ioff + c.length > idata_limit) | ||
5042 | idata_limit *= 2; | ||
5043 | STBI_NOTUSED(idata_limit_old); | ||
5044 | p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory"); | ||
5045 | z->idata = p; | ||
5046 | } | ||
5047 | if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG"); | ||
5048 | ioff += c.length; | ||
5049 | break; | ||
5050 | } | ||
5051 | |||
5052 | case STBI__PNG_TYPE('I','E','N','D'): { | ||
5053 | stbi__uint32 raw_len, bpl; | ||
5054 | if (first) return stbi__err("first not IHDR", "Corrupt PNG"); | ||
5055 | if (scan != STBI__SCAN_load) return 1; | ||
5056 | if (z->idata == NULL) return stbi__err("no IDAT","Corrupt PNG"); | ||
5057 | // initial guess for decoded data size to avoid unnecessary reallocs | ||
5058 | bpl = (s->img_x * z->depth + 7) / 8; // bytes per line, per component | ||
5059 | raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */; | ||
5060 | z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone); | ||
5061 | if (z->expanded == NULL) return 0; // zlib should set error | ||
5062 | STBI_FREE(z->idata); z->idata = NULL; | ||
5063 | if ((req_comp == s->img_n+1 && req_comp != 3 && !pal_img_n) || has_trans) | ||
5064 | s->img_out_n = s->img_n+1; | ||
5065 | else | ||
5066 | s->img_out_n = s->img_n; | ||
5067 | if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0; | ||
5068 | if (has_trans) { | ||
5069 | if (z->depth == 16) { | ||
5070 | if (!stbi__compute_transparency16(z, tc16, s->img_out_n)) return 0; | ||
5071 | } else { | ||
5072 | if (!stbi__compute_transparency(z, tc, s->img_out_n)) return 0; | ||
5073 | } | ||
5074 | } | ||
5075 | if (is_iphone && stbi__de_iphone_flag && s->img_out_n > 2) | ||
5076 | stbi__de_iphone(z); | ||
5077 | if (pal_img_n) { | ||
5078 | // pal_img_n == 3 or 4 | ||
5079 | s->img_n = pal_img_n; // record the actual colors we had | ||
5080 | s->img_out_n = pal_img_n; | ||
5081 | if (req_comp >= 3) s->img_out_n = req_comp; | ||
5082 | if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n)) | ||
5083 | return 0; | ||
5084 | } else if (has_trans) { | ||
5085 | // non-paletted image with tRNS -> source image has (constant) alpha | ||
5086 | ++s->img_n; | ||
5087 | } | ||
5088 | STBI_FREE(z->expanded); z->expanded = NULL; | ||
5089 | // end of PNG chunk, read and skip CRC | ||
5090 | stbi__get32be(s); | ||
5091 | return 1; | ||
5092 | } | ||
5093 | |||
5094 | default: | ||
5095 | // if critical, fail | ||
5096 | if (first) return stbi__err("first not IHDR", "Corrupt PNG"); | ||
5097 | if ((c.type & (1 << 29)) == 0) { | ||
5098 | #ifndef STBI_NO_FAILURE_STRINGS | ||
5099 | // not threadsafe | ||
5100 | static char invalid_chunk[] = "XXXX PNG chunk not known"; | ||
5101 | invalid_chunk[0] = STBI__BYTECAST(c.type >> 24); | ||
5102 | invalid_chunk[1] = STBI__BYTECAST(c.type >> 16); | ||
5103 | invalid_chunk[2] = STBI__BYTECAST(c.type >> 8); | ||
5104 | invalid_chunk[3] = STBI__BYTECAST(c.type >> 0); | ||
5105 | #endif | ||
5106 | return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type"); | ||
5107 | } | ||
5108 | stbi__skip(s, c.length); | ||
5109 | break; | ||
5110 | } | ||
5111 | // end of PNG chunk, read and skip CRC | ||
5112 | stbi__get32be(s); | ||
5113 | } | ||
5114 | } | ||
5115 | |||
5116 | static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri) | ||
5117 | { | ||
5118 | void *result=NULL; | ||
5119 | if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); | ||
5120 | if (stbi__parse_png_file(p, STBI__SCAN_load, req_comp)) { | ||
5121 | if (p->depth <= 8) | ||
5122 | ri->bits_per_channel = 8; | ||
5123 | else if (p->depth == 16) | ||
5124 | ri->bits_per_channel = 16; | ||
5125 | else | ||
5126 | return stbi__errpuc("bad bits_per_channel", "PNG not supported: unsupported color depth"); | ||
5127 | result = p->out; | ||
5128 | p->out = NULL; | ||
5129 | if (req_comp && req_comp != p->s->img_out_n) { | ||
5130 | if (ri->bits_per_channel == 8) | ||
5131 | result = stbi__convert_format((unsigned char *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); | ||
5132 | else | ||
5133 | result = stbi__convert_format16((stbi__uint16 *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); | ||
5134 | p->s->img_out_n = req_comp; | ||
5135 | if (result == NULL) return result; | ||
5136 | } | ||
5137 | *x = p->s->img_x; | ||
5138 | *y = p->s->img_y; | ||
5139 | if (n) *n = p->s->img_n; | ||
5140 | } | ||
5141 | STBI_FREE(p->out); p->out = NULL; | ||
5142 | STBI_FREE(p->expanded); p->expanded = NULL; | ||
5143 | STBI_FREE(p->idata); p->idata = NULL; | ||
5144 | |||
5145 | return result; | ||
5146 | } | ||
5147 | |||
5148 | static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
5149 | { | ||
5150 | stbi__png p; | ||
5151 | p.s = s; | ||
5152 | return stbi__do_png(&p, x,y,comp,req_comp, ri); | ||
5153 | } | ||
5154 | |||
5155 | static int stbi__png_test(stbi__context *s) | ||
5156 | { | ||
5157 | int r; | ||
5158 | r = stbi__check_png_header(s); | ||
5159 | stbi__rewind(s); | ||
5160 | return r; | ||
5161 | } | ||
5162 | |||
5163 | static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp) | ||
5164 | { | ||
5165 | if (!stbi__parse_png_file(p, STBI__SCAN_header, 0)) { | ||
5166 | stbi__rewind( p->s ); | ||
5167 | return 0; | ||
5168 | } | ||
5169 | if (x) *x = p->s->img_x; | ||
5170 | if (y) *y = p->s->img_y; | ||
5171 | if (comp) *comp = p->s->img_n; | ||
5172 | return 1; | ||
5173 | } | ||
5174 | |||
5175 | static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp) | ||
5176 | { | ||
5177 | stbi__png p; | ||
5178 | p.s = s; | ||
5179 | return stbi__png_info_raw(&p, x, y, comp); | ||
5180 | } | ||
5181 | |||
5182 | static int stbi__png_is16(stbi__context *s) | ||
5183 | { | ||
5184 | stbi__png p; | ||
5185 | p.s = s; | ||
5186 | if (!stbi__png_info_raw(&p, NULL, NULL, NULL)) | ||
5187 | return 0; | ||
5188 | if (p.depth != 16) { | ||
5189 | stbi__rewind(p.s); | ||
5190 | return 0; | ||
5191 | } | ||
5192 | return 1; | ||
5193 | } | ||
5194 | #endif | ||
5195 | |||
5196 | // Microsoft/Windows BMP image | ||
5197 | |||
5198 | #ifndef STBI_NO_BMP | ||
5199 | static int stbi__bmp_test_raw(stbi__context *s) | ||
5200 | { | ||
5201 | int r; | ||
5202 | int sz; | ||
5203 | if (stbi__get8(s) != 'B') return 0; | ||
5204 | if (stbi__get8(s) != 'M') return 0; | ||
5205 | stbi__get32le(s); // discard filesize | ||
5206 | stbi__get16le(s); // discard reserved | ||
5207 | stbi__get16le(s); // discard reserved | ||
5208 | stbi__get32le(s); // discard data offset | ||
5209 | sz = stbi__get32le(s); | ||
5210 | r = (sz == 12 || sz == 40 || sz == 56 || sz == 108 || sz == 124); | ||
5211 | return r; | ||
5212 | } | ||
5213 | |||
5214 | static int stbi__bmp_test(stbi__context *s) | ||
5215 | { | ||
5216 | int r = stbi__bmp_test_raw(s); | ||
5217 | stbi__rewind(s); | ||
5218 | return r; | ||
5219 | } | ||
5220 | |||
5221 | |||
5222 | // returns 0..31 for the highest set bit | ||
5223 | static int stbi__high_bit(unsigned int z) | ||
5224 | { | ||
5225 | int n=0; | ||
5226 | if (z == 0) return -1; | ||
5227 | if (z >= 0x10000) { n += 16; z >>= 16; } | ||
5228 | if (z >= 0x00100) { n += 8; z >>= 8; } | ||
5229 | if (z >= 0x00010) { n += 4; z >>= 4; } | ||
5230 | if (z >= 0x00004) { n += 2; z >>= 2; } | ||
5231 | if (z >= 0x00002) { n += 1;/* >>= 1;*/ } | ||
5232 | return n; | ||
5233 | } | ||
5234 | |||
5235 | static int stbi__bitcount(unsigned int a) | ||
5236 | { | ||
5237 | a = (a & 0x55555555) + ((a >> 1) & 0x55555555); // max 2 | ||
5238 | a = (a & 0x33333333) + ((a >> 2) & 0x33333333); // max 4 | ||
5239 | a = (a + (a >> 4)) & 0x0f0f0f0f; // max 8 per 4, now 8 bits | ||
5240 | a = (a + (a >> 8)); // max 16 per 8 bits | ||
5241 | a = (a + (a >> 16)); // max 32 per 8 bits | ||
5242 | return a & 0xff; | ||
5243 | } | ||
5244 | |||
5245 | // extract an arbitrarily-aligned N-bit value (N=bits) | ||
5246 | // from v, and then make it 8-bits long and fractionally | ||
5247 | // extend it to full full range. | ||
5248 | static int stbi__shiftsigned(unsigned int v, int shift, int bits) | ||
5249 | { | ||
5250 | static unsigned int mul_table[9] = { | ||
5251 | 0, | ||
5252 | 0xff/*0b11111111*/, 0x55/*0b01010101*/, 0x49/*0b01001001*/, 0x11/*0b00010001*/, | ||
5253 | 0x21/*0b00100001*/, 0x41/*0b01000001*/, 0x81/*0b10000001*/, 0x01/*0b00000001*/, | ||
5254 | }; | ||
5255 | static unsigned int shift_table[9] = { | ||
5256 | 0, 0,0,1,0,2,4,6,0, | ||
5257 | }; | ||
5258 | if (shift < 0) | ||
5259 | v <<= -shift; | ||
5260 | else | ||
5261 | v >>= shift; | ||
5262 | STBI_ASSERT(v < 256); | ||
5263 | v >>= (8-bits); | ||
5264 | STBI_ASSERT(bits >= 0 && bits <= 8); | ||
5265 | return (int) ((unsigned) v * mul_table[bits]) >> shift_table[bits]; | ||
5266 | } | ||
5267 | |||
5268 | typedef struct | ||
5269 | { | ||
5270 | int bpp, offset, hsz; | ||
5271 | unsigned int mr,mg,mb,ma, all_a; | ||
5272 | int extra_read; | ||
5273 | } stbi__bmp_data; | ||
5274 | |||
5275 | static void *stbi__bmp_parse_header(stbi__context *s, stbi__bmp_data *info) | ||
5276 | { | ||
5277 | int hsz; | ||
5278 | if (stbi__get8(s) != 'B' || stbi__get8(s) != 'M') return stbi__errpuc("not BMP", "Corrupt BMP"); | ||
5279 | stbi__get32le(s); // discard filesize | ||
5280 | stbi__get16le(s); // discard reserved | ||
5281 | stbi__get16le(s); // discard reserved | ||
5282 | info->offset = stbi__get32le(s); | ||
5283 | info->hsz = hsz = stbi__get32le(s); | ||
5284 | info->mr = info->mg = info->mb = info->ma = 0; | ||
5285 | info->extra_read = 14; | ||
5286 | |||
5287 | if (info->offset < 0) return stbi__errpuc("bad BMP", "bad BMP"); | ||
5288 | |||
5289 | if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108 && hsz != 124) return stbi__errpuc("unknown BMP", "BMP type not supported: unknown"); | ||
5290 | if (hsz == 12) { | ||
5291 | s->img_x = stbi__get16le(s); | ||
5292 | s->img_y = stbi__get16le(s); | ||
5293 | } else { | ||
5294 | s->img_x = stbi__get32le(s); | ||
5295 | s->img_y = stbi__get32le(s); | ||
5296 | } | ||
5297 | if (stbi__get16le(s) != 1) return stbi__errpuc("bad BMP", "bad BMP"); | ||
5298 | info->bpp = stbi__get16le(s); | ||
5299 | if (hsz != 12) { | ||
5300 | int compress = stbi__get32le(s); | ||
5301 | if (compress == 1 || compress == 2) return stbi__errpuc("BMP RLE", "BMP type not supported: RLE"); | ||
5302 | stbi__get32le(s); // discard sizeof | ||
5303 | stbi__get32le(s); // discard hres | ||
5304 | stbi__get32le(s); // discard vres | ||
5305 | stbi__get32le(s); // discard colorsused | ||
5306 | stbi__get32le(s); // discard max important | ||
5307 | if (hsz == 40 || hsz == 56) { | ||
5308 | if (hsz == 56) { | ||
5309 | stbi__get32le(s); | ||
5310 | stbi__get32le(s); | ||
5311 | stbi__get32le(s); | ||
5312 | stbi__get32le(s); | ||
5313 | } | ||
5314 | if (info->bpp == 16 || info->bpp == 32) { | ||
5315 | if (compress == 0) { | ||
5316 | if (info->bpp == 32) { | ||
5317 | info->mr = 0xffu << 16; | ||
5318 | info->mg = 0xffu << 8; | ||
5319 | info->mb = 0xffu << 0; | ||
5320 | info->ma = 0xffu << 24; | ||
5321 | info->all_a = 0; // if all_a is 0 at end, then we loaded alpha channel but it was all 0 | ||
5322 | } else { | ||
5323 | info->mr = 31u << 10; | ||
5324 | info->mg = 31u << 5; | ||
5325 | info->mb = 31u << 0; | ||
5326 | } | ||
5327 | } else if (compress == 3) { | ||
5328 | info->mr = stbi__get32le(s); | ||
5329 | info->mg = stbi__get32le(s); | ||
5330 | info->mb = stbi__get32le(s); | ||
5331 | info->extra_read += 12; | ||
5332 | // not documented, but generated by photoshop and handled by mspaint | ||
5333 | if (info->mr == info->mg && info->mg == info->mb) { | ||
5334 | // ?!?!? | ||
5335 | return stbi__errpuc("bad BMP", "bad BMP"); | ||
5336 | } | ||
5337 | } else | ||
5338 | return stbi__errpuc("bad BMP", "bad BMP"); | ||
5339 | } | ||
5340 | } else { | ||
5341 | int i; | ||
5342 | if (hsz != 108 && hsz != 124) | ||
5343 | return stbi__errpuc("bad BMP", "bad BMP"); | ||
5344 | info->mr = stbi__get32le(s); | ||
5345 | info->mg = stbi__get32le(s); | ||
5346 | info->mb = stbi__get32le(s); | ||
5347 | info->ma = stbi__get32le(s); | ||
5348 | stbi__get32le(s); // discard color space | ||
5349 | for (i=0; i < 12; ++i) | ||
5350 | stbi__get32le(s); // discard color space parameters | ||
5351 | if (hsz == 124) { | ||
5352 | stbi__get32le(s); // discard rendering intent | ||
5353 | stbi__get32le(s); // discard offset of profile data | ||
5354 | stbi__get32le(s); // discard size of profile data | ||
5355 | stbi__get32le(s); // discard reserved | ||
5356 | } | ||
5357 | } | ||
5358 | } | ||
5359 | return (void *) 1; | ||
5360 | } | ||
5361 | |||
5362 | |||
5363 | static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
5364 | { | ||
5365 | stbi_uc *out; | ||
5366 | unsigned int mr=0,mg=0,mb=0,ma=0, all_a; | ||
5367 | stbi_uc pal[256][4]; | ||
5368 | int psize=0,i,j,width; | ||
5369 | int flip_vertically, pad, target; | ||
5370 | stbi__bmp_data info; | ||
5371 | STBI_NOTUSED(ri); | ||
5372 | |||
5373 | info.all_a = 255; | ||
5374 | if (stbi__bmp_parse_header(s, &info) == NULL) | ||
5375 | return NULL; // error code already set | ||
5376 | |||
5377 | flip_vertically = ((int) s->img_y) > 0; | ||
5378 | s->img_y = abs((int) s->img_y); | ||
5379 | |||
5380 | if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
5381 | if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
5382 | |||
5383 | mr = info.mr; | ||
5384 | mg = info.mg; | ||
5385 | mb = info.mb; | ||
5386 | ma = info.ma; | ||
5387 | all_a = info.all_a; | ||
5388 | |||
5389 | if (info.hsz == 12) { | ||
5390 | if (info.bpp < 24) | ||
5391 | psize = (info.offset - info.extra_read - 24) / 3; | ||
5392 | } else { | ||
5393 | if (info.bpp < 16) | ||
5394 | psize = (info.offset - info.extra_read - info.hsz) >> 2; | ||
5395 | } | ||
5396 | if (psize == 0) { | ||
5397 | STBI_ASSERT(info.offset == s->callback_already_read + (int) (s->img_buffer - s->img_buffer_original)); | ||
5398 | if (info.offset != s->callback_already_read + (s->img_buffer - s->buffer_start)) { | ||
5399 | return stbi__errpuc("bad offset", "Corrupt BMP"); | ||
5400 | } | ||
5401 | } | ||
5402 | |||
5403 | if (info.bpp == 24 && ma == 0xff000000) | ||
5404 | s->img_n = 3; | ||
5405 | else | ||
5406 | s->img_n = ma ? 4 : 3; | ||
5407 | if (req_comp && req_comp >= 3) // we can directly decode 3 or 4 | ||
5408 | target = req_comp; | ||
5409 | else | ||
5410 | target = s->img_n; // if they want monochrome, we'll post-convert | ||
5411 | |||
5412 | // sanity-check size | ||
5413 | if (!stbi__mad3sizes_valid(target, s->img_x, s->img_y, 0)) | ||
5414 | return stbi__errpuc("too large", "Corrupt BMP"); | ||
5415 | |||
5416 | out = (stbi_uc *) stbi__malloc_mad3(target, s->img_x, s->img_y, 0); | ||
5417 | if (!out) return stbi__errpuc("outofmem", "Out of memory"); | ||
5418 | if (info.bpp < 16) { | ||
5419 | int z=0; | ||
5420 | if (psize == 0 || psize > 256) { STBI_FREE(out); return stbi__errpuc("invalid", "Corrupt BMP"); } | ||
5421 | for (i=0; i < psize; ++i) { | ||
5422 | pal[i][2] = stbi__get8(s); | ||
5423 | pal[i][1] = stbi__get8(s); | ||
5424 | pal[i][0] = stbi__get8(s); | ||
5425 | if (info.hsz != 12) stbi__get8(s); | ||
5426 | pal[i][3] = 255; | ||
5427 | } | ||
5428 | stbi__skip(s, info.offset - info.extra_read - info.hsz - psize * (info.hsz == 12 ? 3 : 4)); | ||
5429 | if (info.bpp == 1) width = (s->img_x + 7) >> 3; | ||
5430 | else if (info.bpp == 4) width = (s->img_x + 1) >> 1; | ||
5431 | else if (info.bpp == 8) width = s->img_x; | ||
5432 | else { STBI_FREE(out); return stbi__errpuc("bad bpp", "Corrupt BMP"); } | ||
5433 | pad = (-width)&3; | ||
5434 | if (info.bpp == 1) { | ||
5435 | for (j=0; j < (int) s->img_y; ++j) { | ||
5436 | int bit_offset = 7, v = stbi__get8(s); | ||
5437 | for (i=0; i < (int) s->img_x; ++i) { | ||
5438 | int color = (v>>bit_offset)&0x1; | ||
5439 | out[z++] = pal[color][0]; | ||
5440 | out[z++] = pal[color][1]; | ||
5441 | out[z++] = pal[color][2]; | ||
5442 | if (target == 4) out[z++] = 255; | ||
5443 | if (i+1 == (int) s->img_x) break; | ||
5444 | if((--bit_offset) < 0) { | ||
5445 | bit_offset = 7; | ||
5446 | v = stbi__get8(s); | ||
5447 | } | ||
5448 | } | ||
5449 | stbi__skip(s, pad); | ||
5450 | } | ||
5451 | } else { | ||
5452 | for (j=0; j < (int) s->img_y; ++j) { | ||
5453 | for (i=0; i < (int) s->img_x; i += 2) { | ||
5454 | int v=stbi__get8(s),v2=0; | ||
5455 | if (info.bpp == 4) { | ||
5456 | v2 = v & 15; | ||
5457 | v >>= 4; | ||
5458 | } | ||
5459 | out[z++] = pal[v][0]; | ||
5460 | out[z++] = pal[v][1]; | ||
5461 | out[z++] = pal[v][2]; | ||
5462 | if (target == 4) out[z++] = 255; | ||
5463 | if (i+1 == (int) s->img_x) break; | ||
5464 | v = (info.bpp == 8) ? stbi__get8(s) : v2; | ||
5465 | out[z++] = pal[v][0]; | ||
5466 | out[z++] = pal[v][1]; | ||
5467 | out[z++] = pal[v][2]; | ||
5468 | if (target == 4) out[z++] = 255; | ||
5469 | } | ||
5470 | stbi__skip(s, pad); | ||
5471 | } | ||
5472 | } | ||
5473 | } else { | ||
5474 | int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0; | ||
5475 | int z = 0; | ||
5476 | int easy=0; | ||
5477 | stbi__skip(s, info.offset - info.extra_read - info.hsz); | ||
5478 | if (info.bpp == 24) width = 3 * s->img_x; | ||
5479 | else if (info.bpp == 16) width = 2*s->img_x; | ||
5480 | else /* bpp = 32 and pad = 0 */ width=0; | ||
5481 | pad = (-width) & 3; | ||
5482 | if (info.bpp == 24) { | ||
5483 | easy = 1; | ||
5484 | } else if (info.bpp == 32) { | ||
5485 | if (mb == 0xff && mg == 0xff00 && mr == 0x00ff0000 && ma == 0xff000000) | ||
5486 | easy = 2; | ||
5487 | } | ||
5488 | if (!easy) { | ||
5489 | if (!mr || !mg || !mb) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } | ||
5490 | // right shift amt to put high bit in position #7 | ||
5491 | rshift = stbi__high_bit(mr)-7; rcount = stbi__bitcount(mr); | ||
5492 | gshift = stbi__high_bit(mg)-7; gcount = stbi__bitcount(mg); | ||
5493 | bshift = stbi__high_bit(mb)-7; bcount = stbi__bitcount(mb); | ||
5494 | ashift = stbi__high_bit(ma)-7; acount = stbi__bitcount(ma); | ||
5495 | if (rcount > 8 || gcount > 8 || bcount > 8 || acount > 8) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } | ||
5496 | } | ||
5497 | for (j=0; j < (int) s->img_y; ++j) { | ||
5498 | if (easy) { | ||
5499 | for (i=0; i < (int) s->img_x; ++i) { | ||
5500 | unsigned char a; | ||
5501 | out[z+2] = stbi__get8(s); | ||
5502 | out[z+1] = stbi__get8(s); | ||
5503 | out[z+0] = stbi__get8(s); | ||
5504 | z += 3; | ||
5505 | a = (easy == 2 ? stbi__get8(s) : 255); | ||
5506 | all_a |= a; | ||
5507 | if (target == 4) out[z++] = a; | ||
5508 | } | ||
5509 | } else { | ||
5510 | int bpp = info.bpp; | ||
5511 | for (i=0; i < (int) s->img_x; ++i) { | ||
5512 | stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s)); | ||
5513 | unsigned int a; | ||
5514 | out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mr, rshift, rcount)); | ||
5515 | out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mg, gshift, gcount)); | ||
5516 | out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mb, bshift, bcount)); | ||
5517 | a = (ma ? stbi__shiftsigned(v & ma, ashift, acount) : 255); | ||
5518 | all_a |= a; | ||
5519 | if (target == 4) out[z++] = STBI__BYTECAST(a); | ||
5520 | } | ||
5521 | } | ||
5522 | stbi__skip(s, pad); | ||
5523 | } | ||
5524 | } | ||
5525 | |||
5526 | // if alpha channel is all 0s, replace with all 255s | ||
5527 | if (target == 4 && all_a == 0) | ||
5528 | for (i=4*s->img_x*s->img_y-1; i >= 0; i -= 4) | ||
5529 | out[i] = 255; | ||
5530 | |||
5531 | if (flip_vertically) { | ||
5532 | stbi_uc t; | ||
5533 | for (j=0; j < (int) s->img_y>>1; ++j) { | ||
5534 | stbi_uc *p1 = out + j *s->img_x*target; | ||
5535 | stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target; | ||
5536 | for (i=0; i < (int) s->img_x*target; ++i) { | ||
5537 | t = p1[i]; p1[i] = p2[i]; p2[i] = t; | ||
5538 | } | ||
5539 | } | ||
5540 | } | ||
5541 | |||
5542 | if (req_comp && req_comp != target) { | ||
5543 | out = stbi__convert_format(out, target, req_comp, s->img_x, s->img_y); | ||
5544 | if (out == NULL) return out; // stbi__convert_format frees input on failure | ||
5545 | } | ||
5546 | |||
5547 | *x = s->img_x; | ||
5548 | *y = s->img_y; | ||
5549 | if (comp) *comp = s->img_n; | ||
5550 | return out; | ||
5551 | } | ||
5552 | #endif | ||
5553 | |||
5554 | // Targa Truevision - TGA | ||
5555 | // by Jonathan Dummer | ||
5556 | #ifndef STBI_NO_TGA | ||
5557 | // returns STBI_rgb or whatever, 0 on error | ||
5558 | static int stbi__tga_get_comp(int bits_per_pixel, int is_grey, int* is_rgb16) | ||
5559 | { | ||
5560 | // only RGB or RGBA (incl. 16bit) or grey allowed | ||
5561 | if (is_rgb16) *is_rgb16 = 0; | ||
5562 | switch(bits_per_pixel) { | ||
5563 | case 8: return STBI_grey; | ||
5564 | case 16: if(is_grey) return STBI_grey_alpha; | ||
5565 | // fallthrough | ||
5566 | case 15: if(is_rgb16) *is_rgb16 = 1; | ||
5567 | return STBI_rgb; | ||
5568 | case 24: // fallthrough | ||
5569 | case 32: return bits_per_pixel/8; | ||
5570 | default: return 0; | ||
5571 | } | ||
5572 | } | ||
5573 | |||
5574 | static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp) | ||
5575 | { | ||
5576 | int tga_w, tga_h, tga_comp, tga_image_type, tga_bits_per_pixel, tga_colormap_bpp; | ||
5577 | int sz, tga_colormap_type; | ||
5578 | stbi__get8(s); // discard Offset | ||
5579 | tga_colormap_type = stbi__get8(s); // colormap type | ||
5580 | if( tga_colormap_type > 1 ) { | ||
5581 | stbi__rewind(s); | ||
5582 | return 0; // only RGB or indexed allowed | ||
5583 | } | ||
5584 | tga_image_type = stbi__get8(s); // image type | ||
5585 | if ( tga_colormap_type == 1 ) { // colormapped (paletted) image | ||
5586 | if (tga_image_type != 1 && tga_image_type != 9) { | ||
5587 | stbi__rewind(s); | ||
5588 | return 0; | ||
5589 | } | ||
5590 | stbi__skip(s,4); // skip index of first colormap entry and number of entries | ||
5591 | sz = stbi__get8(s); // check bits per palette color entry | ||
5592 | if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) { | ||
5593 | stbi__rewind(s); | ||
5594 | return 0; | ||
5595 | } | ||
5596 | stbi__skip(s,4); // skip image x and y origin | ||
5597 | tga_colormap_bpp = sz; | ||
5598 | } else { // "normal" image w/o colormap - only RGB or grey allowed, +/- RLE | ||
5599 | if ( (tga_image_type != 2) && (tga_image_type != 3) && (tga_image_type != 10) && (tga_image_type != 11) ) { | ||
5600 | stbi__rewind(s); | ||
5601 | return 0; // only RGB or grey allowed, +/- RLE | ||
5602 | } | ||
5603 | stbi__skip(s,9); // skip colormap specification and image x/y origin | ||
5604 | tga_colormap_bpp = 0; | ||
5605 | } | ||
5606 | tga_w = stbi__get16le(s); | ||
5607 | if( tga_w < 1 ) { | ||
5608 | stbi__rewind(s); | ||
5609 | return 0; // test width | ||
5610 | } | ||
5611 | tga_h = stbi__get16le(s); | ||
5612 | if( tga_h < 1 ) { | ||
5613 | stbi__rewind(s); | ||
5614 | return 0; // test height | ||
5615 | } | ||
5616 | tga_bits_per_pixel = stbi__get8(s); // bits per pixel | ||
5617 | stbi__get8(s); // ignore alpha bits | ||
5618 | if (tga_colormap_bpp != 0) { | ||
5619 | if((tga_bits_per_pixel != 8) && (tga_bits_per_pixel != 16)) { | ||
5620 | // when using a colormap, tga_bits_per_pixel is the size of the indexes | ||
5621 | // I don't think anything but 8 or 16bit indexes makes sense | ||
5622 | stbi__rewind(s); | ||
5623 | return 0; | ||
5624 | } | ||
5625 | tga_comp = stbi__tga_get_comp(tga_colormap_bpp, 0, NULL); | ||
5626 | } else { | ||
5627 | tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3) || (tga_image_type == 11), NULL); | ||
5628 | } | ||
5629 | if(!tga_comp) { | ||
5630 | stbi__rewind(s); | ||
5631 | return 0; | ||
5632 | } | ||
5633 | if (x) *x = tga_w; | ||
5634 | if (y) *y = tga_h; | ||
5635 | if (comp) *comp = tga_comp; | ||
5636 | return 1; // seems to have passed everything | ||
5637 | } | ||
5638 | |||
5639 | static int stbi__tga_test(stbi__context *s) | ||
5640 | { | ||
5641 | int res = 0; | ||
5642 | int sz, tga_color_type; | ||
5643 | stbi__get8(s); // discard Offset | ||
5644 | tga_color_type = stbi__get8(s); // color type | ||
5645 | if ( tga_color_type > 1 ) goto errorEnd; // only RGB or indexed allowed | ||
5646 | sz = stbi__get8(s); // image type | ||
5647 | if ( tga_color_type == 1 ) { // colormapped (paletted) image | ||
5648 | if (sz != 1 && sz != 9) goto errorEnd; // colortype 1 demands image type 1 or 9 | ||
5649 | stbi__skip(s,4); // skip index of first colormap entry and number of entries | ||
5650 | sz = stbi__get8(s); // check bits per palette color entry | ||
5651 | if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; | ||
5652 | stbi__skip(s,4); // skip image x and y origin | ||
5653 | } else { // "normal" image w/o colormap | ||
5654 | if ( (sz != 2) && (sz != 3) && (sz != 10) && (sz != 11) ) goto errorEnd; // only RGB or grey allowed, +/- RLE | ||
5655 | stbi__skip(s,9); // skip colormap specification and image x/y origin | ||
5656 | } | ||
5657 | if ( stbi__get16le(s) < 1 ) goto errorEnd; // test width | ||
5658 | if ( stbi__get16le(s) < 1 ) goto errorEnd; // test height | ||
5659 | sz = stbi__get8(s); // bits per pixel | ||
5660 | if ( (tga_color_type == 1) && (sz != 8) && (sz != 16) ) goto errorEnd; // for colormapped images, bpp is size of an index | ||
5661 | if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; | ||
5662 | |||
5663 | res = 1; // if we got this far, everything's good and we can return 1 instead of 0 | ||
5664 | |||
5665 | errorEnd: | ||
5666 | stbi__rewind(s); | ||
5667 | return res; | ||
5668 | } | ||
5669 | |||
5670 | // read 16bit value and convert to 24bit RGB | ||
5671 | static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out) | ||
5672 | { | ||
5673 | stbi__uint16 px = (stbi__uint16)stbi__get16le(s); | ||
5674 | stbi__uint16 fiveBitMask = 31; | ||
5675 | // we have 3 channels with 5bits each | ||
5676 | int r = (px >> 10) & fiveBitMask; | ||
5677 | int g = (px >> 5) & fiveBitMask; | ||
5678 | int b = px & fiveBitMask; | ||
5679 | // Note that this saves the data in RGB(A) order, so it doesn't need to be swapped later | ||
5680 | out[0] = (stbi_uc)((r * 255)/31); | ||
5681 | out[1] = (stbi_uc)((g * 255)/31); | ||
5682 | out[2] = (stbi_uc)((b * 255)/31); | ||
5683 | |||
5684 | // some people claim that the most significant bit might be used for alpha | ||
5685 | // (possibly if an alpha-bit is set in the "image descriptor byte") | ||
5686 | // but that only made 16bit test images completely translucent.. | ||
5687 | // so let's treat all 15 and 16bit TGAs as RGB with no alpha. | ||
5688 | } | ||
5689 | |||
5690 | static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
5691 | { | ||
5692 | // read in the TGA header stuff | ||
5693 | int tga_offset = stbi__get8(s); | ||
5694 | int tga_indexed = stbi__get8(s); | ||
5695 | int tga_image_type = stbi__get8(s); | ||
5696 | int tga_is_RLE = 0; | ||
5697 | int tga_palette_start = stbi__get16le(s); | ||
5698 | int tga_palette_len = stbi__get16le(s); | ||
5699 | int tga_palette_bits = stbi__get8(s); | ||
5700 | int tga_x_origin = stbi__get16le(s); | ||
5701 | int tga_y_origin = stbi__get16le(s); | ||
5702 | int tga_width = stbi__get16le(s); | ||
5703 | int tga_height = stbi__get16le(s); | ||
5704 | int tga_bits_per_pixel = stbi__get8(s); | ||
5705 | int tga_comp, tga_rgb16=0; | ||
5706 | int tga_inverted = stbi__get8(s); | ||
5707 | // int tga_alpha_bits = tga_inverted & 15; // the 4 lowest bits - unused (useless?) | ||
5708 | // image data | ||
5709 | unsigned char *tga_data; | ||
5710 | unsigned char *tga_palette = NULL; | ||
5711 | int i, j; | ||
5712 | unsigned char raw_data[4] = {0}; | ||
5713 | int RLE_count = 0; | ||
5714 | int RLE_repeating = 0; | ||
5715 | int read_next_pixel = 1; | ||
5716 | STBI_NOTUSED(ri); | ||
5717 | STBI_NOTUSED(tga_x_origin); // @TODO | ||
5718 | STBI_NOTUSED(tga_y_origin); // @TODO | ||
5719 | |||
5720 | if (tga_height > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
5721 | if (tga_width > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
5722 | |||
5723 | // do a tiny bit of precessing | ||
5724 | if ( tga_image_type >= 8 ) | ||
5725 | { | ||
5726 | tga_image_type -= 8; | ||
5727 | tga_is_RLE = 1; | ||
5728 | } | ||
5729 | tga_inverted = 1 - ((tga_inverted >> 5) & 1); | ||
5730 | |||
5731 | // If I'm paletted, then I'll use the number of bits from the palette | ||
5732 | if ( tga_indexed ) tga_comp = stbi__tga_get_comp(tga_palette_bits, 0, &tga_rgb16); | ||
5733 | else tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3), &tga_rgb16); | ||
5734 | |||
5735 | if(!tga_comp) // shouldn't really happen, stbi__tga_test() should have ensured basic consistency | ||
5736 | return stbi__errpuc("bad format", "Can't find out TGA pixelformat"); | ||
5737 | |||
5738 | // tga info | ||
5739 | *x = tga_width; | ||
5740 | *y = tga_height; | ||
5741 | if (comp) *comp = tga_comp; | ||
5742 | |||
5743 | if (!stbi__mad3sizes_valid(tga_width, tga_height, tga_comp, 0)) | ||
5744 | return stbi__errpuc("too large", "Corrupt TGA"); | ||
5745 | |||
5746 | tga_data = (unsigned char*)stbi__malloc_mad3(tga_width, tga_height, tga_comp, 0); | ||
5747 | if (!tga_data) return stbi__errpuc("outofmem", "Out of memory"); | ||
5748 | |||
5749 | // skip to the data's starting position (offset usually = 0) | ||
5750 | stbi__skip(s, tga_offset ); | ||
5751 | |||
5752 | if ( !tga_indexed && !tga_is_RLE && !tga_rgb16 ) { | ||
5753 | for (i=0; i < tga_height; ++i) { | ||
5754 | int row = tga_inverted ? tga_height -i - 1 : i; | ||
5755 | stbi_uc *tga_row = tga_data + row*tga_width*tga_comp; | ||
5756 | stbi__getn(s, tga_row, tga_width * tga_comp); | ||
5757 | } | ||
5758 | } else { | ||
5759 | // do I need to load a palette? | ||
5760 | if ( tga_indexed) | ||
5761 | { | ||
5762 | if (tga_palette_len == 0) { /* you have to have at least one entry! */ | ||
5763 | STBI_FREE(tga_data); | ||
5764 | return stbi__errpuc("bad palette", "Corrupt TGA"); | ||
5765 | } | ||
5766 | |||
5767 | // any data to skip? (offset usually = 0) | ||
5768 | stbi__skip(s, tga_palette_start ); | ||
5769 | // load the palette | ||
5770 | tga_palette = (unsigned char*)stbi__malloc_mad2(tga_palette_len, tga_comp, 0); | ||
5771 | if (!tga_palette) { | ||
5772 | STBI_FREE(tga_data); | ||
5773 | return stbi__errpuc("outofmem", "Out of memory"); | ||
5774 | } | ||
5775 | if (tga_rgb16) { | ||
5776 | stbi_uc *pal_entry = tga_palette; | ||
5777 | STBI_ASSERT(tga_comp == STBI_rgb); | ||
5778 | for (i=0; i < tga_palette_len; ++i) { | ||
5779 | stbi__tga_read_rgb16(s, pal_entry); | ||
5780 | pal_entry += tga_comp; | ||
5781 | } | ||
5782 | } else if (!stbi__getn(s, tga_palette, tga_palette_len * tga_comp)) { | ||
5783 | STBI_FREE(tga_data); | ||
5784 | STBI_FREE(tga_palette); | ||
5785 | return stbi__errpuc("bad palette", "Corrupt TGA"); | ||
5786 | } | ||
5787 | } | ||
5788 | // load the data | ||
5789 | for (i=0; i < tga_width * tga_height; ++i) | ||
5790 | { | ||
5791 | // if I'm in RLE mode, do I need to get a RLE stbi__pngchunk? | ||
5792 | if ( tga_is_RLE ) | ||
5793 | { | ||
5794 | if ( RLE_count == 0 ) | ||
5795 | { | ||
5796 | // yep, get the next byte as a RLE command | ||
5797 | int RLE_cmd = stbi__get8(s); | ||
5798 | RLE_count = 1 + (RLE_cmd & 127); | ||
5799 | RLE_repeating = RLE_cmd >> 7; | ||
5800 | read_next_pixel = 1; | ||
5801 | } else if ( !RLE_repeating ) | ||
5802 | { | ||
5803 | read_next_pixel = 1; | ||
5804 | } | ||
5805 | } else | ||
5806 | { | ||
5807 | read_next_pixel = 1; | ||
5808 | } | ||
5809 | // OK, if I need to read a pixel, do it now | ||
5810 | if ( read_next_pixel ) | ||
5811 | { | ||
5812 | // load however much data we did have | ||
5813 | if ( tga_indexed ) | ||
5814 | { | ||
5815 | // read in index, then perform the lookup | ||
5816 | int pal_idx = (tga_bits_per_pixel == 8) ? stbi__get8(s) : stbi__get16le(s); | ||
5817 | if ( pal_idx >= tga_palette_len ) { | ||
5818 | // invalid index | ||
5819 | pal_idx = 0; | ||
5820 | } | ||
5821 | pal_idx *= tga_comp; | ||
5822 | for (j = 0; j < tga_comp; ++j) { | ||
5823 | raw_data[j] = tga_palette[pal_idx+j]; | ||
5824 | } | ||
5825 | } else if(tga_rgb16) { | ||
5826 | STBI_ASSERT(tga_comp == STBI_rgb); | ||
5827 | stbi__tga_read_rgb16(s, raw_data); | ||
5828 | } else { | ||
5829 | // read in the data raw | ||
5830 | for (j = 0; j < tga_comp; ++j) { | ||
5831 | raw_data[j] = stbi__get8(s); | ||
5832 | } | ||
5833 | } | ||
5834 | // clear the reading flag for the next pixel | ||
5835 | read_next_pixel = 0; | ||
5836 | } // end of reading a pixel | ||
5837 | |||
5838 | // copy data | ||
5839 | for (j = 0; j < tga_comp; ++j) | ||
5840 | tga_data[i*tga_comp+j] = raw_data[j]; | ||
5841 | |||
5842 | // in case we're in RLE mode, keep counting down | ||
5843 | --RLE_count; | ||
5844 | } | ||
5845 | // do I need to invert the image? | ||
5846 | if ( tga_inverted ) | ||
5847 | { | ||
5848 | for (j = 0; j*2 < tga_height; ++j) | ||
5849 | { | ||
5850 | int index1 = j * tga_width * tga_comp; | ||
5851 | int index2 = (tga_height - 1 - j) * tga_width * tga_comp; | ||
5852 | for (i = tga_width * tga_comp; i > 0; --i) | ||
5853 | { | ||
5854 | unsigned char temp = tga_data[index1]; | ||
5855 | tga_data[index1] = tga_data[index2]; | ||
5856 | tga_data[index2] = temp; | ||
5857 | ++index1; | ||
5858 | ++index2; | ||
5859 | } | ||
5860 | } | ||
5861 | } | ||
5862 | // clear my palette, if I had one | ||
5863 | if ( tga_palette != NULL ) | ||
5864 | { | ||
5865 | STBI_FREE( tga_palette ); | ||
5866 | } | ||
5867 | } | ||
5868 | |||
5869 | // swap RGB - if the source data was RGB16, it already is in the right order | ||
5870 | if (tga_comp >= 3 && !tga_rgb16) | ||
5871 | { | ||
5872 | unsigned char* tga_pixel = tga_data; | ||
5873 | for (i=0; i < tga_width * tga_height; ++i) | ||
5874 | { | ||
5875 | unsigned char temp = tga_pixel[0]; | ||
5876 | tga_pixel[0] = tga_pixel[2]; | ||
5877 | tga_pixel[2] = temp; | ||
5878 | tga_pixel += tga_comp; | ||
5879 | } | ||
5880 | } | ||
5881 | |||
5882 | // convert to target component count | ||
5883 | if (req_comp && req_comp != tga_comp) | ||
5884 | tga_data = stbi__convert_format(tga_data, tga_comp, req_comp, tga_width, tga_height); | ||
5885 | |||
5886 | // the things I do to get rid of an error message, and yet keep | ||
5887 | // Microsoft's C compilers happy... [8^( | ||
5888 | tga_palette_start = tga_palette_len = tga_palette_bits = | ||
5889 | tga_x_origin = tga_y_origin = 0; | ||
5890 | STBI_NOTUSED(tga_palette_start); | ||
5891 | // OK, done | ||
5892 | return tga_data; | ||
5893 | } | ||
5894 | #endif | ||
5895 | |||
5896 | // ************************************************************************************************* | ||
5897 | // Photoshop PSD loader -- PD by Thatcher Ulrich, integration by Nicolas Schulz, tweaked by STB | ||
5898 | |||
5899 | #ifndef STBI_NO_PSD | ||
5900 | static int stbi__psd_test(stbi__context *s) | ||
5901 | { | ||
5902 | int r = (stbi__get32be(s) == 0x38425053); | ||
5903 | stbi__rewind(s); | ||
5904 | return r; | ||
5905 | } | ||
5906 | |||
5907 | static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount) | ||
5908 | { | ||
5909 | int count, nleft, len; | ||
5910 | |||
5911 | count = 0; | ||
5912 | while ((nleft = pixelCount - count) > 0) { | ||
5913 | len = stbi__get8(s); | ||
5914 | if (len == 128) { | ||
5915 | // No-op. | ||
5916 | } else if (len < 128) { | ||
5917 | // Copy next len+1 bytes literally. | ||
5918 | len++; | ||
5919 | if (len > nleft) return 0; // corrupt data | ||
5920 | count += len; | ||
5921 | while (len) { | ||
5922 | *p = stbi__get8(s); | ||
5923 | p += 4; | ||
5924 | len--; | ||
5925 | } | ||
5926 | } else if (len > 128) { | ||
5927 | stbi_uc val; | ||
5928 | // Next -len+1 bytes in the dest are replicated from next source byte. | ||
5929 | // (Interpret len as a negative 8-bit int.) | ||
5930 | len = 257 - len; | ||
5931 | if (len > nleft) return 0; // corrupt data | ||
5932 | val = stbi__get8(s); | ||
5933 | count += len; | ||
5934 | while (len) { | ||
5935 | *p = val; | ||
5936 | p += 4; | ||
5937 | len--; | ||
5938 | } | ||
5939 | } | ||
5940 | } | ||
5941 | |||
5942 | return 1; | ||
5943 | } | ||
5944 | |||
5945 | static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) | ||
5946 | { | ||
5947 | int pixelCount; | ||
5948 | int channelCount, compression; | ||
5949 | int channel, i; | ||
5950 | int bitdepth; | ||
5951 | int w,h; | ||
5952 | stbi_uc *out; | ||
5953 | STBI_NOTUSED(ri); | ||
5954 | |||
5955 | // Check identifier | ||
5956 | if (stbi__get32be(s) != 0x38425053) // "8BPS" | ||
5957 | return stbi__errpuc("not PSD", "Corrupt PSD image"); | ||
5958 | |||
5959 | // Check file type version. | ||
5960 | if (stbi__get16be(s) != 1) | ||
5961 | return stbi__errpuc("wrong version", "Unsupported version of PSD image"); | ||
5962 | |||
5963 | // Skip 6 reserved bytes. | ||
5964 | stbi__skip(s, 6 ); | ||
5965 | |||
5966 | // Read the number of channels (R, G, B, A, etc). | ||
5967 | channelCount = stbi__get16be(s); | ||
5968 | if (channelCount < 0 || channelCount > 16) | ||
5969 | return stbi__errpuc("wrong channel count", "Unsupported number of channels in PSD image"); | ||
5970 | |||
5971 | // Read the rows and columns of the image. | ||
5972 | h = stbi__get32be(s); | ||
5973 | w = stbi__get32be(s); | ||
5974 | |||
5975 | if (h > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
5976 | if (w > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
5977 | |||
5978 | // Make sure the depth is 8 bits. | ||
5979 | bitdepth = stbi__get16be(s); | ||
5980 | if (bitdepth != 8 && bitdepth != 16) | ||
5981 | return stbi__errpuc("unsupported bit depth", "PSD bit depth is not 8 or 16 bit"); | ||
5982 | |||
5983 | // Make sure the color mode is RGB. | ||
5984 | // Valid options are: | ||
5985 | // 0: Bitmap | ||
5986 | // 1: Grayscale | ||
5987 | // 2: Indexed color | ||
5988 | // 3: RGB color | ||
5989 | // 4: CMYK color | ||
5990 | // 7: Multichannel | ||
5991 | // 8: Duotone | ||
5992 | // 9: Lab color | ||
5993 | if (stbi__get16be(s) != 3) | ||
5994 | return stbi__errpuc("wrong color format", "PSD is not in RGB color format"); | ||
5995 | |||
5996 | // Skip the Mode Data. (It's the palette for indexed color; other info for other modes.) | ||
5997 | stbi__skip(s,stbi__get32be(s) ); | ||
5998 | |||
5999 | // Skip the image resources. (resolution, pen tool paths, etc) | ||
6000 | stbi__skip(s, stbi__get32be(s) ); | ||
6001 | |||
6002 | // Skip the reserved data. | ||
6003 | stbi__skip(s, stbi__get32be(s) ); | ||
6004 | |||
6005 | // Find out if the data is compressed. | ||
6006 | // Known values: | ||
6007 | // 0: no compression | ||
6008 | // 1: RLE compressed | ||
6009 | compression = stbi__get16be(s); | ||
6010 | if (compression > 1) | ||
6011 | return stbi__errpuc("bad compression", "PSD has an unknown compression format"); | ||
6012 | |||
6013 | // Check size | ||
6014 | if (!stbi__mad3sizes_valid(4, w, h, 0)) | ||
6015 | return stbi__errpuc("too large", "Corrupt PSD"); | ||
6016 | |||
6017 | // Create the destination image. | ||
6018 | |||
6019 | if (!compression && bitdepth == 16 && bpc == 16) { | ||
6020 | out = (stbi_uc *) stbi__malloc_mad3(8, w, h, 0); | ||
6021 | ri->bits_per_channel = 16; | ||
6022 | } else | ||
6023 | out = (stbi_uc *) stbi__malloc(4 * w*h); | ||
6024 | |||
6025 | if (!out) return stbi__errpuc("outofmem", "Out of memory"); | ||
6026 | pixelCount = w*h; | ||
6027 | |||
6028 | // Initialize the data to zero. | ||
6029 | //memset( out, 0, pixelCount * 4 ); | ||
6030 | |||
6031 | // Finally, the image data. | ||
6032 | if (compression) { | ||
6033 | // RLE as used by .PSD and .TIFF | ||
6034 | // Loop until you get the number of unpacked bytes you are expecting: | ||
6035 | // Read the next source byte into n. | ||
6036 | // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally. | ||
6037 | // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times. | ||
6038 | // Else if n is 128, noop. | ||
6039 | // Endloop | ||
6040 | |||
6041 | // The RLE-compressed data is preceded by a 2-byte data count for each row in the data, | ||
6042 | // which we're going to just skip. | ||
6043 | stbi__skip(s, h * channelCount * 2 ); | ||
6044 | |||
6045 | // Read the RLE data by channel. | ||
6046 | for (channel = 0; channel < 4; channel++) { | ||
6047 | stbi_uc *p; | ||
6048 | |||
6049 | p = out+channel; | ||
6050 | if (channel >= channelCount) { | ||
6051 | // Fill this channel with default data. | ||
6052 | for (i = 0; i < pixelCount; i++, p += 4) | ||
6053 | *p = (channel == 3 ? 255 : 0); | ||
6054 | } else { | ||
6055 | // Read the RLE data. | ||
6056 | if (!stbi__psd_decode_rle(s, p, pixelCount)) { | ||
6057 | STBI_FREE(out); | ||
6058 | return stbi__errpuc("corrupt", "bad RLE data"); | ||
6059 | } | ||
6060 | } | ||
6061 | } | ||
6062 | |||
6063 | } else { | ||
6064 | // We're at the raw image data. It's each channel in order (Red, Green, Blue, Alpha, ...) | ||
6065 | // where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image. | ||
6066 | |||
6067 | // Read the data by channel. | ||
6068 | for (channel = 0; channel < 4; channel++) { | ||
6069 | if (channel >= channelCount) { | ||
6070 | // Fill this channel with default data. | ||
6071 | if (bitdepth == 16 && bpc == 16) { | ||
6072 | stbi__uint16 *q = ((stbi__uint16 *) out) + channel; | ||
6073 | stbi__uint16 val = channel == 3 ? 65535 : 0; | ||
6074 | for (i = 0; i < pixelCount; i++, q += 4) | ||
6075 | *q = val; | ||
6076 | } else { | ||
6077 | stbi_uc *p = out+channel; | ||
6078 | stbi_uc val = channel == 3 ? 255 : 0; | ||
6079 | for (i = 0; i < pixelCount; i++, p += 4) | ||
6080 | *p = val; | ||
6081 | } | ||
6082 | } else { | ||
6083 | if (ri->bits_per_channel == 16) { // output bpc | ||
6084 | stbi__uint16 *q = ((stbi__uint16 *) out) + channel; | ||
6085 | for (i = 0; i < pixelCount; i++, q += 4) | ||
6086 | *q = (stbi__uint16) stbi__get16be(s); | ||
6087 | } else { | ||
6088 | stbi_uc *p = out+channel; | ||
6089 | if (bitdepth == 16) { // input bpc | ||
6090 | for (i = 0; i < pixelCount; i++, p += 4) | ||
6091 | *p = (stbi_uc) (stbi__get16be(s) >> 8); | ||
6092 | } else { | ||
6093 | for (i = 0; i < pixelCount; i++, p += 4) | ||
6094 | *p = stbi__get8(s); | ||
6095 | } | ||
6096 | } | ||
6097 | } | ||
6098 | } | ||
6099 | } | ||
6100 | |||
6101 | // remove weird white matte from PSD | ||
6102 | if (channelCount >= 4) { | ||
6103 | if (ri->bits_per_channel == 16) { | ||
6104 | for (i=0; i < w*h; ++i) { | ||
6105 | stbi__uint16 *pixel = (stbi__uint16 *) out + 4*i; | ||
6106 | if (pixel[3] != 0 && pixel[3] != 65535) { | ||
6107 | float a = pixel[3] / 65535.0f; | ||
6108 | float ra = 1.0f / a; | ||
6109 | float inv_a = 65535.0f * (1 - ra); | ||
6110 | pixel[0] = (stbi__uint16) (pixel[0]*ra + inv_a); | ||
6111 | pixel[1] = (stbi__uint16) (pixel[1]*ra + inv_a); | ||
6112 | pixel[2] = (stbi__uint16) (pixel[2]*ra + inv_a); | ||
6113 | } | ||
6114 | } | ||
6115 | } else { | ||
6116 | for (i=0; i < w*h; ++i) { | ||
6117 | unsigned char *pixel = out + 4*i; | ||
6118 | if (pixel[3] != 0 && pixel[3] != 255) { | ||
6119 | float a = pixel[3] / 255.0f; | ||
6120 | float ra = 1.0f / a; | ||
6121 | float inv_a = 255.0f * (1 - ra); | ||
6122 | pixel[0] = (unsigned char) (pixel[0]*ra + inv_a); | ||
6123 | pixel[1] = (unsigned char) (pixel[1]*ra + inv_a); | ||
6124 | pixel[2] = (unsigned char) (pixel[2]*ra + inv_a); | ||
6125 | } | ||
6126 | } | ||
6127 | } | ||
6128 | } | ||
6129 | |||
6130 | // convert to desired output format | ||
6131 | if (req_comp && req_comp != 4) { | ||
6132 | if (ri->bits_per_channel == 16) | ||
6133 | out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, 4, req_comp, w, h); | ||
6134 | else | ||
6135 | out = stbi__convert_format(out, 4, req_comp, w, h); | ||
6136 | if (out == NULL) return out; // stbi__convert_format frees input on failure | ||
6137 | } | ||
6138 | |||
6139 | if (comp) *comp = 4; | ||
6140 | *y = h; | ||
6141 | *x = w; | ||
6142 | |||
6143 | return out; | ||
6144 | } | ||
6145 | #endif | ||
6146 | |||
6147 | // ************************************************************************************************* | ||
6148 | // Softimage PIC loader | ||
6149 | // by Tom Seddon | ||
6150 | // | ||
6151 | // See http://softimage.wiki.softimage.com/index.php/INFO:_PIC_file_format | ||
6152 | // See http://ozviz.wasp.uwa.edu.au/~pbourke/dataformats/softimagepic/ | ||
6153 | |||
6154 | #ifndef STBI_NO_PIC | ||
6155 | static int stbi__pic_is4(stbi__context *s,const char *str) | ||
6156 | { | ||
6157 | int i; | ||
6158 | for (i=0; i<4; ++i) | ||
6159 | if (stbi__get8(s) != (stbi_uc)str[i]) | ||
6160 | return 0; | ||
6161 | |||
6162 | return 1; | ||
6163 | } | ||
6164 | |||
6165 | static int stbi__pic_test_core(stbi__context *s) | ||
6166 | { | ||
6167 | int i; | ||
6168 | |||
6169 | if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) | ||
6170 | return 0; | ||
6171 | |||
6172 | for(i=0;i<84;++i) | ||
6173 | stbi__get8(s); | ||
6174 | |||
6175 | if (!stbi__pic_is4(s,"PICT")) | ||
6176 | return 0; | ||
6177 | |||
6178 | return 1; | ||
6179 | } | ||
6180 | |||
6181 | typedef struct | ||
6182 | { | ||
6183 | stbi_uc size,type,channel; | ||
6184 | } stbi__pic_packet; | ||
6185 | |||
6186 | static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest) | ||
6187 | { | ||
6188 | int mask=0x80, i; | ||
6189 | |||
6190 | for (i=0; i<4; ++i, mask>>=1) { | ||
6191 | if (channel & mask) { | ||
6192 | if (stbi__at_eof(s)) return stbi__errpuc("bad file","PIC file too short"); | ||
6193 | dest[i]=stbi__get8(s); | ||
6194 | } | ||
6195 | } | ||
6196 | |||
6197 | return dest; | ||
6198 | } | ||
6199 | |||
6200 | static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src) | ||
6201 | { | ||
6202 | int mask=0x80,i; | ||
6203 | |||
6204 | for (i=0;i<4; ++i, mask>>=1) | ||
6205 | if (channel&mask) | ||
6206 | dest[i]=src[i]; | ||
6207 | } | ||
6208 | |||
6209 | static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int height,int *comp, stbi_uc *result) | ||
6210 | { | ||
6211 | int act_comp=0,num_packets=0,y,chained; | ||
6212 | stbi__pic_packet packets[10]; | ||
6213 | |||
6214 | // this will (should...) cater for even some bizarre stuff like having data | ||
6215 | // for the same channel in multiple packets. | ||
6216 | do { | ||
6217 | stbi__pic_packet *packet; | ||
6218 | |||
6219 | if (num_packets==sizeof(packets)/sizeof(packets[0])) | ||
6220 | return stbi__errpuc("bad format","too many packets"); | ||
6221 | |||
6222 | packet = &packets[num_packets++]; | ||
6223 | |||
6224 | chained = stbi__get8(s); | ||
6225 | packet->size = stbi__get8(s); | ||
6226 | packet->type = stbi__get8(s); | ||
6227 | packet->channel = stbi__get8(s); | ||
6228 | |||
6229 | act_comp |= packet->channel; | ||
6230 | |||
6231 | if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (reading packets)"); | ||
6232 | if (packet->size != 8) return stbi__errpuc("bad format","packet isn't 8bpp"); | ||
6233 | } while (chained); | ||
6234 | |||
6235 | *comp = (act_comp & 0x10 ? 4 : 3); // has alpha channel? | ||
6236 | |||
6237 | for(y=0; y<height; ++y) { | ||
6238 | int packet_idx; | ||
6239 | |||
6240 | for(packet_idx=0; packet_idx < num_packets; ++packet_idx) { | ||
6241 | stbi__pic_packet *packet = &packets[packet_idx]; | ||
6242 | stbi_uc *dest = result+y*width*4; | ||
6243 | |||
6244 | switch (packet->type) { | ||
6245 | default: | ||
6246 | return stbi__errpuc("bad format","packet has bad compression type"); | ||
6247 | |||
6248 | case 0: {//uncompressed | ||
6249 | int x; | ||
6250 | |||
6251 | for(x=0;x<width;++x, dest+=4) | ||
6252 | if (!stbi__readval(s,packet->channel,dest)) | ||
6253 | return 0; | ||
6254 | break; | ||
6255 | } | ||
6256 | |||
6257 | case 1://Pure RLE | ||
6258 | { | ||
6259 | int left=width, i; | ||
6260 | |||
6261 | while (left>0) { | ||
6262 | stbi_uc count,value[4]; | ||
6263 | |||
6264 | count=stbi__get8(s); | ||
6265 | if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pure read count)"); | ||
6266 | |||
6267 | if (count > left) | ||
6268 | count = (stbi_uc) left; | ||
6269 | |||
6270 | if (!stbi__readval(s,packet->channel,value)) return 0; | ||
6271 | |||
6272 | for(i=0; i<count; ++i,dest+=4) | ||
6273 | stbi__copyval(packet->channel,dest,value); | ||
6274 | left -= count; | ||
6275 | } | ||
6276 | } | ||
6277 | break; | ||
6278 | |||
6279 | case 2: {//Mixed RLE | ||
6280 | int left=width; | ||
6281 | while (left>0) { | ||
6282 | int count = stbi__get8(s), i; | ||
6283 | if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (mixed read count)"); | ||
6284 | |||
6285 | if (count >= 128) { // Repeated | ||
6286 | stbi_uc value[4]; | ||
6287 | |||
6288 | if (count==128) | ||
6289 | count = stbi__get16be(s); | ||
6290 | else | ||
6291 | count -= 127; | ||
6292 | if (count > left) | ||
6293 | return stbi__errpuc("bad file","scanline overrun"); | ||
6294 | |||
6295 | if (!stbi__readval(s,packet->channel,value)) | ||
6296 | return 0; | ||
6297 | |||
6298 | for(i=0;i<count;++i, dest += 4) | ||
6299 | stbi__copyval(packet->channel,dest,value); | ||
6300 | } else { // Raw | ||
6301 | ++count; | ||
6302 | if (count>left) return stbi__errpuc("bad file","scanline overrun"); | ||
6303 | |||
6304 | for(i=0;i<count;++i, dest+=4) | ||
6305 | if (!stbi__readval(s,packet->channel,dest)) | ||
6306 | return 0; | ||
6307 | } | ||
6308 | left-=count; | ||
6309 | } | ||
6310 | break; | ||
6311 | } | ||
6312 | } | ||
6313 | } | ||
6314 | } | ||
6315 | |||
6316 | return result; | ||
6317 | } | ||
6318 | |||
6319 | static void *stbi__pic_load(stbi__context *s,int *px,int *py,int *comp,int req_comp, stbi__result_info *ri) | ||
6320 | { | ||
6321 | stbi_uc *result; | ||
6322 | int i, x,y, internal_comp; | ||
6323 | STBI_NOTUSED(ri); | ||
6324 | |||
6325 | if (!comp) comp = &internal_comp; | ||
6326 | |||
6327 | for (i=0; i<92; ++i) | ||
6328 | stbi__get8(s); | ||
6329 | |||
6330 | x = stbi__get16be(s); | ||
6331 | y = stbi__get16be(s); | ||
6332 | |||
6333 | if (y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
6334 | if (x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
6335 | |||
6336 | if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pic header)"); | ||
6337 | if (!stbi__mad3sizes_valid(x, y, 4, 0)) return stbi__errpuc("too large", "PIC image too large to decode"); | ||
6338 | |||
6339 | stbi__get32be(s); //skip `ratio' | ||
6340 | stbi__get16be(s); //skip `fields' | ||
6341 | stbi__get16be(s); //skip `pad' | ||
6342 | |||
6343 | // intermediate buffer is RGBA | ||
6344 | result = (stbi_uc *) stbi__malloc_mad3(x, y, 4, 0); | ||
6345 | memset(result, 0xff, x*y*4); | ||
6346 | |||
6347 | if (!stbi__pic_load_core(s,x,y,comp, result)) { | ||
6348 | STBI_FREE(result); | ||
6349 | result=0; | ||
6350 | } | ||
6351 | *px = x; | ||
6352 | *py = y; | ||
6353 | if (req_comp == 0) req_comp = *comp; | ||
6354 | result=stbi__convert_format(result,4,req_comp,x,y); | ||
6355 | |||
6356 | return result; | ||
6357 | } | ||
6358 | |||
6359 | static int stbi__pic_test(stbi__context *s) | ||
6360 | { | ||
6361 | int r = stbi__pic_test_core(s); | ||
6362 | stbi__rewind(s); | ||
6363 | return r; | ||
6364 | } | ||
6365 | #endif | ||
6366 | |||
6367 | // ************************************************************************************************* | ||
6368 | // GIF loader -- public domain by Jean-Marc Lienher -- simplified/shrunk by stb | ||
6369 | |||
6370 | #ifndef STBI_NO_GIF | ||
6371 | typedef struct | ||
6372 | { | ||
6373 | stbi__int16 prefix; | ||
6374 | stbi_uc first; | ||
6375 | stbi_uc suffix; | ||
6376 | } stbi__gif_lzw; | ||
6377 | |||
6378 | typedef struct | ||
6379 | { | ||
6380 | int w,h; | ||
6381 | stbi_uc *out; // output buffer (always 4 components) | ||
6382 | stbi_uc *background; // The current "background" as far as a gif is concerned | ||
6383 | stbi_uc *history; | ||
6384 | int flags, bgindex, ratio, transparent, eflags; | ||
6385 | stbi_uc pal[256][4]; | ||
6386 | stbi_uc lpal[256][4]; | ||
6387 | stbi__gif_lzw codes[8192]; | ||
6388 | stbi_uc *color_table; | ||
6389 | int parse, step; | ||
6390 | int lflags; | ||
6391 | int start_x, start_y; | ||
6392 | int max_x, max_y; | ||
6393 | int cur_x, cur_y; | ||
6394 | int line_size; | ||
6395 | int delay; | ||
6396 | } stbi__gif; | ||
6397 | |||
6398 | static int stbi__gif_test_raw(stbi__context *s) | ||
6399 | { | ||
6400 | int sz; | ||
6401 | if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0; | ||
6402 | sz = stbi__get8(s); | ||
6403 | if (sz != '9' && sz != '7') return 0; | ||
6404 | if (stbi__get8(s) != 'a') return 0; | ||
6405 | return 1; | ||
6406 | } | ||
6407 | |||
6408 | static int stbi__gif_test(stbi__context *s) | ||
6409 | { | ||
6410 | int r = stbi__gif_test_raw(s); | ||
6411 | stbi__rewind(s); | ||
6412 | return r; | ||
6413 | } | ||
6414 | |||
6415 | static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256][4], int num_entries, int transp) | ||
6416 | { | ||
6417 | int i; | ||
6418 | for (i=0; i < num_entries; ++i) { | ||
6419 | pal[i][2] = stbi__get8(s); | ||
6420 | pal[i][1] = stbi__get8(s); | ||
6421 | pal[i][0] = stbi__get8(s); | ||
6422 | pal[i][3] = transp == i ? 0 : 255; | ||
6423 | } | ||
6424 | } | ||
6425 | |||
6426 | static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, int is_info) | ||
6427 | { | ||
6428 | stbi_uc version; | ||
6429 | if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') | ||
6430 | return stbi__err("not GIF", "Corrupt GIF"); | ||
6431 | |||
6432 | version = stbi__get8(s); | ||
6433 | if (version != '7' && version != '9') return stbi__err("not GIF", "Corrupt GIF"); | ||
6434 | if (stbi__get8(s) != 'a') return stbi__err("not GIF", "Corrupt GIF"); | ||
6435 | |||
6436 | stbi__g_failure_reason = ""; | ||
6437 | g->w = stbi__get16le(s); | ||
6438 | g->h = stbi__get16le(s); | ||
6439 | g->flags = stbi__get8(s); | ||
6440 | g->bgindex = stbi__get8(s); | ||
6441 | g->ratio = stbi__get8(s); | ||
6442 | g->transparent = -1; | ||
6443 | |||
6444 | if (g->w > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); | ||
6445 | if (g->h > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); | ||
6446 | |||
6447 | if (comp != 0) *comp = 4; // can't actually tell whether it's 3 or 4 until we parse the comments | ||
6448 | |||
6449 | if (is_info) return 1; | ||
6450 | |||
6451 | if (g->flags & 0x80) | ||
6452 | stbi__gif_parse_colortable(s,g->pal, 2 << (g->flags & 7), -1); | ||
6453 | |||
6454 | return 1; | ||
6455 | } | ||
6456 | |||
6457 | static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp) | ||
6458 | { | ||
6459 | stbi__gif* g = (stbi__gif*) stbi__malloc(sizeof(stbi__gif)); | ||
6460 | if (!stbi__gif_header(s, g, comp, 1)) { | ||
6461 | STBI_FREE(g); | ||
6462 | stbi__rewind( s ); | ||
6463 | return 0; | ||
6464 | } | ||
6465 | if (x) *x = g->w; | ||
6466 | if (y) *y = g->h; | ||
6467 | STBI_FREE(g); | ||
6468 | return 1; | ||
6469 | } | ||
6470 | |||
6471 | static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code) | ||
6472 | { | ||
6473 | stbi_uc *p, *c; | ||
6474 | int idx; | ||
6475 | |||
6476 | // recurse to decode the prefixes, since the linked-list is backwards, | ||
6477 | // and working backwards through an interleaved image would be nasty | ||
6478 | if (g->codes[code].prefix >= 0) | ||
6479 | stbi__out_gif_code(g, g->codes[code].prefix); | ||
6480 | |||
6481 | if (g->cur_y >= g->max_y) return; | ||
6482 | |||
6483 | idx = g->cur_x + g->cur_y; | ||
6484 | p = &g->out[idx]; | ||
6485 | g->history[idx / 4] = 1; | ||
6486 | |||
6487 | c = &g->color_table[g->codes[code].suffix * 4]; | ||
6488 | if (c[3] > 128) { // don't render transparent pixels; | ||
6489 | p[0] = c[2]; | ||
6490 | p[1] = c[1]; | ||
6491 | p[2] = c[0]; | ||
6492 | p[3] = c[3]; | ||
6493 | } | ||
6494 | g->cur_x += 4; | ||
6495 | |||
6496 | if (g->cur_x >= g->max_x) { | ||
6497 | g->cur_x = g->start_x; | ||
6498 | g->cur_y += g->step; | ||
6499 | |||
6500 | while (g->cur_y >= g->max_y && g->parse > 0) { | ||
6501 | g->step = (1 << g->parse) * g->line_size; | ||
6502 | g->cur_y = g->start_y + (g->step >> 1); | ||
6503 | --g->parse; | ||
6504 | } | ||
6505 | } | ||
6506 | } | ||
6507 | |||
6508 | static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g) | ||
6509 | { | ||
6510 | stbi_uc lzw_cs; | ||
6511 | stbi__int32 len, init_code; | ||
6512 | stbi__uint32 first; | ||
6513 | stbi__int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear; | ||
6514 | stbi__gif_lzw *p; | ||
6515 | |||
6516 | lzw_cs = stbi__get8(s); | ||
6517 | if (lzw_cs > 12) return NULL; | ||
6518 | clear = 1 << lzw_cs; | ||
6519 | first = 1; | ||
6520 | codesize = lzw_cs + 1; | ||
6521 | codemask = (1 << codesize) - 1; | ||
6522 | bits = 0; | ||
6523 | valid_bits = 0; | ||
6524 | for (init_code = 0; init_code < clear; init_code++) { | ||
6525 | g->codes[init_code].prefix = -1; | ||
6526 | g->codes[init_code].first = (stbi_uc) init_code; | ||
6527 | g->codes[init_code].suffix = (stbi_uc) init_code; | ||
6528 | } | ||
6529 | |||
6530 | // support no starting clear code | ||
6531 | avail = clear+2; | ||
6532 | oldcode = -1; | ||
6533 | |||
6534 | len = 0; | ||
6535 | for(;;) { | ||
6536 | if (valid_bits < codesize) { | ||
6537 | if (len == 0) { | ||
6538 | len = stbi__get8(s); // start new block | ||
6539 | if (len == 0) | ||
6540 | return g->out; | ||
6541 | } | ||
6542 | --len; | ||
6543 | bits |= (stbi__int32) stbi__get8(s) << valid_bits; | ||
6544 | valid_bits += 8; | ||
6545 | } else { | ||
6546 | stbi__int32 code = bits & codemask; | ||
6547 | bits >>= codesize; | ||
6548 | valid_bits -= codesize; | ||
6549 | // @OPTIMIZE: is there some way we can accelerate the non-clear path? | ||
6550 | if (code == clear) { // clear code | ||
6551 | codesize = lzw_cs + 1; | ||
6552 | codemask = (1 << codesize) - 1; | ||
6553 | avail = clear + 2; | ||
6554 | oldcode = -1; | ||
6555 | first = 0; | ||
6556 | } else if (code == clear + 1) { // end of stream code | ||
6557 | stbi__skip(s, len); | ||
6558 | while ((len = stbi__get8(s)) > 0) | ||
6559 | stbi__skip(s,len); | ||
6560 | return g->out; | ||
6561 | } else if (code <= avail) { | ||
6562 | if (first) { | ||
6563 | return stbi__errpuc("no clear code", "Corrupt GIF"); | ||
6564 | } | ||
6565 | |||
6566 | if (oldcode >= 0) { | ||
6567 | p = &g->codes[avail++]; | ||
6568 | if (avail > 8192) { | ||
6569 | return stbi__errpuc("too many codes", "Corrupt GIF"); | ||
6570 | } | ||
6571 | |||
6572 | p->prefix = (stbi__int16) oldcode; | ||
6573 | p->first = g->codes[oldcode].first; | ||
6574 | p->suffix = (code == avail) ? p->first : g->codes[code].first; | ||
6575 | } else if (code == avail) | ||
6576 | return stbi__errpuc("illegal code in raster", "Corrupt GIF"); | ||
6577 | |||
6578 | stbi__out_gif_code(g, (stbi__uint16) code); | ||
6579 | |||
6580 | if ((avail & codemask) == 0 && avail <= 0x0FFF) { | ||
6581 | codesize++; | ||
6582 | codemask = (1 << codesize) - 1; | ||
6583 | } | ||
6584 | |||
6585 | oldcode = code; | ||
6586 | } else { | ||
6587 | return stbi__errpuc("illegal code in raster", "Corrupt GIF"); | ||
6588 | } | ||
6589 | } | ||
6590 | } | ||
6591 | } | ||
6592 | |||
6593 | // this function is designed to support animated gifs, although stb_image doesn't support it | ||
6594 | // two back is the image from two frames ago, used for a very specific disposal format | ||
6595 | static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, int req_comp, stbi_uc *two_back) | ||
6596 | { | ||
6597 | int dispose; | ||
6598 | int first_frame; | ||
6599 | int pi; | ||
6600 | int pcount; | ||
6601 | STBI_NOTUSED(req_comp); | ||
6602 | |||
6603 | // on first frame, any non-written pixels get the background colour (non-transparent) | ||
6604 | first_frame = 0; | ||
6605 | if (g->out == 0) { | ||
6606 | if (!stbi__gif_header(s, g, comp,0)) return 0; // stbi__g_failure_reason set by stbi__gif_header | ||
6607 | if (!stbi__mad3sizes_valid(4, g->w, g->h, 0)) | ||
6608 | return stbi__errpuc("too large", "GIF image is too large"); | ||
6609 | pcount = g->w * g->h; | ||
6610 | g->out = (stbi_uc *) stbi__malloc(4 * pcount); | ||
6611 | g->background = (stbi_uc *) stbi__malloc(4 * pcount); | ||
6612 | g->history = (stbi_uc *) stbi__malloc(pcount); | ||
6613 | if (!g->out || !g->background || !g->history) | ||
6614 | return stbi__errpuc("outofmem", "Out of memory"); | ||
6615 | |||
6616 | // image is treated as "transparent" at the start - ie, nothing overwrites the current background; | ||
6617 | // background colour is only used for pixels that are not rendered first frame, after that "background" | ||
6618 | // color refers to the color that was there the previous frame. | ||
6619 | memset(g->out, 0x00, 4 * pcount); | ||
6620 | memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent) | ||
6621 | memset(g->history, 0x00, pcount); // pixels that were affected previous frame | ||
6622 | first_frame = 1; | ||
6623 | } else { | ||
6624 | // second frame - how do we dispose of the previous one? | ||
6625 | dispose = (g->eflags & 0x1C) >> 2; | ||
6626 | pcount = g->w * g->h; | ||
6627 | |||
6628 | if ((dispose == 3) && (two_back == 0)) { | ||
6629 | dispose = 2; // if I don't have an image to revert back to, default to the old background | ||
6630 | } | ||
6631 | |||
6632 | if (dispose == 3) { // use previous graphic | ||
6633 | for (pi = 0; pi < pcount; ++pi) { | ||
6634 | if (g->history[pi]) { | ||
6635 | memcpy( &g->out[pi * 4], &two_back[pi * 4], 4 ); | ||
6636 | } | ||
6637 | } | ||
6638 | } else if (dispose == 2) { | ||
6639 | // restore what was changed last frame to background before that frame; | ||
6640 | for (pi = 0; pi < pcount; ++pi) { | ||
6641 | if (g->history[pi]) { | ||
6642 | memcpy( &g->out[pi * 4], &g->background[pi * 4], 4 ); | ||
6643 | } | ||
6644 | } | ||
6645 | } else { | ||
6646 | // This is a non-disposal case eithe way, so just | ||
6647 | // leave the pixels as is, and they will become the new background | ||
6648 | // 1: do not dispose | ||
6649 | // 0: not specified. | ||
6650 | } | ||
6651 | |||
6652 | // background is what out is after the undoing of the previou frame; | ||
6653 | memcpy( g->background, g->out, 4 * g->w * g->h ); | ||
6654 | } | ||
6655 | |||
6656 | // clear my history; | ||
6657 | memset( g->history, 0x00, g->w * g->h ); // pixels that were affected previous frame | ||
6658 | |||
6659 | for (;;) { | ||
6660 | int tag = stbi__get8(s); | ||
6661 | switch (tag) { | ||
6662 | case 0x2C: /* Image Descriptor */ | ||
6663 | { | ||
6664 | stbi__int32 x, y, w, h; | ||
6665 | stbi_uc *o; | ||
6666 | |||
6667 | x = stbi__get16le(s); | ||
6668 | y = stbi__get16le(s); | ||
6669 | w = stbi__get16le(s); | ||
6670 | h = stbi__get16le(s); | ||
6671 | if (((x + w) > (g->w)) || ((y + h) > (g->h))) | ||
6672 | return stbi__errpuc("bad Image Descriptor", "Corrupt GIF"); | ||
6673 | |||
6674 | g->line_size = g->w * 4; | ||
6675 | g->start_x = x * 4; | ||
6676 | g->start_y = y * g->line_size; | ||
6677 | g->max_x = g->start_x + w * 4; | ||
6678 | g->max_y = g->start_y + h * g->line_size; | ||
6679 | g->cur_x = g->start_x; | ||
6680 | g->cur_y = g->start_y; | ||
6681 | |||
6682 | // if the width of the specified rectangle is 0, that means | ||
6683 | // we may not see *any* pixels or the image is malformed; | ||
6684 | // to make sure this is caught, move the current y down to | ||
6685 | // max_y (which is what out_gif_code checks). | ||
6686 | if (w == 0) | ||
6687 | g->cur_y = g->max_y; | ||
6688 | |||
6689 | g->lflags = stbi__get8(s); | ||
6690 | |||
6691 | if (g->lflags & 0x40) { | ||
6692 | g->step = 8 * g->line_size; // first interlaced spacing | ||
6693 | g->parse = 3; | ||
6694 | } else { | ||
6695 | g->step = g->line_size; | ||
6696 | g->parse = 0; | ||
6697 | } | ||
6698 | |||
6699 | if (g->lflags & 0x80) { | ||
6700 | stbi__gif_parse_colortable(s,g->lpal, 2 << (g->lflags & 7), g->eflags & 0x01 ? g->transparent : -1); | ||
6701 | g->color_table = (stbi_uc *) g->lpal; | ||
6702 | } else if (g->flags & 0x80) { | ||
6703 | g->color_table = (stbi_uc *) g->pal; | ||
6704 | } else | ||
6705 | return stbi__errpuc("missing color table", "Corrupt GIF"); | ||
6706 | |||
6707 | o = stbi__process_gif_raster(s, g); | ||
6708 | if (!o) return NULL; | ||
6709 | |||
6710 | // if this was the first frame, | ||
6711 | pcount = g->w * g->h; | ||
6712 | if (first_frame && (g->bgindex > 0)) { | ||
6713 | // if first frame, any pixel not drawn to gets the background color | ||
6714 | for (pi = 0; pi < pcount; ++pi) { | ||
6715 | if (g->history[pi] == 0) { | ||
6716 | g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be; | ||
6717 | memcpy( &g->out[pi * 4], &g->pal[g->bgindex], 4 ); | ||
6718 | } | ||
6719 | } | ||
6720 | } | ||
6721 | |||
6722 | return o; | ||
6723 | } | ||
6724 | |||
6725 | case 0x21: // Comment Extension. | ||
6726 | { | ||
6727 | int len; | ||
6728 | int ext = stbi__get8(s); | ||
6729 | if (ext == 0xF9) { // Graphic Control Extension. | ||
6730 | len = stbi__get8(s); | ||
6731 | if (len == 4) { | ||
6732 | g->eflags = stbi__get8(s); | ||
6733 | g->delay = 10 * stbi__get16le(s); // delay - 1/100th of a second, saving as 1/1000ths. | ||
6734 | |||
6735 | // unset old transparent | ||
6736 | if (g->transparent >= 0) { | ||
6737 | g->pal[g->transparent][3] = 255; | ||
6738 | } | ||
6739 | if (g->eflags & 0x01) { | ||
6740 | g->transparent = stbi__get8(s); | ||
6741 | if (g->transparent >= 0) { | ||
6742 | g->pal[g->transparent][3] = 0; | ||
6743 | } | ||
6744 | } else { | ||
6745 | // don't need transparent | ||
6746 | stbi__skip(s, 1); | ||
6747 | g->transparent = -1; | ||
6748 | } | ||
6749 | } else { | ||
6750 | stbi__skip(s, len); | ||
6751 | break; | ||
6752 | } | ||
6753 | } | ||
6754 | while ((len = stbi__get8(s)) != 0) { | ||
6755 | stbi__skip(s, len); | ||
6756 | } | ||
6757 | break; | ||
6758 | } | ||
6759 | |||
6760 | case 0x3B: // gif stream termination code | ||
6761 | return (stbi_uc *) s; // using '1' causes warning on some compilers | ||
6762 | |||
6763 | default: | ||
6764 | return stbi__errpuc("unknown code", "Corrupt GIF"); | ||
6765 | } | ||
6766 | } | ||
6767 | } | ||
6768 | |||
6769 | static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp) | ||
6770 | { | ||
6771 | if (stbi__gif_test(s)) { | ||
6772 | int layers = 0; | ||
6773 | stbi_uc *u = 0; | ||
6774 | stbi_uc *out = 0; | ||
6775 | stbi_uc *two_back = 0; | ||
6776 | stbi__gif g; | ||
6777 | int stride; | ||
6778 | int out_size = 0; | ||
6779 | int delays_size = 0; | ||
6780 | memset(&g, 0, sizeof(g)); | ||
6781 | if (delays) { | ||
6782 | *delays = 0; | ||
6783 | } | ||
6784 | |||
6785 | do { | ||
6786 | u = stbi__gif_load_next(s, &g, comp, req_comp, two_back); | ||
6787 | if (u == (stbi_uc *) s) u = 0; // end of animated gif marker | ||
6788 | |||
6789 | if (u) { | ||
6790 | *x = g.w; | ||
6791 | *y = g.h; | ||
6792 | ++layers; | ||
6793 | stride = g.w * g.h * 4; | ||
6794 | |||
6795 | if (out) { | ||
6796 | void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride ); | ||
6797 | if (NULL == tmp) { | ||
6798 | STBI_FREE(g.out); | ||
6799 | STBI_FREE(g.history); | ||
6800 | STBI_FREE(g.background); | ||
6801 | return stbi__errpuc("outofmem", "Out of memory"); | ||
6802 | } | ||
6803 | else { | ||
6804 | out = (stbi_uc*) tmp; | ||
6805 | out_size = layers * stride; | ||
6806 | } | ||
6807 | |||
6808 | if (delays) { | ||
6809 | *delays = (int*) STBI_REALLOC_SIZED( *delays, delays_size, sizeof(int) * layers ); | ||
6810 | delays_size = layers * sizeof(int); | ||
6811 | } | ||
6812 | } else { | ||
6813 | out = (stbi_uc*)stbi__malloc( layers * stride ); | ||
6814 | out_size = layers * stride; | ||
6815 | if (delays) { | ||
6816 | *delays = (int*) stbi__malloc( layers * sizeof(int) ); | ||
6817 | delays_size = layers * sizeof(int); | ||
6818 | } | ||
6819 | } | ||
6820 | memcpy( out + ((layers - 1) * stride), u, stride ); | ||
6821 | if (layers >= 2) { | ||
6822 | two_back = out - 2 * stride; | ||
6823 | } | ||
6824 | |||
6825 | if (delays) { | ||
6826 | (*delays)[layers - 1U] = g.delay; | ||
6827 | } | ||
6828 | } | ||
6829 | } while (u != 0); | ||
6830 | |||
6831 | // free temp buffer; | ||
6832 | STBI_FREE(g.out); | ||
6833 | STBI_FREE(g.history); | ||
6834 | STBI_FREE(g.background); | ||
6835 | |||
6836 | // do the final conversion after loading everything; | ||
6837 | if (req_comp && req_comp != 4) | ||
6838 | out = stbi__convert_format(out, 4, req_comp, layers * g.w, g.h); | ||
6839 | |||
6840 | *z = layers; | ||
6841 | return out; | ||
6842 | } else { | ||
6843 | return stbi__errpuc("not GIF", "Image was not as a gif type."); | ||
6844 | } | ||
6845 | } | ||
6846 | |||
6847 | static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
6848 | { | ||
6849 | stbi_uc *u = 0; | ||
6850 | stbi__gif g; | ||
6851 | memset(&g, 0, sizeof(g)); | ||
6852 | STBI_NOTUSED(ri); | ||
6853 | |||
6854 | u = stbi__gif_load_next(s, &g, comp, req_comp, 0); | ||
6855 | if (u == (stbi_uc *) s) u = 0; // end of animated gif marker | ||
6856 | if (u) { | ||
6857 | *x = g.w; | ||
6858 | *y = g.h; | ||
6859 | |||
6860 | // moved conversion to after successful load so that the same | ||
6861 | // can be done for multiple frames. | ||
6862 | if (req_comp && req_comp != 4) | ||
6863 | u = stbi__convert_format(u, 4, req_comp, g.w, g.h); | ||
6864 | } else if (g.out) { | ||
6865 | // if there was an error and we allocated an image buffer, free it! | ||
6866 | STBI_FREE(g.out); | ||
6867 | } | ||
6868 | |||
6869 | // free buffers needed for multiple frame loading; | ||
6870 | STBI_FREE(g.history); | ||
6871 | STBI_FREE(g.background); | ||
6872 | |||
6873 | return u; | ||
6874 | } | ||
6875 | |||
6876 | static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp) | ||
6877 | { | ||
6878 | return stbi__gif_info_raw(s,x,y,comp); | ||
6879 | } | ||
6880 | #endif | ||
6881 | |||
6882 | // ************************************************************************************************* | ||
6883 | // Radiance RGBE HDR loader | ||
6884 | // originally by Nicolas Schulz | ||
6885 | #ifndef STBI_NO_HDR | ||
6886 | static int stbi__hdr_test_core(stbi__context *s, const char *signature) | ||
6887 | { | ||
6888 | int i; | ||
6889 | for (i=0; signature[i]; ++i) | ||
6890 | if (stbi__get8(s) != signature[i]) | ||
6891 | return 0; | ||
6892 | stbi__rewind(s); | ||
6893 | return 1; | ||
6894 | } | ||
6895 | |||
6896 | static int stbi__hdr_test(stbi__context* s) | ||
6897 | { | ||
6898 | int r = stbi__hdr_test_core(s, "#?RADIANCE\n"); | ||
6899 | stbi__rewind(s); | ||
6900 | if(!r) { | ||
6901 | r = stbi__hdr_test_core(s, "#?RGBE\n"); | ||
6902 | stbi__rewind(s); | ||
6903 | } | ||
6904 | return r; | ||
6905 | } | ||
6906 | |||
6907 | #define STBI__HDR_BUFLEN 1024 | ||
6908 | static char *stbi__hdr_gettoken(stbi__context *z, char *buffer) | ||
6909 | { | ||
6910 | int len=0; | ||
6911 | char c = '\0'; | ||
6912 | |||
6913 | c = (char) stbi__get8(z); | ||
6914 | |||
6915 | while (!stbi__at_eof(z) && c != '\n') { | ||
6916 | buffer[len++] = c; | ||
6917 | if (len == STBI__HDR_BUFLEN-1) { | ||
6918 | // flush to end of line | ||
6919 | while (!stbi__at_eof(z) && stbi__get8(z) != '\n') | ||
6920 | ; | ||
6921 | break; | ||
6922 | } | ||
6923 | c = (char) stbi__get8(z); | ||
6924 | } | ||
6925 | |||
6926 | buffer[len] = 0; | ||
6927 | return buffer; | ||
6928 | } | ||
6929 | |||
6930 | static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp) | ||
6931 | { | ||
6932 | if ( input[3] != 0 ) { | ||
6933 | float f1; | ||
6934 | // Exponent | ||
6935 | f1 = (float) ldexp(1.0f, input[3] - (int)(128 + 8)); | ||
6936 | if (req_comp <= 2) | ||
6937 | output[0] = (input[0] + input[1] + input[2]) * f1 / 3; | ||
6938 | else { | ||
6939 | output[0] = input[0] * f1; | ||
6940 | output[1] = input[1] * f1; | ||
6941 | output[2] = input[2] * f1; | ||
6942 | } | ||
6943 | if (req_comp == 2) output[1] = 1; | ||
6944 | if (req_comp == 4) output[3] = 1; | ||
6945 | } else { | ||
6946 | switch (req_comp) { | ||
6947 | case 4: output[3] = 1; /* fallthrough */ | ||
6948 | case 3: output[0] = output[1] = output[2] = 0; | ||
6949 | break; | ||
6950 | case 2: output[1] = 1; /* fallthrough */ | ||
6951 | case 1: output[0] = 0; | ||
6952 | break; | ||
6953 | } | ||
6954 | } | ||
6955 | } | ||
6956 | |||
6957 | static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
6958 | { | ||
6959 | char buffer[STBI__HDR_BUFLEN]; | ||
6960 | char *token; | ||
6961 | int valid = 0; | ||
6962 | int width, height; | ||
6963 | stbi_uc *scanline; | ||
6964 | float *hdr_data; | ||
6965 | int len; | ||
6966 | unsigned char count, value; | ||
6967 | int i, j, k, c1,c2, z; | ||
6968 | const char *headerToken; | ||
6969 | STBI_NOTUSED(ri); | ||
6970 | |||
6971 | // Check identifier | ||
6972 | headerToken = stbi__hdr_gettoken(s,buffer); | ||
6973 | if (strcmp(headerToken, "#?RADIANCE") != 0 && strcmp(headerToken, "#?RGBE") != 0) | ||
6974 | return stbi__errpf("not HDR", "Corrupt HDR image"); | ||
6975 | |||
6976 | // Parse header | ||
6977 | for(;;) { | ||
6978 | token = stbi__hdr_gettoken(s,buffer); | ||
6979 | if (token[0] == 0) break; | ||
6980 | if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; | ||
6981 | } | ||
6982 | |||
6983 | if (!valid) return stbi__errpf("unsupported format", "Unsupported HDR format"); | ||
6984 | |||
6985 | // Parse width and height | ||
6986 | // can't use sscanf() if we're not using stdio! | ||
6987 | token = stbi__hdr_gettoken(s,buffer); | ||
6988 | if (strncmp(token, "-Y ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); | ||
6989 | token += 3; | ||
6990 | height = (int) strtol(token, &token, 10); | ||
6991 | while (*token == ' ') ++token; | ||
6992 | if (strncmp(token, "+X ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); | ||
6993 | token += 3; | ||
6994 | width = (int) strtol(token, NULL, 10); | ||
6995 | |||
6996 | if (height > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); | ||
6997 | if (width > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); | ||
6998 | |||
6999 | *x = width; | ||
7000 | *y = height; | ||
7001 | |||
7002 | if (comp) *comp = 3; | ||
7003 | if (req_comp == 0) req_comp = 3; | ||
7004 | |||
7005 | if (!stbi__mad4sizes_valid(width, height, req_comp, sizeof(float), 0)) | ||
7006 | return stbi__errpf("too large", "HDR image is too large"); | ||
7007 | |||
7008 | // Read data | ||
7009 | hdr_data = (float *) stbi__malloc_mad4(width, height, req_comp, sizeof(float), 0); | ||
7010 | if (!hdr_data) | ||
7011 | return stbi__errpf("outofmem", "Out of memory"); | ||
7012 | |||
7013 | // Load image data | ||
7014 | // image data is stored as some number of sca | ||
7015 | if ( width < 8 || width >= 32768) { | ||
7016 | // Read flat data | ||
7017 | for (j=0; j < height; ++j) { | ||
7018 | for (i=0; i < width; ++i) { | ||
7019 | stbi_uc rgbe[4]; | ||
7020 | main_decode_loop: | ||
7021 | stbi__getn(s, rgbe, 4); | ||
7022 | stbi__hdr_convert(hdr_data + j * width * req_comp + i * req_comp, rgbe, req_comp); | ||
7023 | } | ||
7024 | } | ||
7025 | } else { | ||
7026 | // Read RLE-encoded data | ||
7027 | scanline = NULL; | ||
7028 | |||
7029 | for (j = 0; j < height; ++j) { | ||
7030 | c1 = stbi__get8(s); | ||
7031 | c2 = stbi__get8(s); | ||
7032 | len = stbi__get8(s); | ||
7033 | if (c1 != 2 || c2 != 2 || (len & 0x80)) { | ||
7034 | // not run-length encoded, so we have to actually use THIS data as a decoded | ||
7035 | // pixel (note this can't be a valid pixel--one of RGB must be >= 128) | ||
7036 | stbi_uc rgbe[4]; | ||
7037 | rgbe[0] = (stbi_uc) c1; | ||
7038 | rgbe[1] = (stbi_uc) c2; | ||
7039 | rgbe[2] = (stbi_uc) len; | ||
7040 | rgbe[3] = (stbi_uc) stbi__get8(s); | ||
7041 | stbi__hdr_convert(hdr_data, rgbe, req_comp); | ||
7042 | i = 1; | ||
7043 | j = 0; | ||
7044 | STBI_FREE(scanline); | ||
7045 | goto main_decode_loop; // yes, this makes no sense | ||
7046 | } | ||
7047 | len <<= 8; | ||
7048 | len |= stbi__get8(s); | ||
7049 | if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded scanline length", "corrupt HDR"); } | ||
7050 | if (scanline == NULL) { | ||
7051 | scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0); | ||
7052 | if (!scanline) { | ||
7053 | STBI_FREE(hdr_data); | ||
7054 | return stbi__errpf("outofmem", "Out of memory"); | ||
7055 | } | ||
7056 | } | ||
7057 | |||
7058 | for (k = 0; k < 4; ++k) { | ||
7059 | int nleft; | ||
7060 | i = 0; | ||
7061 | while ((nleft = width - i) > 0) { | ||
7062 | count = stbi__get8(s); | ||
7063 | if (count > 128) { | ||
7064 | // Run | ||
7065 | value = stbi__get8(s); | ||
7066 | count -= 128; | ||
7067 | if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } | ||
7068 | for (z = 0; z < count; ++z) | ||
7069 | scanline[i++ * 4 + k] = value; | ||
7070 | } else { | ||
7071 | // Dump | ||
7072 | if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } | ||
7073 | for (z = 0; z < count; ++z) | ||
7074 | scanline[i++ * 4 + k] = stbi__get8(s); | ||
7075 | } | ||
7076 | } | ||
7077 | } | ||
7078 | for (i=0; i < width; ++i) | ||
7079 | stbi__hdr_convert(hdr_data+(j*width + i)*req_comp, scanline + i*4, req_comp); | ||
7080 | } | ||
7081 | if (scanline) | ||
7082 | STBI_FREE(scanline); | ||
7083 | } | ||
7084 | |||
7085 | return hdr_data; | ||
7086 | } | ||
7087 | |||
7088 | static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp) | ||
7089 | { | ||
7090 | char buffer[STBI__HDR_BUFLEN]; | ||
7091 | char *token; | ||
7092 | int valid = 0; | ||
7093 | int dummy; | ||
7094 | |||
7095 | if (!x) x = &dummy; | ||
7096 | if (!y) y = &dummy; | ||
7097 | if (!comp) comp = &dummy; | ||
7098 | |||
7099 | if (stbi__hdr_test(s) == 0) { | ||
7100 | stbi__rewind( s ); | ||
7101 | return 0; | ||
7102 | } | ||
7103 | |||
7104 | for(;;) { | ||
7105 | token = stbi__hdr_gettoken(s,buffer); | ||
7106 | if (token[0] == 0) break; | ||
7107 | if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; | ||
7108 | } | ||
7109 | |||
7110 | if (!valid) { | ||
7111 | stbi__rewind( s ); | ||
7112 | return 0; | ||
7113 | } | ||
7114 | token = stbi__hdr_gettoken(s,buffer); | ||
7115 | if (strncmp(token, "-Y ", 3)) { | ||
7116 | stbi__rewind( s ); | ||
7117 | return 0; | ||
7118 | } | ||
7119 | token += 3; | ||
7120 | *y = (int) strtol(token, &token, 10); | ||
7121 | while (*token == ' ') ++token; | ||
7122 | if (strncmp(token, "+X ", 3)) { | ||
7123 | stbi__rewind( s ); | ||
7124 | return 0; | ||
7125 | } | ||
7126 | token += 3; | ||
7127 | *x = (int) strtol(token, NULL, 10); | ||
7128 | *comp = 3; | ||
7129 | return 1; | ||
7130 | } | ||
7131 | #endif // STBI_NO_HDR | ||
7132 | |||
7133 | #ifndef STBI_NO_BMP | ||
7134 | static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp) | ||
7135 | { | ||
7136 | void *p; | ||
7137 | stbi__bmp_data info; | ||
7138 | |||
7139 | info.all_a = 255; | ||
7140 | p = stbi__bmp_parse_header(s, &info); | ||
7141 | stbi__rewind( s ); | ||
7142 | if (p == NULL) | ||
7143 | return 0; | ||
7144 | if (x) *x = s->img_x; | ||
7145 | if (y) *y = s->img_y; | ||
7146 | if (comp) { | ||
7147 | if (info.bpp == 24 && info.ma == 0xff000000) | ||
7148 | *comp = 3; | ||
7149 | else | ||
7150 | *comp = info.ma ? 4 : 3; | ||
7151 | } | ||
7152 | return 1; | ||
7153 | } | ||
7154 | #endif | ||
7155 | |||
7156 | #ifndef STBI_NO_PSD | ||
7157 | static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp) | ||
7158 | { | ||
7159 | int channelCount, dummy, depth; | ||
7160 | if (!x) x = &dummy; | ||
7161 | if (!y) y = &dummy; | ||
7162 | if (!comp) comp = &dummy; | ||
7163 | if (stbi__get32be(s) != 0x38425053) { | ||
7164 | stbi__rewind( s ); | ||
7165 | return 0; | ||
7166 | } | ||
7167 | if (stbi__get16be(s) != 1) { | ||
7168 | stbi__rewind( s ); | ||
7169 | return 0; | ||
7170 | } | ||
7171 | stbi__skip(s, 6); | ||
7172 | channelCount = stbi__get16be(s); | ||
7173 | if (channelCount < 0 || channelCount > 16) { | ||
7174 | stbi__rewind( s ); | ||
7175 | return 0; | ||
7176 | } | ||
7177 | *y = stbi__get32be(s); | ||
7178 | *x = stbi__get32be(s); | ||
7179 | depth = stbi__get16be(s); | ||
7180 | if (depth != 8 && depth != 16) { | ||
7181 | stbi__rewind( s ); | ||
7182 | return 0; | ||
7183 | } | ||
7184 | if (stbi__get16be(s) != 3) { | ||
7185 | stbi__rewind( s ); | ||
7186 | return 0; | ||
7187 | } | ||
7188 | *comp = 4; | ||
7189 | return 1; | ||
7190 | } | ||
7191 | |||
7192 | static int stbi__psd_is16(stbi__context *s) | ||
7193 | { | ||
7194 | int channelCount, depth; | ||
7195 | if (stbi__get32be(s) != 0x38425053) { | ||
7196 | stbi__rewind( s ); | ||
7197 | return 0; | ||
7198 | } | ||
7199 | if (stbi__get16be(s) != 1) { | ||
7200 | stbi__rewind( s ); | ||
7201 | return 0; | ||
7202 | } | ||
7203 | stbi__skip(s, 6); | ||
7204 | channelCount = stbi__get16be(s); | ||
7205 | if (channelCount < 0 || channelCount > 16) { | ||
7206 | stbi__rewind( s ); | ||
7207 | return 0; | ||
7208 | } | ||
7209 | (void) stbi__get32be(s); | ||
7210 | (void) stbi__get32be(s); | ||
7211 | depth = stbi__get16be(s); | ||
7212 | if (depth != 16) { | ||
7213 | stbi__rewind( s ); | ||
7214 | return 0; | ||
7215 | } | ||
7216 | return 1; | ||
7217 | } | ||
7218 | #endif | ||
7219 | |||
7220 | #ifndef STBI_NO_PIC | ||
7221 | static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp) | ||
7222 | { | ||
7223 | int act_comp=0,num_packets=0,chained,dummy; | ||
7224 | stbi__pic_packet packets[10]; | ||
7225 | |||
7226 | if (!x) x = &dummy; | ||
7227 | if (!y) y = &dummy; | ||
7228 | if (!comp) comp = &dummy; | ||
7229 | |||
7230 | if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) { | ||
7231 | stbi__rewind(s); | ||
7232 | return 0; | ||
7233 | } | ||
7234 | |||
7235 | stbi__skip(s, 88); | ||
7236 | |||
7237 | *x = stbi__get16be(s); | ||
7238 | *y = stbi__get16be(s); | ||
7239 | if (stbi__at_eof(s)) { | ||
7240 | stbi__rewind( s); | ||
7241 | return 0; | ||
7242 | } | ||
7243 | if ( (*x) != 0 && (1 << 28) / (*x) < (*y)) { | ||
7244 | stbi__rewind( s ); | ||
7245 | return 0; | ||
7246 | } | ||
7247 | |||
7248 | stbi__skip(s, 8); | ||
7249 | |||
7250 | do { | ||
7251 | stbi__pic_packet *packet; | ||
7252 | |||
7253 | if (num_packets==sizeof(packets)/sizeof(packets[0])) | ||
7254 | return 0; | ||
7255 | |||
7256 | packet = &packets[num_packets++]; | ||
7257 | chained = stbi__get8(s); | ||
7258 | packet->size = stbi__get8(s); | ||
7259 | packet->type = stbi__get8(s); | ||
7260 | packet->channel = stbi__get8(s); | ||
7261 | act_comp |= packet->channel; | ||
7262 | |||
7263 | if (stbi__at_eof(s)) { | ||
7264 | stbi__rewind( s ); | ||
7265 | return 0; | ||
7266 | } | ||
7267 | if (packet->size != 8) { | ||
7268 | stbi__rewind( s ); | ||
7269 | return 0; | ||
7270 | } | ||
7271 | } while (chained); | ||
7272 | |||
7273 | *comp = (act_comp & 0x10 ? 4 : 3); | ||
7274 | |||
7275 | return 1; | ||
7276 | } | ||
7277 | #endif | ||
7278 | |||
7279 | // ************************************************************************************************* | ||
7280 | // Portable Gray Map and Portable Pixel Map loader | ||
7281 | // by Ken Miller | ||
7282 | // | ||
7283 | // PGM: http://netpbm.sourceforge.net/doc/pgm.html | ||
7284 | // PPM: http://netpbm.sourceforge.net/doc/ppm.html | ||
7285 | // | ||
7286 | // Known limitations: | ||
7287 | // Does not support comments in the header section | ||
7288 | // Does not support ASCII image data (formats P2 and P3) | ||
7289 | // Does not support 16-bit-per-channel | ||
7290 | |||
7291 | #ifndef STBI_NO_PNM | ||
7292 | |||
7293 | static int stbi__pnm_test(stbi__context *s) | ||
7294 | { | ||
7295 | char p, t; | ||
7296 | p = (char) stbi__get8(s); | ||
7297 | t = (char) stbi__get8(s); | ||
7298 | if (p != 'P' || (t != '5' && t != '6')) { | ||
7299 | stbi__rewind( s ); | ||
7300 | return 0; | ||
7301 | } | ||
7302 | return 1; | ||
7303 | } | ||
7304 | |||
7305 | static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) | ||
7306 | { | ||
7307 | stbi_uc *out; | ||
7308 | STBI_NOTUSED(ri); | ||
7309 | |||
7310 | if (!stbi__pnm_info(s, (int *)&s->img_x, (int *)&s->img_y, (int *)&s->img_n)) | ||
7311 | return 0; | ||
7312 | |||
7313 | if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
7314 | if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); | ||
7315 | |||
7316 | *x = s->img_x; | ||
7317 | *y = s->img_y; | ||
7318 | if (comp) *comp = s->img_n; | ||
7319 | |||
7320 | if (!stbi__mad3sizes_valid(s->img_n, s->img_x, s->img_y, 0)) | ||
7321 | return stbi__errpuc("too large", "PNM too large"); | ||
7322 | |||
7323 | out = (stbi_uc *) stbi__malloc_mad3(s->img_n, s->img_x, s->img_y, 0); | ||
7324 | if (!out) return stbi__errpuc("outofmem", "Out of memory"); | ||
7325 | stbi__getn(s, out, s->img_n * s->img_x * s->img_y); | ||
7326 | |||
7327 | if (req_comp && req_comp != s->img_n) { | ||
7328 | out = stbi__convert_format(out, s->img_n, req_comp, s->img_x, s->img_y); | ||
7329 | if (out == NULL) return out; // stbi__convert_format frees input on failure | ||
7330 | } | ||
7331 | return out; | ||
7332 | } | ||
7333 | |||
7334 | static int stbi__pnm_isspace(char c) | ||
7335 | { | ||
7336 | return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'; | ||
7337 | } | ||
7338 | |||
7339 | static void stbi__pnm_skip_whitespace(stbi__context *s, char *c) | ||
7340 | { | ||
7341 | for (;;) { | ||
7342 | while (!stbi__at_eof(s) && stbi__pnm_isspace(*c)) | ||
7343 | *c = (char) stbi__get8(s); | ||
7344 | |||
7345 | if (stbi__at_eof(s) || *c != '#') | ||
7346 | break; | ||
7347 | |||
7348 | while (!stbi__at_eof(s) && *c != '\n' && *c != '\r' ) | ||
7349 | *c = (char) stbi__get8(s); | ||
7350 | } | ||
7351 | } | ||
7352 | |||
7353 | static int stbi__pnm_isdigit(char c) | ||
7354 | { | ||
7355 | return c >= '0' && c <= '9'; | ||
7356 | } | ||
7357 | |||
7358 | static int stbi__pnm_getinteger(stbi__context *s, char *c) | ||
7359 | { | ||
7360 | int value = 0; | ||
7361 | |||
7362 | while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) { | ||
7363 | value = value*10 + (*c - '0'); | ||
7364 | *c = (char) stbi__get8(s); | ||
7365 | } | ||
7366 | |||
7367 | return value; | ||
7368 | } | ||
7369 | |||
7370 | static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp) | ||
7371 | { | ||
7372 | int maxv, dummy; | ||
7373 | char c, p, t; | ||
7374 | |||
7375 | if (!x) x = &dummy; | ||
7376 | if (!y) y = &dummy; | ||
7377 | if (!comp) comp = &dummy; | ||
7378 | |||
7379 | stbi__rewind(s); | ||
7380 | |||
7381 | // Get identifier | ||
7382 | p = (char) stbi__get8(s); | ||
7383 | t = (char) stbi__get8(s); | ||
7384 | if (p != 'P' || (t != '5' && t != '6')) { | ||
7385 | stbi__rewind(s); | ||
7386 | return 0; | ||
7387 | } | ||
7388 | |||
7389 | *comp = (t == '6') ? 3 : 1; // '5' is 1-component .pgm; '6' is 3-component .ppm | ||
7390 | |||
7391 | c = (char) stbi__get8(s); | ||
7392 | stbi__pnm_skip_whitespace(s, &c); | ||
7393 | |||
7394 | *x = stbi__pnm_getinteger(s, &c); // read width | ||
7395 | stbi__pnm_skip_whitespace(s, &c); | ||
7396 | |||
7397 | *y = stbi__pnm_getinteger(s, &c); // read height | ||
7398 | stbi__pnm_skip_whitespace(s, &c); | ||
7399 | |||
7400 | maxv = stbi__pnm_getinteger(s, &c); // read max value | ||
7401 | |||
7402 | if (maxv > 255) | ||
7403 | return stbi__err("max value > 255", "PPM image not 8-bit"); | ||
7404 | else | ||
7405 | return 1; | ||
7406 | } | ||
7407 | #endif | ||
7408 | |||
7409 | static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp) | ||
7410 | { | ||
7411 | #ifndef STBI_NO_JPEG | ||
7412 | if (stbi__jpeg_info(s, x, y, comp)) return 1; | ||
7413 | #endif | ||
7414 | |||
7415 | #ifndef STBI_NO_PNG | ||
7416 | if (stbi__png_info(s, x, y, comp)) return 1; | ||
7417 | #endif | ||
7418 | |||
7419 | #ifndef STBI_NO_GIF | ||
7420 | if (stbi__gif_info(s, x, y, comp)) return 1; | ||
7421 | #endif | ||
7422 | |||
7423 | #ifndef STBI_NO_BMP | ||
7424 | if (stbi__bmp_info(s, x, y, comp)) return 1; | ||
7425 | #endif | ||
7426 | |||
7427 | #ifndef STBI_NO_PSD | ||
7428 | if (stbi__psd_info(s, x, y, comp)) return 1; | ||
7429 | #endif | ||
7430 | |||
7431 | #ifndef STBI_NO_PIC | ||
7432 | if (stbi__pic_info(s, x, y, comp)) return 1; | ||
7433 | #endif | ||
7434 | |||
7435 | #ifndef STBI_NO_PNM | ||
7436 | if (stbi__pnm_info(s, x, y, comp)) return 1; | ||
7437 | #endif | ||
7438 | |||
7439 | #ifndef STBI_NO_HDR | ||
7440 | if (stbi__hdr_info(s, x, y, comp)) return 1; | ||
7441 | #endif | ||
7442 | |||
7443 | // test tga last because it's a crappy test! | ||
7444 | #ifndef STBI_NO_TGA | ||
7445 | if (stbi__tga_info(s, x, y, comp)) | ||
7446 | return 1; | ||
7447 | #endif | ||
7448 | return stbi__err("unknown image type", "Image not of any known type, or corrupt"); | ||
7449 | } | ||
7450 | |||
7451 | static int stbi__is_16_main(stbi__context *s) | ||
7452 | { | ||
7453 | #ifndef STBI_NO_PNG | ||
7454 | if (stbi__png_is16(s)) return 1; | ||
7455 | #endif | ||
7456 | |||
7457 | #ifndef STBI_NO_PSD | ||
7458 | if (stbi__psd_is16(s)) return 1; | ||
7459 | #endif | ||
7460 | |||
7461 | return 0; | ||
7462 | } | ||
7463 | |||
7464 | #ifndef STBI_NO_STDIO | ||
7465 | STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp) | ||
7466 | { | ||
7467 | FILE *f = stbi__fopen(filename, "rb"); | ||
7468 | int result; | ||
7469 | if (!f) return stbi__err("can't fopen", "Unable to open file"); | ||
7470 | result = stbi_info_from_file(f, x, y, comp); | ||
7471 | fclose(f); | ||
7472 | return result; | ||
7473 | } | ||
7474 | |||
7475 | STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp) | ||
7476 | { | ||
7477 | int r; | ||
7478 | stbi__context s; | ||
7479 | long pos = ftell(f); | ||
7480 | stbi__start_file(&s, f); | ||
7481 | r = stbi__info_main(&s,x,y,comp); | ||
7482 | fseek(f,pos,SEEK_SET); | ||
7483 | return r; | ||
7484 | } | ||
7485 | |||
7486 | STBIDEF int stbi_is_16_bit(char const *filename) | ||
7487 | { | ||
7488 | FILE *f = stbi__fopen(filename, "rb"); | ||
7489 | int result; | ||
7490 | if (!f) return stbi__err("can't fopen", "Unable to open file"); | ||
7491 | result = stbi_is_16_bit_from_file(f); | ||
7492 | fclose(f); | ||
7493 | return result; | ||
7494 | } | ||
7495 | |||
7496 | STBIDEF int stbi_is_16_bit_from_file(FILE *f) | ||
7497 | { | ||
7498 | int r; | ||
7499 | stbi__context s; | ||
7500 | long pos = ftell(f); | ||
7501 | stbi__start_file(&s, f); | ||
7502 | r = stbi__is_16_main(&s); | ||
7503 | fseek(f,pos,SEEK_SET); | ||
7504 | return r; | ||
7505 | } | ||
7506 | #endif // !STBI_NO_STDIO | ||
7507 | |||
7508 | STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp) | ||
7509 | { | ||
7510 | stbi__context s; | ||
7511 | stbi__start_mem(&s,buffer,len); | ||
7512 | return stbi__info_main(&s,x,y,comp); | ||
7513 | } | ||
7514 | |||
7515 | STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp) | ||
7516 | { | ||
7517 | stbi__context s; | ||
7518 | stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); | ||
7519 | return stbi__info_main(&s,x,y,comp); | ||
7520 | } | ||
7521 | |||
7522 | STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len) | ||
7523 | { | ||
7524 | stbi__context s; | ||
7525 | stbi__start_mem(&s,buffer,len); | ||
7526 | return stbi__is_16_main(&s); | ||
7527 | } | ||
7528 | |||
7529 | STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user) | ||
7530 | { | ||
7531 | stbi__context s; | ||
7532 | stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); | ||
7533 | return stbi__is_16_main(&s); | ||
7534 | } | ||
7535 | |||
7536 | #endif // STB_IMAGE_IMPLEMENTATION | ||
7537 | |||
7538 | /* | ||
7539 | revision history: | ||
7540 | 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs | ||
7541 | 2.19 (2018-02-11) fix warning | ||
7542 | 2.18 (2018-01-30) fix warnings | ||
7543 | 2.17 (2018-01-29) change sbti__shiftsigned to avoid clang -O2 bug | ||
7544 | 1-bit BMP | ||
7545 | *_is_16_bit api | ||
7546 | avoid warnings | ||
7547 | 2.16 (2017-07-23) all functions have 16-bit variants; | ||
7548 | STBI_NO_STDIO works again; | ||
7549 | compilation fixes; | ||
7550 | fix rounding in unpremultiply; | ||
7551 | optimize vertical flip; | ||
7552 | disable raw_len validation; | ||
7553 | documentation fixes | ||
7554 | 2.15 (2017-03-18) fix png-1,2,4 bug; now all Imagenet JPGs decode; | ||
7555 | warning fixes; disable run-time SSE detection on gcc; | ||
7556 | uniform handling of optional "return" values; | ||
7557 | thread-safe initialization of zlib tables | ||
7558 | 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs | ||
7559 | 2.13 (2016-11-29) add 16-bit API, only supported for PNG right now | ||
7560 | 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes | ||
7561 | 2.11 (2016-04-02) allocate large structures on the stack | ||
7562 | remove white matting for transparent PSD | ||
7563 | fix reported channel count for PNG & BMP | ||
7564 | re-enable SSE2 in non-gcc 64-bit | ||
7565 | support RGB-formatted JPEG | ||
7566 | read 16-bit PNGs (only as 8-bit) | ||
7567 | 2.10 (2016-01-22) avoid warning introduced in 2.09 by STBI_REALLOC_SIZED | ||
7568 | 2.09 (2016-01-16) allow comments in PNM files | ||
7569 | 16-bit-per-pixel TGA (not bit-per-component) | ||
7570 | info() for TGA could break due to .hdr handling | ||
7571 | info() for BMP to shares code instead of sloppy parse | ||
7572 | can use STBI_REALLOC_SIZED if allocator doesn't support realloc | ||
7573 | code cleanup | ||
7574 | 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA | ||
7575 | 2.07 (2015-09-13) fix compiler warnings | ||
7576 | partial animated GIF support | ||
7577 | limited 16-bpc PSD support | ||
7578 | #ifdef unused functions | ||
7579 | bug with < 92 byte PIC,PNM,HDR,TGA | ||
7580 | 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value | ||
7581 | 2.05 (2015-04-19) fix bug in progressive JPEG handling, fix warning | ||
7582 | 2.04 (2015-04-15) try to re-enable SIMD on MinGW 64-bit | ||
7583 | 2.03 (2015-04-12) extra corruption checking (mmozeiko) | ||
7584 | stbi_set_flip_vertically_on_load (nguillemot) | ||
7585 | fix NEON support; fix mingw support | ||
7586 | 2.02 (2015-01-19) fix incorrect assert, fix warning | ||
7587 | 2.01 (2015-01-17) fix various warnings; suppress SIMD on gcc 32-bit without -msse2 | ||
7588 | 2.00b (2014-12-25) fix STBI_MALLOC in progressive JPEG | ||
7589 | 2.00 (2014-12-25) optimize JPG, including x86 SSE2 & NEON SIMD (ryg) | ||
7590 | progressive JPEG (stb) | ||
7591 | PGM/PPM support (Ken Miller) | ||
7592 | STBI_MALLOC,STBI_REALLOC,STBI_FREE | ||
7593 | GIF bugfix -- seemingly never worked | ||
7594 | STBI_NO_*, STBI_ONLY_* | ||
7595 | 1.48 (2014-12-14) fix incorrectly-named assert() | ||
7596 | 1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb) | ||
7597 | optimize PNG (ryg) | ||
7598 | fix bug in interlaced PNG with user-specified channel count (stb) | ||
7599 | 1.46 (2014-08-26) | ||
7600 | fix broken tRNS chunk (colorkey-style transparency) in non-paletted PNG | ||
7601 | 1.45 (2014-08-16) | ||
7602 | fix MSVC-ARM internal compiler error by wrapping malloc | ||
7603 | 1.44 (2014-08-07) | ||
7604 | various warning fixes from Ronny Chevalier | ||
7605 | 1.43 (2014-07-15) | ||
7606 | fix MSVC-only compiler problem in code changed in 1.42 | ||
7607 | 1.42 (2014-07-09) | ||
7608 | don't define _CRT_SECURE_NO_WARNINGS (affects user code) | ||
7609 | fixes to stbi__cleanup_jpeg path | ||
7610 | added STBI_ASSERT to avoid requiring assert.h | ||
7611 | 1.41 (2014-06-25) | ||
7612 | fix search&replace from 1.36 that messed up comments/error messages | ||
7613 | 1.40 (2014-06-22) | ||
7614 | fix gcc struct-initialization warning | ||
7615 | 1.39 (2014-06-15) | ||
7616 | fix to TGA optimization when req_comp != number of components in TGA; | ||
7617 | fix to GIF loading because BMP wasn't rewinding (whoops, no GIFs in my test suite) | ||
7618 | add support for BMP version 5 (more ignored fields) | ||
7619 | 1.38 (2014-06-06) | ||
7620 | suppress MSVC warnings on integer casts truncating values | ||
7621 | fix accidental rename of 'skip' field of I/O | ||
7622 | 1.37 (2014-06-04) | ||
7623 | remove duplicate typedef | ||
7624 | 1.36 (2014-06-03) | ||
7625 | convert to header file single-file library | ||
7626 | if de-iphone isn't set, load iphone images color-swapped instead of returning NULL | ||
7627 | 1.35 (2014-05-27) | ||
7628 | various warnings | ||
7629 | fix broken STBI_SIMD path | ||
7630 | fix bug where stbi_load_from_file no longer left file pointer in correct place | ||
7631 | fix broken non-easy path for 32-bit BMP (possibly never used) | ||
7632 | TGA optimization by Arseny Kapoulkine | ||
7633 | 1.34 (unknown) | ||
7634 | use STBI_NOTUSED in stbi__resample_row_generic(), fix one more leak in tga failure case | ||
7635 | 1.33 (2011-07-14) | ||
7636 | make stbi_is_hdr work in STBI_NO_HDR (as specified), minor compiler-friendly improvements | ||
7637 | 1.32 (2011-07-13) | ||
7638 | support for "info" function for all supported filetypes (SpartanJ) | ||
7639 | 1.31 (2011-06-20) | ||
7640 | a few more leak fixes, bug in PNG handling (SpartanJ) | ||
7641 | 1.30 (2011-06-11) | ||
7642 | added ability to load files via callbacks to accomidate custom input streams (Ben Wenger) | ||
7643 | removed deprecated format-specific test/load functions | ||
7644 | removed support for installable file formats (stbi_loader) -- would have been broken for IO callbacks anyway | ||
7645 | error cases in bmp and tga give messages and don't leak (Raymond Barbiero, grisha) | ||
7646 | fix inefficiency in decoding 32-bit BMP (David Woo) | ||
7647 | 1.29 (2010-08-16) | ||
7648 | various warning fixes from Aurelien Pocheville | ||
7649 | 1.28 (2010-08-01) | ||
7650 | fix bug in GIF palette transparency (SpartanJ) | ||
7651 | 1.27 (2010-08-01) | ||
7652 | cast-to-stbi_uc to fix warnings | ||
7653 | 1.26 (2010-07-24) | ||
7654 | fix bug in file buffering for PNG reported by SpartanJ | ||
7655 | 1.25 (2010-07-17) | ||
7656 | refix trans_data warning (Won Chun) | ||
7657 | 1.24 (2010-07-12) | ||
7658 | perf improvements reading from files on platforms with lock-heavy fgetc() | ||
7659 | minor perf improvements for jpeg | ||
7660 | deprecated type-specific functions so we'll get feedback if they're needed | ||
7661 | attempt to fix trans_data warning (Won Chun) | ||
7662 | 1.23 fixed bug in iPhone support | ||
7663 | 1.22 (2010-07-10) | ||
7664 | removed image *writing* support | ||
7665 | stbi_info support from Jetro Lauha | ||
7666 | GIF support from Jean-Marc Lienher | ||
7667 | iPhone PNG-extensions from James Brown | ||
7668 | warning-fixes from Nicolas Schulz and Janez Zemva (i.stbi__err. Janez (U+017D)emva) | ||
7669 | 1.21 fix use of 'stbi_uc' in header (reported by jon blow) | ||
7670 | 1.20 added support for Softimage PIC, by Tom Seddon | ||
7671 | 1.19 bug in interlaced PNG corruption check (found by ryg) | ||
7672 | 1.18 (2008-08-02) | ||
7673 | fix a threading bug (local mutable static) | ||
7674 | 1.17 support interlaced PNG | ||
7675 | 1.16 major bugfix - stbi__convert_format converted one too many pixels | ||
7676 | 1.15 initialize some fields for thread safety | ||
7677 | 1.14 fix threadsafe conversion bug | ||
7678 | header-file-only version (#define STBI_HEADER_FILE_ONLY before including) | ||
7679 | 1.13 threadsafe | ||
7680 | 1.12 const qualifiers in the API | ||
7681 | 1.11 Support installable IDCT, colorspace conversion routines | ||
7682 | 1.10 Fixes for 64-bit (don't use "unsigned long") | ||
7683 | optimized upsampling by Fabian "ryg" Giesen | ||
7684 | 1.09 Fix format-conversion for PSD code (bad global variables!) | ||
7685 | 1.08 Thatcher Ulrich's PSD code integrated by Nicolas Schulz | ||
7686 | 1.07 attempt to fix C++ warning/errors again | ||
7687 | 1.06 attempt to fix C++ warning/errors again | ||
7688 | 1.05 fix TGA loading to return correct *comp and use good luminance calc | ||
7689 | 1.04 default float alpha is 1, not 255; use 'void *' for stbi_image_free | ||
7690 | 1.03 bugfixes to STBI_NO_STDIO, STBI_NO_HDR | ||
7691 | 1.02 support for (subset of) HDR files, float interface for preferred access to them | ||
7692 | 1.01 fix bug: possible bug in handling right-side up bmps... not sure | ||
7693 | fix bug: the stbi__bmp_load() and stbi__tga_load() functions didn't work at all | ||
7694 | 1.00 interface to zlib that skips zlib header | ||
7695 | 0.99 correct handling of alpha in palette | ||
7696 | 0.98 TGA loader by lonesock; dynamically add loaders (untested) | ||
7697 | 0.97 jpeg errors on too large a file; also catch another malloc failure | ||
7698 | 0.96 fix detection of invalid v value - particleman@mollyrocket forum | ||
7699 | 0.95 during header scan, seek to markers in case of padding | ||
7700 | 0.94 STBI_NO_STDIO to disable stdio usage; rename all #defines the same | ||
7701 | 0.93 handle jpegtran output; verbose errors | ||
7702 | 0.92 read 4,8,16,24,32-bit BMP files of several formats | ||
7703 | 0.91 output 24-bit Windows 3.0 BMP files | ||
7704 | 0.90 fix a few more warnings; bump version number to approach 1.0 | ||
7705 | 0.61 bugfixes due to Marc LeBlanc, Christopher Lloyd | ||
7706 | 0.60 fix compiling as c++ | ||
7707 | 0.59 fix warnings: merge Dave Moore's -Wall fixes | ||
7708 | 0.58 fix bug: zlib uncompressed mode len/nlen was wrong endian | ||
7709 | 0.57 fix bug: jpg last huffman symbol before marker was >9 bits but less than 16 available | ||
7710 | 0.56 fix bug: zlib uncompressed mode len vs. nlen | ||
7711 | 0.55 fix bug: restart_interval not initialized to 0 | ||
7712 | 0.54 allow NULL for 'int *comp' | ||
7713 | 0.53 fix bug in png 3->4; speedup png decoding | ||
7714 | 0.52 png handles req_comp=3,4 directly; minor cleanup; jpeg comments | ||
7715 | 0.51 obey req_comp requests, 1-component jpegs return as 1-component, | ||
7716 | on 'test' only check type, not whether we support this variant | ||
7717 | 0.50 (2006-11-19) | ||
7718 | first released version | ||
7719 | */ | ||
7720 | |||
7721 | |||
7722 | /* | ||
7723 | ------------------------------------------------------------------------------ | ||
7724 | This software is available under 2 licenses -- choose whichever you prefer. | ||
7725 | ------------------------------------------------------------------------------ | ||
7726 | ALTERNATIVE A - MIT License | ||
7727 | Copyright (c) 2017 Sean Barrett | ||
7728 | Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
7729 | this software and associated documentation files (the "Software"), to deal in | ||
7730 | the Software without restriction, including without limitation the rights to | ||
7731 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
7732 | of the Software, and to permit persons to whom the Software is furnished to do | ||
7733 | so, subject to the following conditions: | ||
7734 | The above copyright notice and this permission notice shall be included in all | ||
7735 | copies or substantial portions of the Software. | ||
7736 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
7737 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
7738 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
7739 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
7740 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
7741 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
7742 | SOFTWARE. | ||
7743 | ------------------------------------------------------------------------------ | ||
7744 | ALTERNATIVE B - Public Domain (www.unlicense.org) | ||
7745 | This is free and unencumbered software released into the public domain. | ||
7746 | Anyone is free to copy, modify, publish, use, compile, sell, or distribute this | ||
7747 | software, either in source code form or as a compiled binary, for any purpose, | ||
7748 | commercial or non-commercial, and by any means. | ||
7749 | In jurisdictions that recognize copyright laws, the author or authors of this | ||
7750 | software dedicate any and all copyright interest in the software to the public | ||
7751 | domain. We make this dedication for the benefit of the public at large and to | ||
7752 | the detriment of our heirs and successors. We intend this dedication to be an | ||
7753 | overt act of relinquishment in perpetuity of all present and future rights to | ||
7754 | this software under copyright law. | ||
7755 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
7756 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
7757 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
7758 | AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
7759 | ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
7760 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
7761 | ------------------------------------------------------------------------------ | ||
7762 | */ | ||
diff --git a/gfx/doc/extern/2013SiggraphPresentationsNotes-26915738.pdf b/gfx/doc/extern/2013SiggraphPresentationsNotes-26915738.pdf new file mode 100644 index 0000000..989658e --- /dev/null +++ b/gfx/doc/extern/2013SiggraphPresentationsNotes-26915738.pdf | |||
Binary files differ | |||
diff --git a/gfx/doc/gfx.png b/gfx/doc/gfx.png new file mode 100644 index 0000000..e64f6e1 --- /dev/null +++ b/gfx/doc/gfx.png | |||
Binary files differ | |||
diff --git a/gfx/doc/gfx.txt b/gfx/doc/gfx.txt new file mode 100644 index 0000000..d3ce01b --- /dev/null +++ b/gfx/doc/gfx.txt | |||
@@ -0,0 +1,10 @@ | |||
1 | @startuml | ||
2 | |||
3 | class Gfx { | ||
4 | |||
5 | } | ||
6 | |||
7 | Gfx --> Render | ||
8 | Gfx *-- Scene | ||
9 | |||
10 | @enduml | ||
diff --git a/gfx/doc/gltfOverview-2.0.0b.png b/gfx/doc/gltfOverview-2.0.0b.png new file mode 100644 index 0000000..6a5bb61 --- /dev/null +++ b/gfx/doc/gltfOverview-2.0.0b.png | |||
Binary files differ | |||
diff --git a/gfx/doc/pipeline.png b/gfx/doc/pipeline.png new file mode 100644 index 0000000..426f39e --- /dev/null +++ b/gfx/doc/pipeline.png | |||
Binary files differ | |||
diff --git a/gfx/doc/pipeline.txt b/gfx/doc/pipeline.txt new file mode 100644 index 0000000..51523d6 --- /dev/null +++ b/gfx/doc/pipeline.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | @startuml | ||
2 | |||
3 | class RenderPipeline { | ||
4 | |||
5 | } | ||
6 | |||
7 | RenderPipeline *-- RenderPass | ||
8 | |||
9 | class RenderPass { | ||
10 | +clear colour | ||
11 | } | ||
12 | |||
13 | RenderPass --> Shader | ||
14 | RenderPass o-- RenderTarget | ||
15 | |||
16 | @enduml | ||
diff --git a/gfx/doc/renderer.png b/gfx/doc/renderer.png new file mode 100644 index 0000000..d0516b0 --- /dev/null +++ b/gfx/doc/renderer.png | |||
Binary files differ | |||
diff --git a/gfx/doc/renderer.txt b/gfx/doc/renderer.txt new file mode 100644 index 0000000..90b18f8 --- /dev/null +++ b/gfx/doc/renderer.txt | |||
@@ -0,0 +1,18 @@ | |||
1 | @startuml | ||
2 | |||
3 | class Render { | ||
4 | |||
5 | } | ||
6 | |||
7 | Render *-- RenderPipeline | ||
8 | Render --> Assets | ||
9 | |||
10 | class Assets { | ||
11 | |||
12 | } | ||
13 | |||
14 | Assets *-- Shader | ||
15 | Assets *-- Geometry | ||
16 | Assets *-- Texture | ||
17 | |||
18 | @enduml | ||
diff --git a/gfx/doc/scene.png b/gfx/doc/scene.png new file mode 100644 index 0000000..017e91b --- /dev/null +++ b/gfx/doc/scene.png | |||
Binary files differ | |||
diff --git a/gfx/doc/scene.txt b/gfx/doc/scene.txt new file mode 100644 index 0000000..dc22927 --- /dev/null +++ b/gfx/doc/scene.txt | |||
@@ -0,0 +1,80 @@ | |||
1 | @startuml | ||
2 | |||
3 | class Scene { | ||
4 | |||
5 | } | ||
6 | |||
7 | Scene *-- Camera | ||
8 | Scene *-- Node | ||
9 | |||
10 | class Camera { | ||
11 | |||
12 | } | ||
13 | |||
14 | class Node { | ||
15 | + transform | ||
16 | } | ||
17 | |||
18 | Node *-- Object | ||
19 | Node o-- Light : "affected by" | ||
20 | Node o-- Camera | ||
21 | Node *-- Node | ||
22 | |||
23 | class Object { | ||
24 | + transform | ||
25 | } | ||
26 | |||
27 | Object *-- Mesh | ||
28 | |||
29 | class Mesh { | ||
30 | |||
31 | } | ||
32 | |||
33 | Mesh --> BoundingVolume | ||
34 | Mesh --> Geometry | ||
35 | Mesh --> Material | ||
36 | |||
37 | class Geometry { | ||
38 | + positions | ||
39 | + normals | ||
40 | + texcoords | ||
41 | + indices | ||
42 | } | ||
43 | |||
44 | class BoundingVolume { | ||
45 | |||
46 | } | ||
47 | |||
48 | class Material { | ||
49 | + shader params | ||
50 | } | ||
51 | |||
52 | Material --> Shader | ||
53 | Material o-- Texture | ||
54 | |||
55 | class Shader { | ||
56 | + uniforms | ||
57 | } | ||
58 | |||
59 | Shader --> VertexShader | ||
60 | Shader --> FragmentShader | ||
61 | |||
62 | class VertexShader { | ||
63 | + pos | ||
64 | + normal | ||
65 | + texcoords | ||
66 | + Modelview | ||
67 | + Projection | ||
68 | } | ||
69 | |||
70 | class FragmentShader { | ||
71 | + lights | ||
72 | + textures | ||
73 | } | ||
74 | |||
75 | class Texture { | ||
76 | + pixels | ||
77 | + format | ||
78 | } | ||
79 | |||
80 | @enduml | ||
diff --git a/gfx/include/gfx/README.md b/gfx/include/gfx/README.md new file mode 100644 index 0000000..81f6759 --- /dev/null +++ b/gfx/include/gfx/README.md | |||
@@ -0,0 +1,3 @@ | |||
1 | # GFX / include | ||
2 | |||
3 | Public API of the graphics library. | ||
diff --git a/gfx/include/gfx/error.h b/gfx/include/gfx/error.h new file mode 100644 index 0000000..b7887bb --- /dev/null +++ b/gfx/include/gfx/error.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <cstring.h> | ||
4 | #include <stdio.h> | ||
5 | |||
6 | /// Get the last error. | ||
7 | const char* gfx_get_error(void); | ||
8 | |||
9 | extern xlstring gfx_error; | ||
10 | |||
11 | /// Set the last error. | ||
12 | #define gfx_set_error(FORMAT, ...) \ | ||
13 | gfx_error.length = snprintf(gfx_error.str, xlstring_size, \ | ||
14 | FORMAT __VA_OPT__(, ) __VA_ARGS__) | ||
15 | |||
16 | /// Prepend an error to the last error. | ||
17 | #define gfx_prepend_error(FORMAT, ...) \ | ||
18 | { \ | ||
19 | xlstring head; \ | ||
20 | head.length = \ | ||
21 | snprintf(head.str, xlstring_size, FORMAT __VA_OPT__(, ) __VA_ARGS__); \ | ||
22 | head = xlstring_concat(head, xlstring_make(": ")); \ | ||
23 | gfx_error = xlstring_concat(head, gfx_error); \ | ||
24 | } | ||
diff --git a/gfx/include/gfx/gfx.h b/gfx/include/gfx/gfx.h new file mode 100644 index 0000000..b9b7183 --- /dev/null +++ b/gfx/include/gfx/gfx.h | |||
@@ -0,0 +1,35 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef struct RenderBackend RenderBackend; | ||
4 | typedef struct Renderer Renderer; | ||
5 | typedef struct Scene Scene; | ||
6 | typedef struct SceneCamera SceneCamera; | ||
7 | |||
8 | typedef struct Gfx Gfx; | ||
9 | |||
10 | /// Create a new graphics system, | ||
11 | Gfx* gfx_init(); | ||
12 | |||
13 | /// Destroy the graphics system. | ||
14 | void gfx_destroy(Gfx**); | ||
15 | |||
16 | /// Get the render backend. | ||
17 | RenderBackend* gfx_get_render_backend(Gfx*); | ||
18 | |||
19 | /// Get the renderer. | ||
20 | Renderer* gfx_get_renderer(Gfx*); | ||
21 | |||
22 | /// Create a new scene. | ||
23 | Scene* gfx_make_scene(Gfx*); | ||
24 | |||
25 | /// Destroy the scene. | ||
26 | /// | ||
27 | /// This function destroys the scene and all objects that it owns (scene | ||
28 | /// objects, cameras, lights, etc), but not objects that could be shared with | ||
29 | /// other scenes (meshes, materials, etc). | ||
30 | void gfx_destroy_scene(Gfx*, Scene**); | ||
31 | |||
32 | /// Remove unused resources from the scene (meshes, materials). | ||
33 | /// TODO: need to think about the interface for scene_purge(). Maybe this | ||
34 | /// should be gfx_purge() and take a list of Scenes? | ||
35 | // void gfx_purge(Scene*); | ||
diff --git a/gfx/include/gfx/render_backend.h b/gfx/include/gfx/render_backend.h new file mode 100644 index 0000000..46c2908 --- /dev/null +++ b/gfx/include/gfx/render_backend.h | |||
@@ -0,0 +1,345 @@ | |||
1 | /// Render Backend. | ||
2 | /// | ||
3 | /// The Render Backend creates and owns graphics objects and performs low-level | ||
4 | /// rendering operations. | ||
5 | #pragma once | ||
6 | |||
7 | #include <math/fwd.h> | ||
8 | #include <math/mat4.h> | ||
9 | #include <math/vec4.h> | ||
10 | |||
11 | #include <cstring.h> | ||
12 | |||
13 | #include <stddef.h> | ||
14 | #include <stdint.h> | ||
15 | |||
16 | // Implementation objects. | ||
17 | typedef struct Buffer Buffer; | ||
18 | typedef struct FrameBuffer FrameBuffer; | ||
19 | typedef struct Geometry Geometry; | ||
20 | typedef struct RenderBuffer RenderBuffer; | ||
21 | typedef struct Shader Shader; | ||
22 | typedef struct ShaderProgram ShaderProgram; | ||
23 | typedef struct Texture Texture; | ||
24 | typedef struct RenderBackend RenderBackend; | ||
25 | |||
26 | /// Data type for vertex indices. | ||
27 | /// Might need U32 for bigger models. | ||
28 | typedef uint16_t VertexIndex; | ||
29 | typedef uint16_t VertexCount; | ||
30 | |||
31 | /// Geometry drawing modes. | ||
32 | typedef enum PrimitiveType { | ||
33 | Triangles, | ||
34 | TriangleFan, | ||
35 | TriangleStrip | ||
36 | } PrimitiveType; | ||
37 | |||
38 | /// A buffer view for vertex data (attributes or indices). | ||
39 | /// Either 'data' or 'buffer' must be set. | ||
40 | #define MAKE_BUFFER_VIEW(NAME, TYPE) \ | ||
41 | typedef struct NAME { \ | ||
42 | const TYPE* data; \ | ||
43 | const Buffer* buffer; \ | ||
44 | size_t offset_bytes; \ | ||
45 | size_t size_bytes; \ | ||
46 | size_t stride_bytes; \ | ||
47 | } NAME; | ||
48 | |||
49 | /// A buffer view for 2D vectors. | ||
50 | MAKE_BUFFER_VIEW(BufferView2d, vec2) | ||
51 | |||
52 | /// A buffer view for 3D vectors. | ||
53 | MAKE_BUFFER_VIEW(BufferView3d, vec3) | ||
54 | |||
55 | /// A buffer view for 4D vectors. | ||
56 | MAKE_BUFFER_VIEW(BufferView4d, vec4) | ||
57 | |||
58 | /// A buffer view for vertex indices. | ||
59 | MAKE_BUFFER_VIEW(BufferViewIdx, uint16_t) | ||
60 | |||
61 | /// Describes a piece of geometry. | ||
62 | typedef struct GeometryDesc { | ||
63 | BufferView2d positions2d; | ||
64 | BufferView3d positions3d; | ||
65 | BufferView3d normals; | ||
66 | BufferView4d tangents; | ||
67 | BufferView2d texcoords; | ||
68 | BufferViewIdx indices; | ||
69 | VertexCount num_verts; | ||
70 | size_t num_indices; | ||
71 | PrimitiveType type; | ||
72 | } GeometryDesc; | ||
73 | |||
74 | /// Shader types. | ||
75 | typedef enum { VertexShader, FragmentShader } ShaderType; | ||
76 | |||
77 | /// Describes a shader. | ||
78 | typedef struct ShaderDesc { | ||
79 | const char* code; | ||
80 | ShaderType type; | ||
81 | } ShaderDesc; | ||
82 | |||
83 | /// Describes a shader program. | ||
84 | typedef struct ShaderProgramDesc { | ||
85 | const Shader* vertex_shader; | ||
86 | const Shader* fragment_shader; | ||
87 | } ShaderProgramDesc; | ||
88 | |||
89 | /// Shader uniform type. | ||
90 | typedef enum { | ||
91 | UniformFloat, | ||
92 | UniformMat4, | ||
93 | UniformTexture, | ||
94 | UniformVec3, | ||
95 | UniformVec4 | ||
96 | } UniformType; | ||
97 | |||
98 | /// Shader uniform. | ||
99 | typedef struct ShaderUniform { | ||
100 | sstring name; | ||
101 | UniformType type; | ||
102 | union { | ||
103 | const Texture* texture; | ||
104 | mat4 mat4; | ||
105 | vec3 vec3; | ||
106 | vec4 vec4; | ||
107 | float scalar; | ||
108 | } value; | ||
109 | } ShaderUniform; | ||
110 | |||
111 | typedef enum { Texture2D, TextureCubeMap } TextureDimension; | ||
112 | |||
113 | typedef enum { | ||
114 | TextureDepth, | ||
115 | TextureRG16, | ||
116 | TextureRG16F, | ||
117 | TextureRGB8, | ||
118 | TextureRGBA8, | ||
119 | TextureSRGB8, | ||
120 | TextureSRGBA8 | ||
121 | } TextureFormat; | ||
122 | |||
123 | typedef enum { NearestFiltering, LinearFiltering } TextureFiltering; | ||
124 | |||
125 | typedef enum { Repeat, ClampToEdge } TextureWrapping; | ||
126 | |||
127 | typedef enum { | ||
128 | CubemapFacePosX, | ||
129 | CubemapFaceNegX, | ||
130 | CubemapFacePosY, | ||
131 | CubemapFaceNegY, | ||
132 | CubemapFacePosZ, | ||
133 | CubemapFaceNegZ | ||
134 | } CubemapFace; | ||
135 | |||
136 | /// Describes a texture. | ||
137 | typedef struct TextureDesc { | ||
138 | int width; | ||
139 | int height; | ||
140 | int depth; // Not used until 3D textures are exposed. | ||
141 | TextureDimension dimension; | ||
142 | TextureFormat format; | ||
143 | TextureFiltering filtering; | ||
144 | TextureWrapping wrap; | ||
145 | bool mipmaps; | ||
146 | union { | ||
147 | const void* pixels; | ||
148 | struct { | ||
149 | const void* pixels_pos_x; | ||
150 | const void* pixels_neg_x; | ||
151 | const void* pixels_pos_y; | ||
152 | const void* pixels_neg_y; | ||
153 | const void* pixels_pos_z; | ||
154 | const void* pixels_neg_z; | ||
155 | } cubemap; | ||
156 | }; | ||
157 | } TextureDesc; | ||
158 | |||
159 | /// Describes a renderbuffer. | ||
160 | typedef struct RenderBufferDesc { | ||
161 | int width; | ||
162 | int height; | ||
163 | TextureFormat texture_format; | ||
164 | } RenderBufferDesc; | ||
165 | |||
166 | /// Framebuffer attachment type. | ||
167 | typedef enum FrameBufferAttachmentType { | ||
168 | FrameBufferNoAttachment, | ||
169 | FrameBufferTexture, | ||
170 | FrameBufferCubemapTexture, | ||
171 | FrameBufferRenderBuffer | ||
172 | } FrameBufferAttachmentType; | ||
173 | |||
174 | /// Describes a framebuffer attachment. | ||
175 | typedef struct FrameBufferAttachment { | ||
176 | FrameBufferAttachmentType type; | ||
177 | union { | ||
178 | struct { | ||
179 | Texture* texture; | ||
180 | int mip_level; | ||
181 | } texture; | ||
182 | struct { | ||
183 | Texture* texture; | ||
184 | int mip_level; | ||
185 | CubemapFace face; | ||
186 | } cubemap; | ||
187 | RenderBuffer* renderbuffer; | ||
188 | }; | ||
189 | } FrameBufferAttachment; | ||
190 | |||
191 | /// Describes a framebuffer. | ||
192 | typedef struct FrameBufferDesc { | ||
193 | FrameBufferAttachment colour; | ||
194 | FrameBufferAttachment depth; | ||
195 | } FrameBufferDesc; | ||
196 | |||
197 | // ----------------------------------------------------------------------------- | ||
198 | // Render commands. | ||
199 | // ----------------------------------------------------------------------------- | ||
200 | |||
201 | /// Start a new frame. | ||
202 | void gfx_start_frame(RenderBackend*); | ||
203 | |||
204 | /// End a frame. | ||
205 | void gfx_end_frame(RenderBackend*); | ||
206 | |||
207 | /// Set the render backend's viewport dimensions. | ||
208 | void gfx_set_viewport(RenderBackend*, int width, int height); | ||
209 | |||
210 | /// Get the render backend's viewport dimensions. | ||
211 | void gfx_get_viewport(RenderBackend*, int* width, int* height); | ||
212 | |||
213 | // ----------------------------------------------------------------------------- | ||
214 | // Buffers. | ||
215 | // ----------------------------------------------------------------------------- | ||
216 | |||
217 | /// Create a buffer from raw data. | ||
218 | Buffer* gfx_make_buffer(RenderBackend*, const void*, size_t size_bytes); | ||
219 | |||
220 | /// Create a buffer from 2D vertices. | ||
221 | Buffer* gfx_make_buffer2d(RenderBackend*, const vec2* verts, size_t count); | ||
222 | |||
223 | /// Create a buffer from 3D vertices. | ||
224 | Buffer* gfx_make_buffer3d(RenderBackend*, const vec3* verts, size_t count); | ||
225 | |||
226 | /// Create a buffer from 4D vertices. | ||
227 | Buffer* gfx_make_buffer4d(RenderBackend*, const vec4* verts, size_t count); | ||
228 | |||
229 | /// Destroy the buffer. | ||
230 | void gfx_destroy_buffer(RenderBackend*, Buffer**); | ||
231 | |||
232 | // ----------------------------------------------------------------------------- | ||
233 | // Geometry. | ||
234 | // ----------------------------------------------------------------------------- | ||
235 | |||
236 | /// Create geometry. | ||
237 | Geometry* gfx_make_geometry(RenderBackend*, const GeometryDesc*); | ||
238 | |||
239 | /// Destroy the geometry. | ||
240 | void gfx_destroy_geometry(RenderBackend*, Geometry**); | ||
241 | |||
242 | /// Render the geometry. | ||
243 | void gfx_render_geometry(const Geometry*); | ||
244 | |||
245 | // ----------------------------------------------------------------------------- | ||
246 | // Textures. | ||
247 | // ----------------------------------------------------------------------------- | ||
248 | |||
249 | /// Create a texture. | ||
250 | Texture* gfx_make_texture(RenderBackend*, const TextureDesc*); | ||
251 | |||
252 | /// Destroy the texture. | ||
253 | void gfx_destroy_texture(RenderBackend*, Texture**); | ||
254 | |||
255 | // ----------------------------------------------------------------------------- | ||
256 | // Renderbuffers. | ||
257 | // ----------------------------------------------------------------------------- | ||
258 | |||
259 | /// Create a renderbuffer. | ||
260 | RenderBuffer* gfx_make_renderbuffer(RenderBackend*, const RenderBufferDesc*); | ||
261 | |||
262 | /// Destroy the renderbuffer. | ||
263 | void gfx_destroy_renderbuffer(RenderBackend*, RenderBuffer**); | ||
264 | |||
265 | // ----------------------------------------------------------------------------- | ||
266 | // Framebuffers. | ||
267 | // ----------------------------------------------------------------------------- | ||
268 | |||
269 | /// Create a framebuffer. | ||
270 | FrameBuffer* gfx_make_framebuffer(RenderBackend*, const FrameBufferDesc*); | ||
271 | |||
272 | /// Destroy the framebuffer. | ||
273 | void gfx_destroy_framebuffer(RenderBackend*, FrameBuffer**); | ||
274 | |||
275 | /// Attach a colour buffer to the framebuffer. | ||
276 | bool gfx_framebuffer_attach_colour(FrameBuffer*, const FrameBufferAttachment*); | ||
277 | |||
278 | /// Attach a depth buffer to the framebuffer. | ||
279 | bool gfx_framebuffer_attach_depth(FrameBuffer*, const FrameBufferAttachment*); | ||
280 | |||
281 | /// Activate the framebuffer. | ||
282 | /// Subsequent draw calls write to this framebuffer. | ||
283 | void gfx_activate_framebuffer(const FrameBuffer*); | ||
284 | |||
285 | /// Deactivate the framebuffer. | ||
286 | /// Subsequent draw calls write to the default framebuffer. | ||
287 | void gfx_deactivate_framebuffer(const FrameBuffer*); | ||
288 | |||
289 | /// Set the framebuffer's viewport. | ||
290 | /// This function should be called every time the framebuffer is activated. | ||
291 | void gfx_framebuffer_set_viewport(FrameBuffer*, int x, int y, int width, | ||
292 | int height); | ||
293 | |||
294 | // ----------------------------------------------------------------------------- | ||
295 | // Shaders. | ||
296 | // ----------------------------------------------------------------------------- | ||
297 | |||
298 | /// Create a shader. | ||
299 | Shader* gfx_make_shader(RenderBackend*, const ShaderDesc*); | ||
300 | |||
301 | /// Destroy the shader. | ||
302 | void gfx_destroy_shader(RenderBackend*, Shader**); | ||
303 | |||
304 | /// Create a shader program. | ||
305 | ShaderProgram* gfx_make_shader_program(RenderBackend*, | ||
306 | const ShaderProgramDesc*); | ||
307 | |||
308 | /// Destroy the shader program. | ||
309 | void gfx_destroy_shader_program(RenderBackend*, ShaderProgram**); | ||
310 | |||
311 | /// Activate the shader program. | ||
312 | void gfx_activate_shader_program(const ShaderProgram*); | ||
313 | |||
314 | /// Deactivate the shader program. | ||
315 | void gfx_deactivate_shader_program(const ShaderProgram*); | ||
316 | |||
317 | /// Apply the shader program's uniform variables. | ||
318 | /// | ||
319 | /// Calls to gfx_set_XYZ_uniform save the values of the uniform variables in the | ||
320 | /// graphics library. By calling this function, those values are passed on to | ||
321 | /// the graphics driver for rendering. | ||
322 | /// | ||
323 | /// This function should be called after setting all of the uniform variables | ||
324 | /// and prior to issuing a draw call. | ||
325 | void gfx_apply_uniforms(const ShaderProgram*); | ||
326 | |||
327 | /// Set the texture uniform. | ||
328 | /// Has no effect if the shader does not contain the given uniform. | ||
329 | void gfx_set_texture_uniform(ShaderProgram*, const char* name, const Texture*); | ||
330 | |||
331 | /// Set the matrix uniform. | ||
332 | /// Has no effect if the shader does not contain the given uniform. | ||
333 | void gfx_set_mat4_uniform(ShaderProgram*, const char* name, const mat4*); | ||
334 | |||
335 | /// Set the vec3 uniform. | ||
336 | /// Has no effect if the shader does not contain the given uniform. | ||
337 | void gfx_set_vec3_uniform(ShaderProgram*, const char* name, vec3); | ||
338 | |||
339 | /// Set the vec4 uniform. | ||
340 | /// Has no effect if the shader does not contain the given uniform. | ||
341 | void gfx_set_vec4_uniform(ShaderProgram*, const char* name, vec4); | ||
342 | |||
343 | /// Set the float uniform. | ||
344 | /// Has no effect if the shader does not contain the given uniform. | ||
345 | void gfx_set_float_uniform(ShaderProgram*, const char* name, float value); | ||
diff --git a/gfx/include/gfx/renderer.h b/gfx/include/gfx/renderer.h new file mode 100644 index 0000000..d82fab6 --- /dev/null +++ b/gfx/include/gfx/renderer.h | |||
@@ -0,0 +1,11 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef struct RenderBackend RenderBackend; | ||
4 | typedef struct Scene Scene; | ||
5 | typedef struct SceneCamera SceneCamera; | ||
6 | |||
7 | typedef struct Renderer Renderer; | ||
8 | |||
9 | /// Render the scene. | ||
10 | void gfx_render_scene(Renderer*, RenderBackend*, const Scene*, | ||
11 | const SceneCamera*); | ||
diff --git a/gfx/include/gfx/scene/README.md b/gfx/include/gfx/scene/README.md new file mode 100644 index 0000000..916596b --- /dev/null +++ b/gfx/include/gfx/scene/README.md | |||
@@ -0,0 +1,27 @@ | |||
1 | # Scene Graph | ||
2 | |||
3 | A scene graph implementation that includes: | ||
4 | |||
5 | - Camera | ||
6 | - Light | ||
7 | - Material | ||
8 | - Mesh | ||
9 | - Node | ||
10 | - Object | ||
11 | - Scene | ||
12 | |||
13 | ## Hierarchy and parenting | ||
14 | |||
15 | Scene graphs typically expose functions on nodes to add/remove objects, cameras, | ||
16 | lights, etc. This implementation forces the hierarchy to be a strict tree and | ||
17 | not a more general DAG. Given this, and to avoid confusion, we instead expose | ||
18 | functions to set the parent node of an object/camera/light. If we exposed the | ||
19 | former, the API could create the illusion that the hierarchy can be a DAG. | ||
20 | |||
21 | The strict tree hierarchy should not be that restrictive in practice. Even the | ||
22 | glTF 2.0 spec [enforces this](https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md#nodes-and-hierarchy): | ||
23 | |||
24 | *For Version 2.0 conformance, the glTF node hierarchy is not a directed acyclic | ||
25 | graph (DAG) or scene graph, but a disjoint union of strict trees. That is, no | ||
26 | node may be a direct descendant of more than one node. This restriction is meant | ||
27 | to simplify implementation and facilitate conformance.* | ||
diff --git a/gfx/include/gfx/scene/camera.h b/gfx/include/gfx/scene/camera.h new file mode 100644 index 0000000..99d83fe --- /dev/null +++ b/gfx/include/gfx/scene/camera.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <math/fwd.h> | ||
4 | |||
5 | typedef struct SceneNode SceneNode; | ||
6 | |||
7 | typedef struct SceneCamera SceneCamera; | ||
8 | |||
9 | /// Create a new camera. | ||
10 | SceneCamera* gfx_make_camera(); | ||
11 | |||
12 | /// Destroy the camera. | ||
13 | /// | ||
14 | /// The camera is conveniently removed from the scene graph and its parent scene | ||
15 | /// node is destroyed. | ||
16 | void gfx_destroy_camera(SceneCamera**); | ||
17 | |||
18 | /// Set the scene camera's math camera. | ||
19 | void gfx_set_camera_camera(SceneCamera* scene_camera, Camera* camera); | ||
20 | |||
21 | /// Get the scene camera's math camera. | ||
22 | Camera* gfx_get_camera_camera(SceneCamera*); | ||
diff --git a/gfx/include/gfx/scene/light.h b/gfx/include/gfx/scene/light.h new file mode 100644 index 0000000..132e344 --- /dev/null +++ b/gfx/include/gfx/scene/light.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef struct Texture Texture; | ||
4 | |||
5 | typedef struct Light Light; | ||
6 | |||
7 | /// Light type. | ||
8 | typedef enum LightType { EnvironmentLightType } LightType; | ||
9 | |||
10 | /// Describes an environment light. | ||
11 | typedef struct EnvironmentLightDesc { | ||
12 | const Texture* environment_map; | ||
13 | } EnvironmentLightDesc; | ||
14 | |||
15 | /// Describes a light. | ||
16 | typedef struct LightDesc { | ||
17 | LightType type; | ||
18 | union { | ||
19 | EnvironmentLightDesc environment; | ||
20 | } light; | ||
21 | } LightDesc; | ||
22 | |||
23 | /// Create a light. | ||
24 | Light* gfx_make_light(const LightDesc*); | ||
25 | |||
26 | /// Destroy the light. | ||
27 | /// | ||
28 | /// The light is conveniently removed from the scene graph and its parent scene | ||
29 | /// node is destroyed. | ||
30 | void gfx_destroy_light(Light**); | ||
diff --git a/gfx/include/gfx/scene/material.h b/gfx/include/gfx/scene/material.h new file mode 100644 index 0000000..6c22515 --- /dev/null +++ b/gfx/include/gfx/scene/material.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | #include <gfx/sizes.h> | ||
5 | |||
6 | typedef struct Material Material; | ||
7 | |||
8 | /// Describes a material. | ||
9 | /// | ||
10 | /// A material holds a shader program and a set of shader-specific uniform | ||
11 | /// variables. Two materials can share the same shader, but shader parameters | ||
12 | /// generally give two materials a different appearance. | ||
13 | typedef struct MaterialDesc { | ||
14 | ShaderProgram* shader; // TODO: Move to Mesh? Cannot fully determine shader | ||
15 | // permutation without geometry. Or move the creation | ||
16 | // of permutations to the renderer? A multi-pass | ||
17 | // renderer will juggle multiple shader programs | ||
18 | // anyway. | ||
19 | ShaderUniform uniforms[GFX_MAX_UNIFORMS_PER_MATERIAL]; | ||
20 | int num_uniforms; | ||
21 | } MaterialDesc; | ||
22 | |||
23 | /// Create a material. | ||
24 | Material* gfx_make_material(const MaterialDesc*); | ||
25 | |||
26 | /// Destroy the material. | ||
27 | /// | ||
28 | /// The caller must make sure that no Mesh points to the given Material. | ||
29 | /// For a safe purge of unused resources, see scene_purge(). | ||
30 | void gfx_destroy_material(Material**); | ||
diff --git a/gfx/include/gfx/scene/mesh.h b/gfx/include/gfx/scene/mesh.h new file mode 100644 index 0000000..f16572a --- /dev/null +++ b/gfx/include/gfx/scene/mesh.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef struct Geometry Geometry; | ||
4 | typedef struct Material Material; | ||
5 | |||
6 | typedef struct Mesh Mesh; | ||
7 | |||
8 | /// Describes a mesh. | ||
9 | typedef struct MeshDesc { | ||
10 | const Geometry* geometry; | ||
11 | const Material* material; | ||
12 | } MeshDesc; | ||
13 | |||
14 | /// Create a mesh. | ||
15 | Mesh* gfx_make_mesh(const MeshDesc*); | ||
16 | |||
17 | /// Destroy the mesh. | ||
18 | /// | ||
19 | /// The caller must make sure that no SceneObject points to the given Mesh. | ||
20 | /// For a safe purge of unused resources, see scene_purge(). | ||
21 | void gfx_destroy_mesh(Mesh**); | ||
diff --git a/gfx/include/gfx/scene/node.h b/gfx/include/gfx/scene/node.h new file mode 100644 index 0000000..736ff21 --- /dev/null +++ b/gfx/include/gfx/scene/node.h | |||
@@ -0,0 +1,45 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <math/fwd.h> | ||
4 | |||
5 | typedef struct Light Light; | ||
6 | typedef struct SceneCamera SceneCamera; | ||
7 | typedef struct SceneObject SceneObject; | ||
8 | |||
9 | typedef struct SceneNode SceneNode; | ||
10 | |||
11 | /// Create a new scene node. | ||
12 | /// | ||
13 | /// This node does not contain any camera, light, object, etc. and exists simply | ||
14 | /// as a logical and spatial construct. | ||
15 | SceneNode* gfx_make_node(); | ||
16 | |||
17 | /// Create a new camera node. | ||
18 | SceneNode* gfx_make_camera_node(SceneCamera*); | ||
19 | |||
20 | /// Create a new light node. | ||
21 | SceneNode* gfx_make_light_node(Light*); | ||
22 | |||
23 | /// Create a new object node. | ||
24 | SceneNode* gfx_make_object_node(SceneObject*); | ||
25 | |||
26 | /// Destroy the scene node. | ||
27 | /// | ||
28 | /// The scene node is conveniently removed from the scene graph. | ||
29 | /// | ||
30 | /// The node's camera, light, object, etc. is also conveniently destroyed. | ||
31 | void gfx_destroy_node(SceneNode**); | ||
32 | |||
33 | /// Set the node's parent. | ||
34 | /// | ||
35 | /// Pass in null to unwire from the existing parent, if one exists. | ||
36 | void gfx_set_node_parent(SceneNode*, SceneNode* parent); | ||
37 | |||
38 | /// Set the node's transform. | ||
39 | void gfx_set_node_transform(SceneNode*, const mat4* transform); | ||
40 | |||
41 | /// Set the node's position. | ||
42 | void gfx_set_node_position(SceneNode*, const vec3* position); | ||
43 | |||
44 | /// Set the node's rotation. | ||
45 | void gfx_set_node_rotation(SceneNode*, const mat4* rotation); | ||
diff --git a/gfx/include/gfx/scene/object.h b/gfx/include/gfx/scene/object.h new file mode 100644 index 0000000..69a2231 --- /dev/null +++ b/gfx/include/gfx/scene/object.h | |||
@@ -0,0 +1,26 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <math/fwd.h> | ||
4 | |||
5 | typedef struct Mesh Mesh; | ||
6 | typedef struct SceneNode SceneNode; | ||
7 | |||
8 | typedef struct SceneObject SceneObject; | ||
9 | |||
10 | /// Create a new object. | ||
11 | SceneObject* gfx_make_object(); | ||
12 | |||
13 | /// Destroy the object. | ||
14 | /// | ||
15 | /// The object is conveniently removed from the scene graph and its parent scene | ||
16 | /// node is destroyed. | ||
17 | void gfx_destroy_object(SceneObject**); | ||
18 | |||
19 | /// Sets the object's transformation matrix. | ||
20 | void gfx_set_object_transform(SceneObject*, const mat4*); | ||
21 | |||
22 | /// Add a mesh to the object. | ||
23 | void gfx_add_object_mesh(SceneObject*, Mesh*); | ||
24 | |||
25 | /// Remove a mesh from the object. | ||
26 | void gfx_remove_object_mesh(SceneObject*, Mesh*); | ||
diff --git a/gfx/include/gfx/scene/scene.h b/gfx/include/gfx/scene/scene.h new file mode 100644 index 0000000..0de0f3c --- /dev/null +++ b/gfx/include/gfx/scene/scene.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <math/fwd.h> | ||
4 | |||
5 | typedef struct SceneNode SceneNode; | ||
6 | |||
7 | typedef struct Scene Scene; | ||
8 | |||
9 | /// Get the scene's root node. | ||
10 | SceneNode* gfx_get_scene_root(Scene*); | ||
diff --git a/gfx/include/gfx/sizes.h b/gfx/include/gfx/sizes.h new file mode 100644 index 0000000..7681e1f --- /dev/null +++ b/gfx/include/gfx/sizes.h | |||
@@ -0,0 +1,58 @@ | |||
1 | /// Size constants used throughout the library. | ||
2 | #pragma once | ||
3 | |||
4 | // Scene. | ||
5 | |||
6 | /// Maximum number of cameras per scene. | ||
7 | #define GFX_MAX_NUM_CAMERAS 16 | ||
8 | |||
9 | /// Maximum number of lights. | ||
10 | #define GFX_MAX_NUM_LIGHTS 1024 | ||
11 | |||
12 | /// Maximum number of materials. | ||
13 | #define GFX_MAX_NUM_MATERIALS 1024 | ||
14 | |||
15 | /// Maximum number of meshes. | ||
16 | #define GFX_MAX_NUM_MESHES 1024 | ||
17 | |||
18 | /// Maximum number of mesh links. | ||
19 | #define GFX_MAX_NUM_MESH_LINKS 1024 | ||
20 | |||
21 | /// Maximum number of nodes per scene. | ||
22 | #define GFX_MAX_NUM_NODES 1024 | ||
23 | |||
24 | /// Maximum number of objects per scene. | ||
25 | #define GFX_MAX_NUM_OBJECTS 1024 | ||
26 | |||
27 | /// Maximum number of uniforms in a Material. | ||
28 | #define GFX_MAX_UNIFORMS_PER_MATERIAL 18 | ||
29 | |||
30 | // Render. | ||
31 | |||
32 | /// Maximum number of buffers per renderer. | ||
33 | #define GFX_MAX_NUM_BUFFERS 1024 | ||
34 | |||
35 | /// Maximum number of framebuffers per renderer. | ||
36 | #define GFX_MAX_NUM_FRAMEBUFFERS 32 | ||
37 | |||
38 | /// Maximum number of geometries per renderer. | ||
39 | #define GFX_MAX_NUM_GEOMETRIES 1024 | ||
40 | |||
41 | /// Maximum number of renderbuffers per renderer. | ||
42 | #define GFX_MAX_NUM_RENDERBUFFERS (GFX_MAX_NUM_FRAMEBUFFERS * 2) | ||
43 | |||
44 | /// Maximum number of shader programs per renderer. | ||
45 | #define GFX_MAX_NUM_SHADER_PROGRAMS 128 | ||
46 | |||
47 | /// Maximum number of shaders per renderer. | ||
48 | #define GFX_MAX_NUM_SHADERS (GFX_MAX_NUM_SHADER_PROGRAMS * 2) | ||
49 | |||
50 | /// Maximum number of textures per renderer. | ||
51 | #define GFX_MAX_NUM_TEXTURES 1024 | ||
52 | |||
53 | /// Maximum number of uniforms in a ShaderProgram. | ||
54 | #define GFX_MAX_UNIFORMS_PER_SHADER 16 | ||
55 | |||
56 | // Gfx | ||
57 | |||
58 | #define GFX_MAX_NUM_SCENES 4 | ||
diff --git a/gfx/include/gfx/util/README.md b/gfx/include/gfx/util/README.md new file mode 100644 index 0000000..642cf24 --- /dev/null +++ b/gfx/include/gfx/util/README.md | |||
@@ -0,0 +1,3 @@ | |||
1 | # GFX / util | ||
2 | |||
3 | Various utilities on top of the core graphics library. | ||
diff --git a/gfx/include/gfx/util/geometry.h b/gfx/include/gfx/util/geometry.h new file mode 100644 index 0000000..c62022b --- /dev/null +++ b/gfx/include/gfx/util/geometry.h | |||
@@ -0,0 +1,13 @@ | |||
1 | /// Functions to construct geometry procedurally. | ||
2 | #pragma once | ||
3 | |||
4 | #include <gfx/render_backend.h> | ||
5 | |||
6 | #include <math/vec2.h> | ||
7 | #include <math/vec3.h> | ||
8 | |||
9 | /// Construct a quad with positions in the range [-1, 1]^2. | ||
10 | Geometry* gfx_make_quad_11(RenderBackend*); | ||
11 | |||
12 | /// Construct a quad with positions in the range [0, 1]^2. | ||
13 | Geometry* gfx_make_quad_01(RenderBackend*); | ||
diff --git a/gfx/include/gfx/util/ibl.h b/gfx/include/gfx/util/ibl.h new file mode 100644 index 0000000..5d76e54 --- /dev/null +++ b/gfx/include/gfx/util/ibl.h | |||
@@ -0,0 +1,28 @@ | |||
1 | /// Functions for image-based lighting. | ||
2 | #pragma once | ||
3 | |||
4 | typedef struct IBL IBL; | ||
5 | |||
6 | typedef struct RenderBackend RenderBackend; | ||
7 | typedef struct Texture Texture; | ||
8 | |||
9 | /// Create an environment map filterer for IBL. | ||
10 | IBL* gfx_make_ibl(RenderBackend*); | ||
11 | |||
12 | /// Destroy the environment map filterer. | ||
13 | void gfx_destroy_ibl(RenderBackend*, IBL**); | ||
14 | |||
15 | /// Create a BRDF integration map for IBL. | ||
16 | Texture* gfx_make_brdf_integration_map(IBL*, RenderBackend*, int width, | ||
17 | int height); | ||
18 | |||
19 | /// Create an irradiance map (cubemap) from an environment map for IBL. | ||
20 | Texture* gfx_make_irradiance_map(IBL*, RenderBackend*, | ||
21 | const Texture* environment_map, int width, | ||
22 | int height); | ||
23 | |||
24 | /// Create a prefiltered environment map (cubemap) for IBL. | ||
25 | Texture* gfx_make_prefiltered_environment_map(IBL*, RenderBackend*, | ||
26 | const Texture* environment_map, | ||
27 | int width, int height, | ||
28 | int* max_mip_level); | ||
diff --git a/gfx/include/gfx/util/scene.h b/gfx/include/gfx/util/scene.h new file mode 100644 index 0000000..98267aa --- /dev/null +++ b/gfx/include/gfx/util/scene.h | |||
@@ -0,0 +1,31 @@ | |||
1 | /// Load scene files. | ||
2 | #pragma once | ||
3 | |||
4 | #include <stdbool.h> | ||
5 | #include <stddef.h> | ||
6 | |||
7 | typedef struct Gfx Gfx; | ||
8 | typedef struct SceneNode SceneNode; | ||
9 | typedef struct ShaderProgram ShaderProgram; | ||
10 | |||
11 | typedef struct LoadSceneCmd { | ||
12 | enum { SceneFromMemory, SceneFromFile } origin; | ||
13 | union { | ||
14 | struct { | ||
15 | const char* filepath; | ||
16 | }; | ||
17 | struct { | ||
18 | const void* data; | ||
19 | size_t size_bytes; | ||
20 | }; | ||
21 | }; | ||
22 | } LoadSceneCmd; | ||
23 | |||
24 | /// Load a scene. | ||
25 | /// | ||
26 | /// |root_node| is the node under which scene elements are loaded. | ||
27 | /// |shader| is the shader program assigned to the loaded scene objects. | ||
28 | /// | ||
29 | /// Currently only supports the GLTF format. | ||
30 | bool gfx_load_scene( | ||
31 | Gfx*, SceneNode* root_node, ShaderProgram* shader, const LoadSceneCmd*); | ||
diff --git a/gfx/include/gfx/util/shader.h b/gfx/include/gfx/util/shader.h new file mode 100644 index 0000000..d801153 --- /dev/null +++ b/gfx/include/gfx/util/shader.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /// A variety of shaders included for convenience. | ||
2 | #pragma once | ||
3 | |||
4 | typedef struct RenderBackend RenderBackend; | ||
5 | typedef struct ShaderProgram ShaderProgram; | ||
6 | |||
7 | /// Create a BRDF integration map shader. | ||
8 | ShaderProgram* gfx_make_brdf_integration_map_shader(RenderBackend*); | ||
9 | |||
10 | /// Create a Cook-Torrance shader. | ||
11 | ShaderProgram* gfx_make_cook_torrance_shader(RenderBackend*); | ||
12 | |||
13 | /// Create a 3D debugging shader. | ||
14 | ShaderProgram* gfx_make_debug3d_shader(RenderBackend*); | ||
15 | |||
16 | /// Create a shader for computing irradiance maps from cube maps. | ||
17 | ShaderProgram* gfx_make_irradiance_map_shader(RenderBackend*); | ||
18 | |||
19 | /// Create a shader for computing prefiltered environment maps from cube maps. | ||
20 | ShaderProgram* gfx_make_prefiltered_environment_map_shader(RenderBackend*); | ||
21 | |||
22 | /// Create a skyquad shader. | ||
23 | ShaderProgram* gfx_make_skyquad_shader(RenderBackend*); | ||
24 | |||
25 | /// Create a shader to view normal-mapped normals. | ||
26 | ShaderProgram* gfx_make_view_normal_mapped_normals_shader(RenderBackend*); | ||
27 | |||
28 | /// Create a shader to view vertex normals. | ||
29 | ShaderProgram* gfx_make_view_normals_shader(RenderBackend*); | ||
30 | |||
31 | /// Create a shader to view vertex tangents. | ||
32 | ShaderProgram* gfx_make_view_tangents_shader(RenderBackend*); | ||
33 | |||
34 | /// Create a shader to view textures. | ||
35 | ShaderProgram* gfx_make_view_texture_shader(RenderBackend*); | ||
diff --git a/gfx/include/gfx/util/skyquad.h b/gfx/include/gfx/util/skyquad.h new file mode 100644 index 0000000..88c9c41 --- /dev/null +++ b/gfx/include/gfx/util/skyquad.h | |||
@@ -0,0 +1,10 @@ | |||
1 | /// A skyquad is like a skybox but with a single quad. | ||
2 | #pragma once | ||
3 | |||
4 | typedef struct Gfx Gfx; | ||
5 | typedef struct Scene Scene; | ||
6 | typedef struct SceneObject SceneObject; | ||
7 | typedef struct Texture Texture; | ||
8 | |||
9 | /// Create a skyquad. | ||
10 | SceneObject* gfx_make_skyquad(Gfx*, Scene*, const Texture*); | ||
diff --git a/gfx/include/gfx/util/texture.h b/gfx/include/gfx/util/texture.h new file mode 100644 index 0000000..cdc582b --- /dev/null +++ b/gfx/include/gfx/util/texture.h | |||
@@ -0,0 +1,63 @@ | |||
1 | /// Load textures from images. | ||
2 | #pragma once | ||
3 | |||
4 | #include <gfx/render_backend.h> | ||
5 | |||
6 | #include <cstring.h> | ||
7 | |||
8 | #include <stdbool.h> | ||
9 | #include <stddef.h> | ||
10 | |||
11 | /// Describes a texture's colour space. | ||
12 | typedef enum TextureColourSpace { | ||
13 | sRGB, // The most likely default. | ||
14 | LinearColourSpace, | ||
15 | } TextureColourSpace; | ||
16 | |||
17 | /// Describes a command to load a texture. | ||
18 | typedef struct LoadTextureCmd { | ||
19 | enum { TextureFromMemory, TextureFromFile } origin; | ||
20 | enum { LoadTexture, LoadCubemap } type; | ||
21 | TextureColourSpace colour_space; | ||
22 | TextureFiltering filtering; | ||
23 | TextureWrapping wrap; | ||
24 | bool mipmaps; | ||
25 | union { | ||
26 | // A single texture. | ||
27 | struct { | ||
28 | union { | ||
29 | struct { | ||
30 | mstring filepath; | ||
31 | }; | ||
32 | struct { | ||
33 | const void* data; | ||
34 | size_t size_bytes; | ||
35 | }; | ||
36 | }; | ||
37 | } texture; | ||
38 | // Cubemap texture. | ||
39 | struct { | ||
40 | union { | ||
41 | struct { | ||
42 | mstring filepath_pos_x; | ||
43 | mstring filepath_neg_x; | ||
44 | mstring filepath_pos_y; | ||
45 | mstring filepath_neg_y; | ||
46 | mstring filepath_pos_z; | ||
47 | mstring filepath_neg_z; | ||
48 | } filepaths; | ||
49 | struct { | ||
50 | const void* data_pos_x; | ||
51 | const void* data_neg_x; | ||
52 | const void* data_pos_y; | ||
53 | const void* data_neg_y; | ||
54 | const void* data_pos_z; | ||
55 | const void* data_neg_z; | ||
56 | } buffers; | ||
57 | }; | ||
58 | } cubemap; | ||
59 | } data; | ||
60 | } LoadTextureCmd; | ||
61 | |||
62 | /// Load a cubemap texture. | ||
63 | Texture* gfx_load_texture(RenderBackend*, const LoadTextureCmd*); | ||
diff --git a/gfx/shaders/brdf_integration_map.frag b/gfx/shaders/brdf_integration_map.frag new file mode 100644 index 0000000..bb2cebd --- /dev/null +++ b/gfx/shaders/brdf_integration_map.frag | |||
@@ -0,0 +1,93 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | #define PI 3.1415926535897932384626433832795 | ||
4 | #define NUM_SAMPLES 1024 | ||
5 | |||
6 | in vec2 Texcoord; | ||
7 | |||
8 | layout (location = 0) out vec2 Color; | ||
9 | |||
10 | float radical_inverse_VdC(uint bits) { | ||
11 | bits = (bits << 16u) | (bits >> 16u); | ||
12 | bits = ((bits & 0x55555555u) << 1u) | ((bits & 0xAAAAAAAAu) >> 1u); | ||
13 | bits = ((bits & 0x33333333u) << 2u) | ((bits & 0xCCCCCCCCu) >> 2u); | ||
14 | bits = ((bits & 0x0F0F0F0Fu) << 4u) | ((bits & 0xF0F0F0F0u) >> 4u); | ||
15 | bits = ((bits & 0x00FF00FFu) << 8u) | ((bits & 0xFF00FF00u) >> 8u); | ||
16 | return float(bits) * 2.3283064365386963e-10; // / 0x100000000 | ||
17 | } | ||
18 | |||
19 | vec2 hammersley(uint i, uint N) { | ||
20 | return vec2(float(i)/float(N), radical_inverse_VdC(i)); | ||
21 | } | ||
22 | |||
23 | vec3 importance_sample_GGX(vec2 sample_box, vec3 N, float roughness) { | ||
24 | float r2 = roughness * roughness; | ||
25 | |||
26 | // Spherical coordinates. | ||
27 | float phi = 2.0 * PI * sample_box.x; | ||
28 | float cos_theta = sqrt((1.0 - sample_box.y) / (1.0 + (r2*r2 - 1.0) * sample_box.y)); | ||
29 | float sin_theta = sqrt(1.0 - cos_theta * cos_theta); | ||
30 | |||
31 | // Map spherical coordinates to Cartesian coordinates in tangent space. | ||
32 | vec3 H = vec3(cos(phi) * sin_theta, sin(phi) * sin_theta, cos_theta); | ||
33 | |||
34 | // Map from tangent space to world space. | ||
35 | // | ||
36 | // Tangent space: | ||
37 | // | ||
38 | // N | ||
39 | // | | ||
40 | // | | ||
41 | // | | ||
42 | // |_ _ _ _ _ B | ||
43 | // / | ||
44 | // / | ||
45 | // T | ||
46 | vec3 up = abs(N.z) < 0.999 ? vec3(0.0, 0.0, 1.0) : vec3(1.0, 0.0, 0.0); | ||
47 | vec3 T = normalize(cross(up,N)); | ||
48 | vec3 B = cross(N,T); | ||
49 | vec3 H_ws = H.x*T + H.y*B + H.z*N; | ||
50 | return H_ws; | ||
51 | } | ||
52 | |||
53 | float geometry_schlick_GGX(float k, float NdotV) { | ||
54 | return NdotV / (NdotV * (1.0 - k) + k); | ||
55 | } | ||
56 | |||
57 | float geometry_smith(float roughness, float NdotL, float NdotV) { | ||
58 | float k = roughness * roughness / 2.0; // IBL | ||
59 | return geometry_schlick_GGX(k, NdotV) * geometry_schlick_GGX(k, NdotL); | ||
60 | } | ||
61 | |||
62 | vec2 integrate_brdf(float NdotV, float roughness) | ||
63 | { | ||
64 | vec3 V = vec3(sqrt(1.0 - NdotV * NdotV), 0.0, NdotV); | ||
65 | vec3 N = vec3(0.0, 0.0, 1.0); | ||
66 | |||
67 | float scale = 0.0; | ||
68 | float bias = 0.0; | ||
69 | for (int i = 0; i < NUM_SAMPLES; ++i) { | ||
70 | vec2 sample_box = hammersley(i, NUM_SAMPLES); | ||
71 | vec3 H = importance_sample_GGX(sample_box, N, roughness); | ||
72 | vec3 L = reflect(-V,H); | ||
73 | float NdotL = max(0.0, L.z); | ||
74 | |||
75 | if (NdotL > 0.0) { | ||
76 | float NdotH = max(0.0, H.z); | ||
77 | float VdotH = max(0.0, dot(V,H)); | ||
78 | float G = geometry_smith(roughness, NdotL, NdotV); | ||
79 | float G_vis = (G * VdotH) / (NdotH * NdotV); | ||
80 | float Fc = pow(1.0 - VdotH, 5.0); | ||
81 | scale += (1.0 - Fc) * G_vis; | ||
82 | bias += Fc * G_vis; | ||
83 | } | ||
84 | } | ||
85 | scale /= float(NUM_SAMPLES); | ||
86 | bias /= float(NUM_SAMPLES); | ||
87 | return vec2(scale, bias); | ||
88 | } | ||
89 | |||
90 | void main() | ||
91 | { | ||
92 | Color = integrate_brdf(Texcoord.x, Texcoord.y); | ||
93 | } | ||
diff --git a/gfx/shaders/cook_torrance.frag b/gfx/shaders/cook_torrance.frag new file mode 100644 index 0000000..b4cf590 --- /dev/null +++ b/gfx/shaders/cook_torrance.frag | |||
@@ -0,0 +1,215 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform vec4 BaseColorFactor; | ||
4 | uniform float MetallicFactor; | ||
5 | uniform float RoughnessFactor; | ||
6 | uniform vec3 EmissiveFactor; | ||
7 | |||
8 | uniform sampler2D BaseColorTexture; | ||
9 | uniform sampler2D MetallicRoughnessTexture; | ||
10 | uniform sampler2D EmissiveTexture; | ||
11 | uniform sampler2D AmbientOcclusionTexture; | ||
12 | uniform sampler2D NormalMap; | ||
13 | |||
14 | uniform samplerCube Sky; | ||
15 | uniform samplerCube IrradianceMap; | ||
16 | uniform samplerCube PrefilteredEnvironmentMap; | ||
17 | uniform sampler2D BRDFIntegrationMap; | ||
18 | uniform float MaxReflectionLOD; | ||
19 | |||
20 | uniform vec3 CameraPosition; // World space. | ||
21 | |||
22 | // World-space position and normal. | ||
23 | in vec3 Position; | ||
24 | in vec3 Normal; | ||
25 | #ifdef HAS_TANGENTS | ||
26 | in vec4 Tangent; | ||
27 | #endif // HAS_TANGENTS | ||
28 | in vec2 Texcoord; | ||
29 | |||
30 | layout (location = 0) out vec4 Colour; | ||
31 | |||
32 | #define PI 3.1415926535897932384626433832795 | ||
33 | #define INV_PI 0.3183098861837907 | ||
34 | |||
35 | // TODO: Move to "normal.h" | ||
36 | vec3 get_vs_normal(vec3 normalWs, vec3 normalMapSample) { | ||
37 | vec3 N = normalize(Normal); | ||
38 | #ifdef HAS_TANGENTS | ||
39 | //vec3 T = normalize(tangent.xyz - dot(tangent.xyz, N) * N); | ||
40 | vec3 T = Tangent.xyz; | ||
41 | vec3 B = Tangent.w * cross(N, T); | ||
42 | #else // No tangents | ||
43 | vec3 pos_dx = dFdx(Position); | ||
44 | vec3 pos_dy = dFdy(Position); | ||
45 | // vec3 uv_dx = vec3(dFdx(Texcoord), 0.0); | ||
46 | // vec3 uv_dy = vec3(dFdy(Texcoord), 0.0); | ||
47 | vec3 uv_dx = dFdx(vec3(Texcoord, 0.0)); | ||
48 | vec3 uv_dy = dFdy(vec3(Texcoord, 0.0)); | ||
49 | vec3 T = (uv_dy.t * pos_dx - uv_dx.t * pos_dy) / | ||
50 | (uv_dx.s * uv_dy.t - uv_dy.s * uv_dx.t); | ||
51 | // vec3 T = pos_dx * uv_dy.t - pos_dy * uv_dx.t; | ||
52 | T = normalize(T - dot(T, N) * N); | ||
53 | vec3 B = normalize(cross(N, T)); | ||
54 | #endif // HAS_TANGENTS | ||
55 | |||
56 | if (gl_FrontFacing == false) { | ||
57 | T = -T; | ||
58 | B = -B; | ||
59 | N = -N; | ||
60 | } | ||
61 | |||
62 | vec3 s = normalMapSample; | ||
63 | //return normalize(s.x * T + s.y * B + s.z * N); | ||
64 | return normalize(mat3(T,B,N) * s); | ||
65 | } | ||
66 | |||
67 | float trowbridge_reitz_GGX(float roughness, float NdotH) { | ||
68 | float a = roughness * roughness; | ||
69 | float a2 = a * a; | ||
70 | float d = NdotH * NdotH * (a2 - 1.0) + 1.0; | ||
71 | return a2 / (PI * d * d); | ||
72 | } | ||
73 | |||
74 | float geometry_schlick_GGX(float k, float NdotV) { | ||
75 | return NdotV / (NdotV * (1.0 - k) + k); | ||
76 | } | ||
77 | |||
78 | float geometry_smith(float roughness, float NdotL, float NdotV) { | ||
79 | float k = roughness * roughness / 2.0; // IBL | ||
80 | return geometry_schlick_GGX(k, NdotV) * geometry_schlick_GGX(k, NdotL); | ||
81 | } | ||
82 | |||
83 | vec3 fresnel_schlick(vec3 F0, float HdotV) { | ||
84 | return F0 + (1.0 - F0) * pow(clamp(1.0 - HdotV, 0.0, 1.0), 5.0); | ||
85 | } | ||
86 | |||
87 | vec3 fresnel_schlick_roughness(vec3 F0, float NdotV, float roughness) { | ||
88 | return F0 | ||
89 | + (max(vec3(1.0 - roughness), F0) - F0) | ||
90 | * pow(clamp(1.0 - NdotV, 0.0, 1.0), 5.0); | ||
91 | } | ||
92 | |||
93 | // Cook-Torrance BRDF for a single light direction. | ||
94 | vec3 cook_torrance( | ||
95 | vec3 albedo, float metallic, float roughness, vec3 emissive, | ||
96 | float NdotL, float NdotV, float NdotH, float HdotV) { | ||
97 | vec3 F0 = mix(vec3(0.04), albedo, metallic); | ||
98 | float D = trowbridge_reitz_GGX(roughness, NdotH); | ||
99 | vec3 F = fresnel_schlick(F0, HdotV); | ||
100 | float G = geometry_smith(roughness, NdotL, NdotV); | ||
101 | vec3 Kd = mix(vec3(1.0) - F, vec3(0.0), metallic); | ||
102 | vec3 diffuse = Kd*albedo*INV_PI; | ||
103 | // Take a max to prevent division by 0 when either dot product is 0. | ||
104 | vec3 specular = (D*F*G) / max(4.0 * NdotV * NdotL, 0.0001); | ||
105 | return emissive + diffuse + specular; | ||
106 | } | ||
107 | |||
108 | // Cook-Torrance BRDF for IBL. | ||
109 | vec3 cook_torrance_IBL( | ||
110 | vec3 albedo, float metallic, float roughness, vec3 emissive, float occlusion, | ||
111 | float NdotV, | ||
112 | vec3 irradiance, vec3 prefiltered_env, vec2 BRDF_env, vec3 ambient) { | ||
113 | vec3 F0 = mix(vec3(0.04), albedo, metallic); | ||
114 | vec3 F = fresnel_schlick_roughness(F0, NdotV, roughness); | ||
115 | vec3 Kd = mix(vec3(1.0) - F, vec3(0.0), metallic); | ||
116 | vec3 diffuse = Kd * albedo * INV_PI * irradiance; | ||
117 | vec3 specular = prefiltered_env * (F * BRDF_env.x + BRDF_env.y); | ||
118 | float ambient_strength = 0.05; // TODO: Make ambient strength a parameter. | ||
119 | ambient *= ambient_strength * occlusion; | ||
120 | emissive *= EmissiveFactor; | ||
121 | return emissive + ambient + diffuse + specular; | ||
122 | } | ||
123 | |||
124 | void main() | ||
125 | { | ||
126 | // TODO: Also use the specular F0 map from the model, and emissive. Make sure | ||
127 | // to use all maps. | ||
128 | // https://sketchfab.com/models/b81008d513954189a063ff901f7abfe4 | ||
129 | // TODO: Normal map samples should not be gamma-corrected when loaded, they | ||
130 | // are already authored as linear. | ||
131 | vec3 normalMapSample = normalize(texture(NormalMap, Texcoord).xyz * 2.0 - 1.0); | ||
132 | //vec3 normalMapSample = texture(NormalMap, Texcoord).xyz; | ||
133 | //normalMapSample = normalize(pow(normalMapSample, vec3(1.0 / 2.2)) * 2.0 - 1.0); | ||
134 | vec3 N = get_vs_normal(Normal, normalMapSample); | ||
135 | vec3 V = normalize(CameraPosition - Position); | ||
136 | vec3 R = reflect(-V, N); | ||
137 | // Not needed for IBL. | ||
138 | //vec3 L = N; | ||
139 | //vec3 H = normalize(L + V); | ||
140 | |||
141 | float NdotV = max(0.0, dot(N, V)); | ||
142 | // Not needed for IBL. | ||
143 | //float NdotL = max(0.0, dot(N,L)); | ||
144 | //float NdotH = max(0.0, dot(N,H)); | ||
145 | //float HdotV = clamp(dot(H,V), 0.0, 1.0); // Clamp to prevent black spots. | ||
146 | |||
147 | // TODO: BaseColorFactor and BaseColorTexture are vec4/rgba quantities | ||
148 | // respectively. Handle the alpha channel later. | ||
149 | // TODO: Other factors. | ||
150 | vec3 albedo = vec3(BaseColorFactor) * texture(BaseColorTexture, Texcoord).rgb; | ||
151 | vec3 metal_roughness = texture(MetallicRoughnessTexture, Texcoord).rgb; | ||
152 | vec3 emissive = texture(EmissiveTexture, Texcoord).rgb; | ||
153 | float occlusion = texture(AmbientOcclusionTexture, Texcoord).r; | ||
154 | float metallic = MetallicFactor * metal_roughness.b; | ||
155 | float roughness = metal_roughness.g; | ||
156 | |||
157 | // For a single light direction: | ||
158 | // vec3 brdf = cook_torrance(albedo, metallic, roughness, emissive, NdotL, NdotV, NdotH, HdotV); | ||
159 | // vec3 Li = texture(Sky, N).rgb; | ||
160 | // vec3 colour = brdf * Li * NdotL; | ||
161 | |||
162 | // For IBL: | ||
163 | vec3 irradiance = texture(IrradianceMap, N).rgb; | ||
164 | vec3 prefiltered_env = textureLod(PrefilteredEnvironmentMap, R, roughness * MaxReflectionLOD).rgb; | ||
165 | vec3 ambient = textureLod(PrefilteredEnvironmentMap, R, MaxReflectionLOD).rgb; | ||
166 | vec2 BRDF_env = texture(BRDFIntegrationMap, vec2(NdotV, roughness)).rg; | ||
167 | vec3 colour = cook_torrance_IBL( | ||
168 | albedo, metallic, roughness, emissive, occlusion, NdotV, irradiance, prefiltered_env, BRDF_env, ambient); | ||
169 | |||
170 | // Reinhard tone mapping. | ||
171 | colour = colour / (colour + vec3(1.0)); | ||
172 | |||
173 | // Gamma correction. | ||
174 | colour = pow(colour, vec3(1.0 / 2.2)); | ||
175 | |||
176 | // Debugging. | ||
177 | // | ||
178 | // Normal texture. | ||
179 | //colour = normalMapSample * 0.5 + 0.5; | ||
180 | // | ||
181 | // Geometry normal. | ||
182 | //colour = normalize(Normal) * 0.5 + 0.5; | ||
183 | // | ||
184 | // Shading normal. | ||
185 | //colour = N * 0.5 + 0.5; | ||
186 | // | ||
187 | // Tangent and bitangent. | ||
188 | // { | ||
189 | // vec3 pos_dx = dFdx(Position); | ||
190 | // vec3 pos_dy = dFdy(Position); | ||
191 | // // vec3 uv_dx = vec3(dFdx(Texcoord), 0.0); | ||
192 | // // vec3 uv_dy = vec3(dFdy(Texcoord), 0.0); | ||
193 | // vec3 uv_dx = dFdx(vec3(Texcoord, 0.0)); | ||
194 | // vec3 uv_dy = dFdy(vec3(Texcoord, 0.0)); | ||
195 | // vec3 T = (uv_dy.t * pos_dx - uv_dx.t * pos_dy) / | ||
196 | // (uv_dx.s * uv_dy.t - uv_dy.s * uv_dx.t); | ||
197 | // // vec3 T = pos_dx * uv_dy.t - pos_dy * uv_dx.t; | ||
198 | // vec3 N = normalize(Normal); | ||
199 | // T = normalize(T - dot(T, N) * N); | ||
200 | // vec3 B = normalize(cross(N, T)); | ||
201 | |||
202 | // if (gl_FrontFacing == false) { | ||
203 | // T = -T; | ||
204 | // B = -B; | ||
205 | // N = -N; | ||
206 | // } | ||
207 | |||
208 | // // Tangent. | ||
209 | // //colour = T * 0.5 + 0.5; | ||
210 | // // Bitangent. | ||
211 | // //colour = B * 0.5 + 0.5; | ||
212 | // } | ||
213 | |||
214 | Colour = vec4(colour, 1.0); | ||
215 | } | ||
diff --git a/gfx/shaders/cook_torrance.vert b/gfx/shaders/cook_torrance.vert new file mode 100644 index 0000000..c66efa6 --- /dev/null +++ b/gfx/shaders/cook_torrance.vert | |||
@@ -0,0 +1,31 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform mat4 ModelMatrix; | ||
4 | uniform mat4 MVP; | ||
5 | |||
6 | layout (location = 0) in vec3 vPosition; | ||
7 | layout (location = 1) in vec3 vNormal; | ||
8 | #ifdef HAS_TANGENTS | ||
9 | layout (location = 2) in vec4 vTangent; | ||
10 | #endif // HAS_TANGENTS | ||
11 | layout (location = 3) in vec2 vTexcoord; | ||
12 | |||
13 | // World-space position and normal. | ||
14 | out vec3 Position; | ||
15 | out vec3 Normal; | ||
16 | #ifdef HAS_TANGENTS | ||
17 | out vec4 Tangent; | ||
18 | #endif // HAS_TANGENTS | ||
19 | out vec2 Texcoord; | ||
20 | |||
21 | void main() | ||
22 | { | ||
23 | Position = vec3(ModelMatrix * vec4(vPosition, 1.0)); | ||
24 | Normal = mat3(ModelMatrix) * vNormal; | ||
25 | //Normal = normalize(ModelMatrix * vec4(vNormal, 0.0)).xyz; | ||
26 | #ifdef HAS_TANGENTS | ||
27 | Tangent = vec4(mat3(ModelMatrix) * vTangent.xyz, vTangent.w); | ||
28 | #endif // HAS_TANGENTS | ||
29 | Texcoord = vTexcoord; | ||
30 | gl_Position = MVP * vec4(vPosition, 1.0); | ||
31 | } | ||
diff --git a/gfx/shaders/cubemap_filtering.vert b/gfx/shaders/cubemap_filtering.vert new file mode 100644 index 0000000..cdc291c --- /dev/null +++ b/gfx/shaders/cubemap_filtering.vert | |||
@@ -0,0 +1,34 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | #define PI 3.1415926535897932384626433832795 | ||
4 | #define FOVY (90.0 * PI / 180.0) | ||
5 | |||
6 | uniform mat4 Modelview; | ||
7 | |||
8 | layout (location = 0) in vec2 vPosition; | ||
9 | |||
10 | out vec3 Ray; | ||
11 | |||
12 | // This is very similar to the skyquad vertex shader. | ||
13 | // | ||
14 | // The ray is not normalized because it isn't necessary for cubemap sampling. | ||
15 | // | ||
16 | // We also use a fixed fovy = 90 degrees because we want the frustum to pass | ||
17 | // exactly through each face of the cube. The aspect ratio is also just 1. | ||
18 | // | ||
19 | // |d| here appears with a positive sign in the returned vector because the | ||
20 | // rotation part of the Modelview matrix is responsible for orienting the ray | ||
21 | // appropriately. | ||
22 | vec3 sky_ray(vec2 Texcoord) | ||
23 | { | ||
24 | float d = 0.5 / tan(FOVY/2.0); | ||
25 | return vec3(Texcoord.x - 0.5, Texcoord.y - 0.5, d); | ||
26 | } | ||
27 | |||
28 | void main() | ||
29 | { | ||
30 | mat3 Rotation = mat3(Modelview); | ||
31 | Ray = Rotation * sky_ray(vPosition*0.5 + 0.5); // map [-1,1] -> [0,1] | ||
32 | // Should disable depth test when rendering. | ||
33 | gl_Position = vec4(vPosition.xy, 0.99999, 1.0); | ||
34 | } | ||
diff --git a/gfx/shaders/debug3d.frag b/gfx/shaders/debug3d.frag new file mode 100644 index 0000000..54568d4 --- /dev/null +++ b/gfx/shaders/debug3d.frag | |||
@@ -0,0 +1,21 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | const vec3 Colour = vec3(0.97, 0.948, 0.91); | ||
4 | |||
5 | const vec3 ToLight = vec3(1, 0.7, 1); | ||
6 | |||
7 | in vec3 Normal; | ||
8 | |||
9 | out vec4 FragColour; | ||
10 | |||
11 | void main() | ||
12 | { | ||
13 | vec3 N = normalize(Normal); | ||
14 | vec3 L = normalize(ToLight); | ||
15 | |||
16 | vec3 a = vec3(0.7); | ||
17 | vec3 d = vec3(0.3 * (0.7*max(0.0, dot(L,N)) + 0.3*max(0.0, dot(-L,N)))); | ||
18 | vec3 c = Colour * (a+d); | ||
19 | |||
20 | FragColour = vec4(pow(c, vec3(1.0 / 2.2)), 1.0); | ||
21 | } | ||
diff --git a/gfx/shaders/debug3d.vert b/gfx/shaders/debug3d.vert new file mode 100644 index 0000000..d51684f --- /dev/null +++ b/gfx/shaders/debug3d.vert | |||
@@ -0,0 +1,15 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform mat4 Modelview; | ||
4 | uniform mat4 Projection; | ||
5 | |||
6 | layout (location = 0) in vec3 vPosition; | ||
7 | layout (location = 1) in vec3 vNormal; | ||
8 | |||
9 | out vec3 Normal; | ||
10 | |||
11 | void main() | ||
12 | { | ||
13 | Normal = mat3(Modelview) * vNormal; | ||
14 | gl_Position = Projection * Modelview * vec4(vPosition, 1.0); | ||
15 | } | ||
diff --git a/gfx/shaders/irradiance_map.frag b/gfx/shaders/irradiance_map.frag new file mode 100644 index 0000000..3cfe5b2 --- /dev/null +++ b/gfx/shaders/irradiance_map.frag | |||
@@ -0,0 +1,60 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | #define PI 3.1415926535897932384626433832795 | ||
4 | #define EPS 0.001 | ||
5 | #define NUM_SAMPLES_AZIMUTH 250 | ||
6 | #define NUM_SAMPLES_ZENITH 50 | ||
7 | #define MAX_AZIMUTH (2*PI) | ||
8 | #define MAX_ZENITH (PI/2.0) | ||
9 | #define AZIMUTH_DELTA (MAX_AZIMUTH / float(NUM_SAMPLES_AZIMUTH)) | ||
10 | #define ZENITH_DELTA (MAX_ZENITH / float(NUM_SAMPLES_ZENITH)) | ||
11 | |||
12 | uniform samplerCube Sky; | ||
13 | |||
14 | in vec3 Ray; | ||
15 | |||
16 | layout (location = 0) out vec4 Color; | ||
17 | |||
18 | void main() | ||
19 | { | ||
20 | // Tangent space: | ||
21 | // | ||
22 | // N | ||
23 | // | | ||
24 | // | | ||
25 | // | | ||
26 | // |_ _ _ _ _ B | ||
27 | // / | ||
28 | // / | ||
29 | // T | ||
30 | vec3 N = normalize(Ray); | ||
31 | vec3 B = (abs(N.x) - 1.0 <= EPS) ? vec3(0.0, 0.0, 1.0) : vec3(1.0, 0.0, 0.0); | ||
32 | vec3 T = cross(B, N); | ||
33 | B = cross(N, T); | ||
34 | |||
35 | int num_samples = 0; | ||
36 | vec3 irradiance = vec3(0.0); | ||
37 | for (float theta = 0.0; theta < MAX_AZIMUTH; theta += AZIMUTH_DELTA) { | ||
38 | for (float phi = 0.0; phi < MAX_ZENITH; phi += ZENITH_DELTA) { | ||
39 | // Spherical to Cartesian. | ||
40 | vec3 sample_tangent_space = vec3( | ||
41 | sin(phi) * cos(theta), | ||
42 | sin(phi) * sin(theta), | ||
43 | cos(phi)); | ||
44 | // Tangent space to world space. | ||
45 | vec3 sample_world_space = | ||
46 | sample_tangent_space.x * B + | ||
47 | sample_tangent_space.y * T + | ||
48 | sample_tangent_space.z * N; | ||
49 | |||
50 | irradiance += texture(Sky, sample_world_space).rgb * sin(phi) * cos(phi); | ||
51 | num_samples += 1; | ||
52 | } | ||
53 | } | ||
54 | irradiance = PI * irradiance / float(num_samples); | ||
55 | |||
56 | // For debugging in trace. | ||
57 | //irradiance = pow(irradiance, vec3(1.0/2.2)); | ||
58 | |||
59 | Color = vec4(irradiance, 1.0); | ||
60 | } | ||
diff --git a/gfx/shaders/prefiltered_environment_map.frag b/gfx/shaders/prefiltered_environment_map.frag new file mode 100644 index 0000000..8327950 --- /dev/null +++ b/gfx/shaders/prefiltered_environment_map.frag | |||
@@ -0,0 +1,78 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | #define PI 3.1415926535897932384626433832795 | ||
4 | #define NUM_SAMPLES 4096 | ||
5 | |||
6 | uniform samplerCube Sky; | ||
7 | uniform float Roughness; | ||
8 | |||
9 | in vec3 Ray; | ||
10 | |||
11 | layout (location = 0) out vec4 Color; | ||
12 | |||
13 | float radical_inverse_VdC(uint bits) { | ||
14 | bits = (bits << 16u) | (bits >> 16u); | ||
15 | bits = ((bits & 0x55555555u) << 1u) | ((bits & 0xAAAAAAAAu) >> 1u); | ||
16 | bits = ((bits & 0x33333333u) << 2u) | ((bits & 0xCCCCCCCCu) >> 2u); | ||
17 | bits = ((bits & 0x0F0F0F0Fu) << 4u) | ((bits & 0xF0F0F0F0u) >> 4u); | ||
18 | bits = ((bits & 0x00FF00FFu) << 8u) | ((bits & 0xFF00FF00u) >> 8u); | ||
19 | return float(bits) * 2.3283064365386963e-10; // / 0x100000000 | ||
20 | } | ||
21 | |||
22 | vec2 hammersley(uint i, uint N) { | ||
23 | return vec2(float(i)/float(N), radical_inverse_VdC(i)); | ||
24 | } | ||
25 | |||
26 | vec3 importance_sample_GGX(vec2 sample_box, vec3 N, float roughness) { | ||
27 | float r2 = roughness * roughness; | ||
28 | |||
29 | // Spherical coordinates. | ||
30 | float phi = 2.0 * PI * sample_box.x; | ||
31 | float cos_theta = sqrt((1.0 - sample_box.y) / (1.0 + (r2*r2 - 1.0) * sample_box.y)); | ||
32 | float sin_theta = sqrt(1.0 - cos_theta * cos_theta); | ||
33 | |||
34 | // Map spherical coordinates to Cartesian coordinates in tangent space. | ||
35 | vec3 H = vec3(cos(phi) * sin_theta, sin(phi) * sin_theta, cos_theta); | ||
36 | |||
37 | // Map from tangent space to world space. | ||
38 | // | ||
39 | // Tangent space: | ||
40 | // | ||
41 | // N | ||
42 | // | | ||
43 | // | | ||
44 | // | | ||
45 | // |_ _ _ _ _ B | ||
46 | // / | ||
47 | // / | ||
48 | // T | ||
49 | vec3 up = abs(N.z) < 0.999 ? vec3(0.0, 0.0, 1.0) : vec3(1.0, 0.0, 0.0); | ||
50 | vec3 T = normalize(cross(up,N)); | ||
51 | vec3 B = cross(N,T); | ||
52 | vec3 H_ws = H.x*T + H.y*B + H.z*N; | ||
53 | return H_ws; | ||
54 | } | ||
55 | |||
56 | void main() | ||
57 | { | ||
58 | vec3 N = normalize(Ray); | ||
59 | vec3 R = N; | ||
60 | vec3 V = R; | ||
61 | |||
62 | vec3 irradiance = vec3(0.0); | ||
63 | float total_weight = 0.0; | ||
64 | for (uint i = 0; i < NUM_SAMPLES; ++i) { | ||
65 | vec2 sample_box = hammersley(i, NUM_SAMPLES); | ||
66 | vec3 H = importance_sample_GGX(sample_box, N, Roughness); | ||
67 | vec3 L = reflect(-V,H); | ||
68 | |||
69 | float NdotL = max(dot(N,L), 0.0); | ||
70 | if (NdotL > 0.0) { | ||
71 | irradiance += texture(Sky, H).rgb * NdotL; | ||
72 | total_weight += NdotL; | ||
73 | } | ||
74 | } | ||
75 | irradiance /= total_weight; | ||
76 | |||
77 | Color = vec4(irradiance, 1.0); | ||
78 | } | ||
diff --git a/gfx/shaders/quad.vert b/gfx/shaders/quad.vert new file mode 100644 index 0000000..ef1834c --- /dev/null +++ b/gfx/shaders/quad.vert | |||
@@ -0,0 +1,9 @@ | |||
1 | layout (location = 0) in vec2 Position; // Assuming Position in [-1,1]. | ||
2 | |||
3 | out vec2 Texcoord; | ||
4 | |||
5 | void main() | ||
6 | { | ||
7 | Texcoord = Position * 0.5 + 0.5; | ||
8 | gl_Position = vec4(Position, 0.0, 1.0); | ||
9 | } | ||
diff --git a/gfx/shaders/skyquad.frag b/gfx/shaders/skyquad.frag new file mode 100644 index 0000000..39af013 --- /dev/null +++ b/gfx/shaders/skyquad.frag | |||
@@ -0,0 +1,11 @@ | |||
1 | uniform samplerCube Skyquad; | ||
2 | |||
3 | in vec3 Ray; | ||
4 | |||
5 | layout (location = 0) out vec4 Colour; | ||
6 | |||
7 | void main() | ||
8 | { | ||
9 | vec3 R = normalize(Ray); | ||
10 | Colour = vec4(pow(texture(Skyquad, R).rgb, vec3(1.0/2.2)), 1.0); | ||
11 | } | ||
diff --git a/gfx/shaders/skyquad.vert b/gfx/shaders/skyquad.vert new file mode 100644 index 0000000..f0658d6 --- /dev/null +++ b/gfx/shaders/skyquad.vert | |||
@@ -0,0 +1,28 @@ | |||
1 | uniform mat4 Modelview; | ||
2 | uniform float Fovy; | ||
3 | uniform float Aspect; | ||
4 | |||
5 | layout (location = 0) in vec2 Position; | ||
6 | |||
7 | out vec3 Ray; | ||
8 | |||
9 | // We would typically normalize the vector, but there is no need to do so when | ||
10 | // sampling a cube map. | ||
11 | vec3 sky_ray(vec2 Texcoord) | ||
12 | { | ||
13 | //float d = 0.5 / tan(Fovy/2.0); | ||
14 | // return vec3((Texcoord.x - 0.5) * Aspect, | ||
15 | // Texcoord.y - 0.5, | ||
16 | // -d); | ||
17 | float d = 0.5 / tan(Fovy/2.0); | ||
18 | return vec3((Texcoord.x - 0.5), | ||
19 | Texcoord.y - 0.5, | ||
20 | -d); | ||
21 | } | ||
22 | |||
23 | void main() | ||
24 | { | ||
25 | mat3 Rotation = mat3(Modelview); | ||
26 | Ray = Rotation * sky_ray(Position*0.5 + 0.5); // map [-1,1] -> [0,1] | ||
27 | gl_Position = vec4(Position, 0.99999, 1.0); // z=1 -> send to background | ||
28 | } | ||
diff --git a/gfx/shaders/view_normal_mapped_normals.frag b/gfx/shaders/view_normal_mapped_normals.frag new file mode 100644 index 0000000..a372c02 --- /dev/null +++ b/gfx/shaders/view_normal_mapped_normals.frag | |||
@@ -0,0 +1,28 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform sampler2D NormalMap; | ||
4 | |||
5 | in vec3 Normal; | ||
6 | in vec4 Tangent; | ||
7 | in vec3 Bitangent; // TODO: Compute here or in PS? | ||
8 | in vec2 Texcoord; | ||
9 | |||
10 | out vec4 FragColour; | ||
11 | |||
12 | // TODO: Move to "normal.h" | ||
13 | vec3 get_vs_normal(vec3 normal, vec4 tangent, vec3 normalMapSample) { | ||
14 | vec3 N = normal; | ||
15 | // vec3 T = normalize(interpTangent - dot(tangent, N)*N); | ||
16 | // vec3 B = normalize(interpBitangent - dot(interpTangent, N)*N - dot(interpTangent, T)*T); | ||
17 | vec3 T = tangent.xyz; | ||
18 | //vec3 B = tangent.w * cross(N,T); | ||
19 | vec3 B = Bitangent; | ||
20 | vec3 n = normalMapSample; | ||
21 | return normalize(n.x*T + n.y*B + n.z*N); | ||
22 | } | ||
23 | |||
24 | void main() { | ||
25 | vec3 normalMapSample = texture(NormalMap, Texcoord).xyz * 2.0 - 1.0; | ||
26 | vec3 N = get_vs_normal(Normal, Tangent, normalMapSample); | ||
27 | FragColour = vec4(pow(N, vec3(1.0 / 2.2)), 1.0); | ||
28 | } | ||
diff --git a/gfx/shaders/view_normal_mapped_normals.vert b/gfx/shaders/view_normal_mapped_normals.vert new file mode 100644 index 0000000..004ed9a --- /dev/null +++ b/gfx/shaders/view_normal_mapped_normals.vert | |||
@@ -0,0 +1,22 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform mat4 Modelview; | ||
4 | uniform mat4 Projection; | ||
5 | |||
6 | layout (location = 0) in vec3 vPosition; | ||
7 | layout (location = 1) in vec3 vNormal; | ||
8 | layout (location = 2) in vec4 vTangent; | ||
9 | layout (location = 3) in vec2 vTexcoord; | ||
10 | |||
11 | out vec3 Normal; | ||
12 | out vec4 Tangent; | ||
13 | out vec3 Bitangent; // TODO: Compute here or in PS? | ||
14 | out vec2 Texcoord; | ||
15 | |||
16 | void main() { | ||
17 | Texcoord = vTexcoord; | ||
18 | Normal = mat3(Modelview) * vNormal; | ||
19 | Tangent = vec4(mat3(Modelview) * vTangent.xyz, vTangent.w); | ||
20 | Bitangent = cross(Normal, Tangent.xyz) * vTangent.w; | ||
21 | gl_Position = Projection * Modelview * vec4(vPosition, 1.0); | ||
22 | } | ||
diff --git a/gfx/shaders/view_normals.frag b/gfx/shaders/view_normals.frag new file mode 100644 index 0000000..e90189c --- /dev/null +++ b/gfx/shaders/view_normals.frag | |||
@@ -0,0 +1,11 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | in vec3 Normal; | ||
4 | |||
5 | out vec4 FragColour; | ||
6 | |||
7 | void main() | ||
8 | { | ||
9 | vec3 N = normalize(Normal); | ||
10 | FragColour = vec4(pow(N, vec3(1.0 / 2.2)), 1.0); | ||
11 | } | ||
diff --git a/gfx/shaders/view_normals.vert b/gfx/shaders/view_normals.vert new file mode 100644 index 0000000..d51684f --- /dev/null +++ b/gfx/shaders/view_normals.vert | |||
@@ -0,0 +1,15 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform mat4 Modelview; | ||
4 | uniform mat4 Projection; | ||
5 | |||
6 | layout (location = 0) in vec3 vPosition; | ||
7 | layout (location = 1) in vec3 vNormal; | ||
8 | |||
9 | out vec3 Normal; | ||
10 | |||
11 | void main() | ||
12 | { | ||
13 | Normal = mat3(Modelview) * vNormal; | ||
14 | gl_Position = Projection * Modelview * vec4(vPosition, 1.0); | ||
15 | } | ||
diff --git a/gfx/shaders/view_tangents.frag b/gfx/shaders/view_tangents.frag new file mode 100644 index 0000000..11d1455 --- /dev/null +++ b/gfx/shaders/view_tangents.frag | |||
@@ -0,0 +1,17 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | in vec4 Tangent; | ||
4 | |||
5 | out vec4 FragColour; | ||
6 | |||
7 | void main() { | ||
8 | vec3 T = normalize(Tangent.xyz); | ||
9 | FragColour = vec4(pow(T, vec3(1.0 / 2.2)), 1.0);FragColour = vec4(pow(T, vec3(1.0 / 2.2)), 1.0); | ||
10 | |||
11 | // View sign. | ||
12 | // float sign = Tangent.w; | ||
13 | // float R = sign > 0.0 ? 1.0 : 0.0; | ||
14 | // float B = sign < 0.0 ? 1.0 : 0.0; | ||
15 | // vec3 signColour = vec3(R,0.0,B); | ||
16 | // FragColour = vec4(pow(signColour, vec3(1.0 / 2.2)), 1.0); | ||
17 | } | ||
diff --git a/gfx/shaders/view_tangents.vert b/gfx/shaders/view_tangents.vert new file mode 100644 index 0000000..561ad22 --- /dev/null +++ b/gfx/shaders/view_tangents.vert | |||
@@ -0,0 +1,14 @@ | |||
1 | precision highp float; | ||
2 | |||
3 | uniform mat4 Modelview; | ||
4 | uniform mat4 Projection; | ||
5 | |||
6 | layout (location = 0) in vec3 vPosition; | ||
7 | layout (location = 2) in vec4 vTangent; | ||
8 | |||
9 | out vec4 Tangent; | ||
10 | |||
11 | void main() { | ||
12 | Tangent = vec4(Tangent.xyz = mat3(Modelview) * vTangent.xyz, vTangent.w); | ||
13 | gl_Position = Projection * Modelview * vec4(vPosition, 1.0); | ||
14 | } | ||
diff --git a/gfx/shaders/view_texture.frag b/gfx/shaders/view_texture.frag new file mode 100644 index 0000000..a81263b --- /dev/null +++ b/gfx/shaders/view_texture.frag | |||
@@ -0,0 +1,11 @@ | |||
1 | uniform sampler2D Texture; | ||
2 | |||
3 | in vec2 Texcoord; | ||
4 | |||
5 | layout (location = 0) out vec4 Colour; | ||
6 | |||
7 | void main() | ||
8 | { | ||
9 | vec3 colour = texture(Texture, Texcoord).rgb; | ||
10 | Colour = vec4(pow(colour, vec3(1.0 / 2.2)), 1.0); | ||
11 | } | ||
diff --git a/gfx/shaders/view_texture.vert b/gfx/shaders/view_texture.vert new file mode 100644 index 0000000..49a0422 --- /dev/null +++ b/gfx/shaders/view_texture.vert | |||
@@ -0,0 +1,9 @@ | |||
1 | layout (location = 0) in vec2 Position; | ||
2 | |||
3 | out vec2 Texcoord; | ||
4 | |||
5 | void main() | ||
6 | { | ||
7 | Texcoord = Position * vec2(0.5) + vec2(0.5); // Map from [-1, +1] to [0, 1]. | ||
8 | gl_Position = vec4(Position, 0.0, 1.0); | ||
9 | } | ||
diff --git a/gfx/src/error.c b/gfx/src/error.c new file mode 100644 index 0000000..3f11747 --- /dev/null +++ b/gfx/src/error.c | |||
@@ -0,0 +1,5 @@ | |||
1 | #include <gfx/error.h> | ||
2 | |||
3 | xlstring gfx_error; | ||
4 | |||
5 | const char* gfx_get_error(void) { return xlstring_cstring(&gfx_error); } | ||
diff --git a/gfx/src/gfx.c b/gfx/src/gfx.c new file mode 100644 index 0000000..8321f86 --- /dev/null +++ b/gfx/src/gfx.c | |||
@@ -0,0 +1,87 @@ | |||
1 | #include <gfx/gfx.h> | ||
2 | |||
3 | #include "render/render_backend_impl.h" | ||
4 | #include "renderer/renderer_impl.h" | ||
5 | #include "scene/scene_graph.h" | ||
6 | #include "scene/scene_impl.h" | ||
7 | #include "scene/scene_memory.h" | ||
8 | |||
9 | #include <cstring.h> | ||
10 | #include <log/log.h> | ||
11 | |||
12 | #include <assert.h> | ||
13 | #include <stdlib.h> | ||
14 | |||
15 | typedef struct Gfx { | ||
16 | RenderBackend render_backend; | ||
17 | Renderer renderer; | ||
18 | scene_idx scene; // First child scene. | ||
19 | } Gfx; | ||
20 | |||
21 | Gfx* gfx_init() { | ||
22 | if (!gladLoadGL()) { | ||
23 | LOGE("Failed loading glad!"); | ||
24 | return 0; | ||
25 | } | ||
26 | |||
27 | Gfx* gfx = calloc(1, sizeof(Gfx)); | ||
28 | if (!gfx) { | ||
29 | return 0; | ||
30 | } | ||
31 | gfx_init_render_backend(&gfx->render_backend); | ||
32 | if (!renderer_make(&gfx->renderer, &gfx->render_backend)) { | ||
33 | gfx_destroy(&gfx); | ||
34 | return 0; | ||
35 | } | ||
36 | scene_mem_init(); | ||
37 | return gfx; | ||
38 | } | ||
39 | |||
40 | void gfx_destroy(Gfx** gfx) { | ||
41 | assert(gfx); | ||
42 | if (!gfx) { | ||
43 | return; | ||
44 | } | ||
45 | // Destroy scenes for convenience. | ||
46 | for (scene_idx scene_index = (*gfx)->scene; scene_index.val;) { | ||
47 | Scene* scene = mem_get_scene(scene_index); | ||
48 | scene_index = scene->next; | ||
49 | gfx_destroy_scene(*gfx, &scene); | ||
50 | } | ||
51 | scene_mem_destroy(); | ||
52 | renderer_destroy(&(*gfx)->renderer, &(*gfx)->render_backend); | ||
53 | gfx_del_render_backend(&(*gfx)->render_backend); | ||
54 | free(*gfx); | ||
55 | *gfx = 0; | ||
56 | } | ||
57 | |||
58 | RenderBackend* gfx_get_render_backend(Gfx* gfx) { | ||
59 | assert(gfx); | ||
60 | return &gfx->render_backend; | ||
61 | } | ||
62 | |||
63 | Renderer* gfx_get_renderer(Gfx* gfx) { | ||
64 | assert(gfx); | ||
65 | return &gfx->renderer; | ||
66 | } | ||
67 | |||
68 | Scene* gfx_make_scene(Gfx* gfx) { | ||
69 | Scene* scene = mem_alloc_scene(); | ||
70 | if (!scene) { | ||
71 | return 0; | ||
72 | } | ||
73 | scene_make(scene); | ||
74 | LIST_PREPEND(gfx->scene, scene); | ||
75 | return scene; | ||
76 | } | ||
77 | |||
78 | void gfx_destroy_scene(Gfx* gfx, Scene** scene) { | ||
79 | assert(scene); | ||
80 | scene_destroy(*scene); | ||
81 | const scene_idx scene_index = mem_get_scene_index(*scene); | ||
82 | if (gfx->scene.val == scene_index.val) { | ||
83 | gfx->scene.val = 0; | ||
84 | } | ||
85 | LIST_REMOVE(*scene); | ||
86 | mem_free_scene(scene); | ||
87 | } | ||
diff --git a/gfx/src/render/buffer.c b/gfx/src/render/buffer.c new file mode 100644 index 0000000..d027e8b --- /dev/null +++ b/gfx/src/render/buffer.c | |||
@@ -0,0 +1,57 @@ | |||
1 | #include "buffer.h" | ||
2 | |||
3 | #include <math/vec2.h> | ||
4 | #include <math/vec3.h> | ||
5 | #include <math/vec4.h> | ||
6 | |||
7 | bool gfx_init_buffer(Buffer* buffer, const void* data, size_t size_bytes) { | ||
8 | assert(buffer); | ||
9 | buffer->size_bytes = size_bytes; | ||
10 | glGenBuffers(1, &buffer->vbo); | ||
11 | glBindBuffer(GL_ARRAY_BUFFER, buffer->vbo); | ||
12 | glBufferData(GL_ARRAY_BUFFER, size_bytes, data, GL_STATIC_DRAW); | ||
13 | glBindBuffer(GL_ARRAY_BUFFER, 0); | ||
14 | ASSERT_GL; | ||
15 | return true; | ||
16 | } | ||
17 | |||
18 | bool gfx_init_buffer_2d(Buffer* buffer, const vec2* verts, size_t count) { | ||
19 | assert(buffer); | ||
20 | buffer->size_bytes = count * sizeof(vec2); | ||
21 | glGenBuffers(1, &buffer->vbo); | ||
22 | glBindBuffer(GL_ARRAY_BUFFER, buffer->vbo); | ||
23 | glBufferData(GL_ARRAY_BUFFER, sizeof(vec2) * count, verts, GL_STATIC_DRAW); | ||
24 | glBindBuffer(GL_ARRAY_BUFFER, 0); | ||
25 | ASSERT_GL; | ||
26 | return true; | ||
27 | } | ||
28 | |||
29 | bool gfx_init_buffer_3d(Buffer* buffer, const vec3* verts, size_t count) { | ||
30 | assert(buffer); | ||
31 | buffer->size_bytes = count * sizeof(vec3); | ||
32 | glGenBuffers(1, &buffer->vbo); | ||
33 | glBindBuffer(GL_ARRAY_BUFFER, buffer->vbo); | ||
34 | glBufferData(GL_ARRAY_BUFFER, sizeof(vec3) * count, verts, GL_STATIC_DRAW); | ||
35 | glBindBuffer(GL_ARRAY_BUFFER, 0); | ||
36 | ASSERT_GL; | ||
37 | return true; | ||
38 | } | ||
39 | |||
40 | bool gfx_init_buffer_4d(Buffer* buffer, const vec4* verts, size_t count) { | ||
41 | assert(buffer); | ||
42 | buffer->size_bytes = count * sizeof(vec4); | ||
43 | glGenBuffers(1, &buffer->vbo); | ||
44 | glBindBuffer(GL_ARRAY_BUFFER, buffer->vbo); | ||
45 | glBufferData(GL_ARRAY_BUFFER, sizeof(vec4) * count, verts, GL_STATIC_DRAW); | ||
46 | glBindBuffer(GL_ARRAY_BUFFER, 0); | ||
47 | ASSERT_GL; | ||
48 | return true; | ||
49 | } | ||
50 | |||
51 | void gfx_del_buffer(Buffer* buffer) { | ||
52 | assert(buffer); | ||
53 | if (buffer->vbo) { | ||
54 | glDeleteBuffers(1, &buffer->vbo); | ||
55 | buffer->vbo = 0; | ||
56 | } | ||
57 | } | ||
diff --git a/gfx/src/render/buffer.h b/gfx/src/render/buffer.h new file mode 100644 index 0000000..5cff53a --- /dev/null +++ b/gfx/src/render/buffer.h | |||
@@ -0,0 +1,28 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "gl_util.h" | ||
4 | |||
5 | #include <math/fwd.h> | ||
6 | |||
7 | #include <stdbool.h> | ||
8 | #include <stddef.h> | ||
9 | |||
10 | typedef struct Buffer { | ||
11 | GLuint vbo; | ||
12 | size_t size_bytes; | ||
13 | } Buffer; | ||
14 | |||
15 | /// Create a buffer from raw data. | ||
16 | bool gfx_init_buffer(Buffer*, const void* data, size_t size_bytes); | ||
17 | |||
18 | /// Create a buffer from 2D vertices. | ||
19 | bool gfx_init_buffer_2d(Buffer*, const vec2* verts, size_t count); | ||
20 | |||
21 | /// Create a buffer from 3D vertices. | ||
22 | bool gfx_init_buffer_3d(Buffer*, const vec3* verts, size_t count); | ||
23 | |||
24 | /// Create a buffer from 4D vertices. | ||
25 | bool gfx_init_buffer_4d(Buffer*, const vec4* verts, size_t count); | ||
26 | |||
27 | /// Destroy the buffer. | ||
28 | void gfx_del_buffer(Buffer*); | ||
diff --git a/gfx/src/render/constants.h b/gfx/src/render/constants.h new file mode 100644 index 0000000..b98b0ac --- /dev/null +++ b/gfx/src/render/constants.h | |||
@@ -0,0 +1,7 @@ | |||
1 | #pragma once | ||
2 | |||
3 | // Shaders vertex attribute locations must match the channels here. | ||
4 | #define GFX_POSITION_CHANNEL 0 | ||
5 | #define GFX_NORMAL_CHANNEL 1 | ||
6 | #define GFX_TANGENT_CHANNEL 2 | ||
7 | #define GFX_TEXCOORDS_CHANNEL 3 | ||
diff --git a/gfx/src/render/framebuffer.c b/gfx/src/render/framebuffer.c new file mode 100644 index 0000000..323ef56 --- /dev/null +++ b/gfx/src/render/framebuffer.c | |||
@@ -0,0 +1,150 @@ | |||
1 | #include "framebuffer.h" | ||
2 | |||
3 | #include "renderbuffer.h" | ||
4 | #include "texture.h" | ||
5 | |||
6 | #include <gfx/error.h> | ||
7 | |||
8 | #include <assert.h> | ||
9 | |||
10 | static void framebuffer_attach_colour(FrameBuffer* framebuffer, | ||
11 | const FrameBufferAttachment* attachment) { | ||
12 | assert(framebuffer); | ||
13 | assert(attachment); | ||
14 | |||
15 | switch (attachment->type) { | ||
16 | case FrameBufferNoAttachment: | ||
17 | break; | ||
18 | case FrameBufferTexture: | ||
19 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, | ||
20 | attachment->texture.texture->id, | ||
21 | attachment->texture.mip_level); | ||
22 | break; | ||
23 | case FrameBufferCubemapTexture: | ||
24 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, | ||
25 | to_GL_cubemap_face(attachment->cubemap.face), | ||
26 | attachment->cubemap.texture->id, | ||
27 | attachment->cubemap.mip_level); | ||
28 | break; | ||
29 | case FrameBufferRenderBuffer: | ||
30 | glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, | ||
31 | GL_RENDERBUFFER, attachment->renderbuffer->id); | ||
32 | break; | ||
33 | } | ||
34 | |||
35 | ASSERT_GL; | ||
36 | } | ||
37 | |||
38 | static void framebuffer_attach_depth(FrameBuffer* framebuffer, | ||
39 | const FrameBufferAttachment* attachment) { | ||
40 | assert(framebuffer); | ||
41 | assert(attachment); | ||
42 | |||
43 | switch (attachment->type) { | ||
44 | case FrameBufferNoAttachment: | ||
45 | break; | ||
46 | case FrameBufferTexture: | ||
47 | glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, | ||
48 | GL_DEPTH_COMPONENT, attachment->texture.texture->id, | ||
49 | attachment->texture.mip_level); | ||
50 | break; | ||
51 | // TODO: Could distinguish between colour and depth attachment types to make | ||
52 | // this a compile-time error. | ||
53 | case FrameBufferCubemapTexture: | ||
54 | gfx_set_error( | ||
55 | "Cannot use a cubemap texture as a depth framebuffer attachment"); | ||
56 | break; | ||
57 | case FrameBufferRenderBuffer: | ||
58 | glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, | ||
59 | GL_RENDERBUFFER, attachment->renderbuffer->id); | ||
60 | break; | ||
61 | } | ||
62 | |||
63 | ASSERT_GL; | ||
64 | } | ||
65 | |||
66 | bool gfx_init_framebuffer(FrameBuffer* framebuffer, | ||
67 | const FrameBufferDesc* desc) { | ||
68 | assert(framebuffer); | ||
69 | assert(desc); | ||
70 | |||
71 | glGenFramebuffers(1, &framebuffer->id); | ||
72 | if (!framebuffer->id) { | ||
73 | gfx_set_error("glGenFramebuffers() failed"); | ||
74 | return false; | ||
75 | } | ||
76 | |||
77 | // Allow incomplete framebuffers for flexibility. | ||
78 | // Attach buffers and check the framebuffer status only if buffers are given | ||
79 | // up front. | ||
80 | if (desc->colour.type != FrameBufferNoAttachment || | ||
81 | desc->depth.type != FrameBufferNoAttachment) { | ||
82 | // TODO: Could use the "named" API to avoid having to bind the framebuffer. | ||
83 | glBindFramebuffer(GL_FRAMEBUFFER, framebuffer->id); | ||
84 | framebuffer_attach_colour(framebuffer, &desc->colour); | ||
85 | framebuffer_attach_depth(framebuffer, &desc->depth); | ||
86 | if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { | ||
87 | gfx_set_error("glCheckFramebufferStatus() failed"); | ||
88 | gfx_del_framebuffer(framebuffer); | ||
89 | return false; | ||
90 | } | ||
91 | glBindFramebuffer(GL_FRAMEBUFFER, 0); | ||
92 | } | ||
93 | |||
94 | ASSERT_GL; | ||
95 | return true; | ||
96 | } | ||
97 | |||
98 | bool gfx_framebuffer_attach_colour(FrameBuffer* framebuffer, | ||
99 | const FrameBufferAttachment* attachment) { | ||
100 | assert(framebuffer); | ||
101 | assert(attachment); | ||
102 | |||
103 | // TODO: Could use the "named" API to avoid having to bind the framebuffer. | ||
104 | glBindFramebuffer(GL_FRAMEBUFFER, framebuffer->id); | ||
105 | framebuffer_attach_colour(framebuffer, attachment); | ||
106 | if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { | ||
107 | gfx_set_error("glCheckFramebufferStatus() failed"); | ||
108 | return false; | ||
109 | } | ||
110 | return true; | ||
111 | } | ||
112 | |||
113 | bool gfx_framebuffer_attach_depth(FrameBuffer* framebuffer, | ||
114 | const FrameBufferAttachment* attachment) { | ||
115 | assert(framebuffer); | ||
116 | assert(attachment); | ||
117 | |||
118 | // TODO: Could use the "named" API to avoid having to bind the framebuffer. | ||
119 | glBindFramebuffer(GL_FRAMEBUFFER, framebuffer->id); | ||
120 | framebuffer_attach_depth(framebuffer, attachment); | ||
121 | if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { | ||
122 | gfx_set_error("glCheckFramebufferStatus() failed"); | ||
123 | return false; | ||
124 | } | ||
125 | return true; | ||
126 | } | ||
127 | |||
128 | void gfx_del_framebuffer(FrameBuffer* framebuffer) { | ||
129 | assert(framebuffer); | ||
130 | if (framebuffer->id) { | ||
131 | glDeleteFramebuffers(1, &framebuffer->id); | ||
132 | framebuffer->id = 0; | ||
133 | } | ||
134 | } | ||
135 | |||
136 | void gfx_activate_framebuffer(const FrameBuffer* framebuffer) { | ||
137 | assert(framebuffer); | ||
138 | glBindFramebuffer(GL_FRAMEBUFFER, framebuffer->id); | ||
139 | } | ||
140 | |||
141 | void gfx_deactivate_framebuffer(const FrameBuffer* framebuffer) { | ||
142 | assert(framebuffer); | ||
143 | glBindFramebuffer(GL_FRAMEBUFFER, 0); | ||
144 | } | ||
145 | |||
146 | void gfx_framebuffer_set_viewport(FrameBuffer* framebuffer, int x, int y, | ||
147 | int width, int height) { | ||
148 | assert(framebuffer); | ||
149 | glViewport(x, y, width, height); | ||
150 | } | ||
diff --git a/gfx/src/render/framebuffer.h b/gfx/src/render/framebuffer.h new file mode 100644 index 0000000..7153b30 --- /dev/null +++ b/gfx/src/render/framebuffer.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | |||
5 | #include "gl_util.h" | ||
6 | |||
7 | typedef struct FrameBuffer { | ||
8 | GLuint id; | ||
9 | } FrameBuffer; | ||
10 | |||
11 | /// Create a new framebuffer. | ||
12 | bool gfx_init_framebuffer(FrameBuffer*, const FrameBufferDesc*); | ||
13 | |||
14 | /// Destroy the framebuffer. | ||
15 | void gfx_del_framebuffer(FrameBuffer*); | ||
diff --git a/gfx/src/render/geometry.c b/gfx/src/render/geometry.c new file mode 100644 index 0000000..d5b5a95 --- /dev/null +++ b/gfx/src/render/geometry.c | |||
@@ -0,0 +1,194 @@ | |||
1 | #include "geometry.h" | ||
2 | |||
3 | #include "buffer.h" | ||
4 | #include "constants.h" | ||
5 | |||
6 | #include <math/vec2.h> | ||
7 | #include <math/vec3.h> | ||
8 | |||
9 | #define view_is_populated(BUFFER_VIEW) (BUFFER_VIEW.data || BUFFER_VIEW.buffer) | ||
10 | |||
11 | static GLenum primitive_type_to_gl(PrimitiveType type) { | ||
12 | switch (type) { | ||
13 | case Triangles: | ||
14 | return GL_TRIANGLES; | ||
15 | case TriangleFan: | ||
16 | return GL_TRIANGLE_FAN; | ||
17 | case TriangleStrip: | ||
18 | return GL_TRIANGLE_STRIP; | ||
19 | default: | ||
20 | LOGE("primitive_type_to_gl(): missing case"); | ||
21 | return GL_INVALID_ENUM; | ||
22 | } | ||
23 | } | ||
24 | |||
25 | static const Buffer* get_or_make_buffer2d(RenderBackend* render_backend, | ||
26 | const BufferView2d* view) { | ||
27 | if (view->buffer) { | ||
28 | return view->buffer; | ||
29 | } else { | ||
30 | return gfx_make_buffer2d(render_backend, view->data, | ||
31 | view->size_bytes / sizeof(vec2)); | ||
32 | } | ||
33 | } | ||
34 | |||
35 | static const Buffer* get_or_make_buffer3d(RenderBackend* render_backend, | ||
36 | const BufferView3d* view) { | ||
37 | if (view->buffer) { | ||
38 | return view->buffer; | ||
39 | } else { | ||
40 | return gfx_make_buffer3d(render_backend, view->data, | ||
41 | view->size_bytes / sizeof(vec3)); | ||
42 | } | ||
43 | } | ||
44 | |||
45 | static const Buffer* get_or_make_buffer4d(RenderBackend* render_backend, | ||
46 | const BufferView4d* view) { | ||
47 | if (view->buffer) { | ||
48 | return view->buffer; | ||
49 | } else { | ||
50 | return gfx_make_buffer4d(render_backend, view->data, | ||
51 | view->size_bytes / sizeof(vec4)); | ||
52 | } | ||
53 | } | ||
54 | |||
55 | static const Buffer* get_or_make_buffer_idx(RenderBackend* render_backend, | ||
56 | const BufferViewIdx* view) { | ||
57 | if (view->buffer) { | ||
58 | return view->buffer; | ||
59 | } else { | ||
60 | return gfx_make_buffer(render_backend, view->data, view->size_bytes); | ||
61 | } | ||
62 | } | ||
63 | |||
64 | bool gfx_init_geometry(Geometry* geometry, RenderBackend* render_backend, | ||
65 | const GeometryDesc* desc) { | ||
66 | assert(geometry); | ||
67 | assert(render_backend); | ||
68 | assert(desc); | ||
69 | assert(view_is_populated(desc->positions3d) || | ||
70 | view_is_populated(desc->positions2d)); | ||
71 | assert(desc->num_verts > 0); | ||
72 | |||
73 | geometry->mode = primitive_type_to_gl(desc->type); | ||
74 | geometry->num_verts = desc->num_verts; | ||
75 | geometry->num_indices = desc->num_indices; | ||
76 | geometry->indices_offset_bytes = desc->indices.offset_bytes; | ||
77 | |||
78 | glGenVertexArrays(1, &geometry->vao); | ||
79 | glBindVertexArray(geometry->vao); | ||
80 | |||
81 | if (view_is_populated(desc->positions3d)) { | ||
82 | assert(desc->num_verts <= desc->positions3d.size_bytes / sizeof(vec3)); | ||
83 | geometry->positions = | ||
84 | get_or_make_buffer3d(render_backend, &desc->positions3d); | ||
85 | if (!geometry->positions) { | ||
86 | gfx_del_geometry(geometry); | ||
87 | return false; | ||
88 | } | ||
89 | assert(desc->positions3d.size_bytes <= geometry->positions->size_bytes); | ||
90 | glBindBuffer(GL_ARRAY_BUFFER, geometry->positions->vbo); | ||
91 | glEnableVertexAttribArray(GFX_POSITION_CHANNEL); | ||
92 | glVertexAttribPointer(GFX_POSITION_CHANNEL, 3, GL_FLOAT, GL_FALSE, | ||
93 | desc->positions3d.stride_bytes, | ||
94 | (const void*)desc->positions3d.offset_bytes); | ||
95 | } else if (view_is_populated(desc->positions2d)) { | ||
96 | assert(desc->num_verts <= desc->positions2d.size_bytes / sizeof(vec2)); | ||
97 | geometry->positions = | ||
98 | get_or_make_buffer2d(render_backend, &desc->positions2d); | ||
99 | if (!geometry->positions) { | ||
100 | gfx_del_geometry(geometry); | ||
101 | return false; | ||
102 | } | ||
103 | assert(desc->positions2d.size_bytes <= geometry->positions->size_bytes); | ||
104 | glBindBuffer(GL_ARRAY_BUFFER, geometry->positions->vbo); | ||
105 | glEnableVertexAttribArray(GFX_POSITION_CHANNEL); | ||
106 | glVertexAttribPointer(GFX_POSITION_CHANNEL, 2, GL_FLOAT, GL_FALSE, | ||
107 | desc->positions2d.stride_bytes, | ||
108 | (const void*)desc->positions2d.offset_bytes); | ||
109 | } | ||
110 | |||
111 | if (view_is_populated(desc->normals)) { | ||
112 | assert(desc->num_verts <= desc->normals.size_bytes / sizeof(vec3)); | ||
113 | geometry->normals = get_or_make_buffer3d(render_backend, &desc->normals); | ||
114 | if (!geometry->normals) { | ||
115 | gfx_del_geometry(geometry); | ||
116 | return false; | ||
117 | } | ||
118 | assert(desc->normals.size_bytes <= geometry->normals->size_bytes); | ||
119 | glBindBuffer(GL_ARRAY_BUFFER, geometry->normals->vbo); | ||
120 | glEnableVertexAttribArray(GFX_NORMAL_CHANNEL); | ||
121 | glVertexAttribPointer(GFX_NORMAL_CHANNEL, 3, GL_FLOAT, GL_FALSE, | ||
122 | desc->normals.stride_bytes, | ||
123 | (const void*)desc->normals.offset_bytes); | ||
124 | } | ||
125 | |||
126 | if (view_is_populated(desc->tangents)) { | ||
127 | assert(desc->num_verts <= desc->tangents.size_bytes / sizeof(vec3)); | ||
128 | geometry->tangents = get_or_make_buffer4d(render_backend, &desc->tangents); | ||
129 | if (!geometry->tangents) { | ||
130 | gfx_del_geometry(geometry); | ||
131 | return false; | ||
132 | } | ||
133 | assert(desc->tangents.size_bytes <= geometry->tangents->size_bytes); | ||
134 | glBindBuffer(GL_ARRAY_BUFFER, geometry->tangents->vbo); | ||
135 | glEnableVertexAttribArray(GFX_TANGENT_CHANNEL); | ||
136 | glVertexAttribPointer(GFX_TANGENT_CHANNEL, 4, GL_FLOAT, GL_FALSE, | ||
137 | desc->tangents.stride_bytes, | ||
138 | (const void*)desc->tangents.offset_bytes); | ||
139 | } | ||
140 | |||
141 | if (view_is_populated(desc->texcoords)) { | ||
142 | assert(desc->num_verts <= desc->texcoords.size_bytes / sizeof(vec2)); | ||
143 | geometry->texcoords = | ||
144 | get_or_make_buffer2d(render_backend, &desc->texcoords); | ||
145 | if (!geometry->texcoords) { | ||
146 | gfx_del_geometry(geometry); | ||
147 | return false; | ||
148 | } | ||
149 | assert(desc->texcoords.size_bytes <= geometry->texcoords->size_bytes); | ||
150 | glBindBuffer(GL_ARRAY_BUFFER, geometry->texcoords->vbo); | ||
151 | glEnableVertexAttribArray(GFX_TEXCOORDS_CHANNEL); | ||
152 | glVertexAttribPointer(GFX_TEXCOORDS_CHANNEL, 2, GL_FLOAT, GL_FALSE, | ||
153 | desc->texcoords.stride_bytes, | ||
154 | (const void*)desc->texcoords.offset_bytes); | ||
155 | } | ||
156 | |||
157 | glBindBuffer(GL_ARRAY_BUFFER, 0); | ||
158 | |||
159 | if (view_is_populated(desc->indices)) { | ||
160 | assert(desc->num_indices > 0); | ||
161 | assert(desc->num_indices <= desc->indices.size_bytes / sizeof(VertexIndex)); | ||
162 | geometry->indices = get_or_make_buffer_idx(render_backend, &desc->indices); | ||
163 | if (!geometry->indices) { | ||
164 | gfx_del_geometry(geometry); | ||
165 | return false; | ||
166 | } | ||
167 | assert(desc->indices.size_bytes <= geometry->indices->size_bytes); | ||
168 | } | ||
169 | |||
170 | glBindVertexArray(0); | ||
171 | ASSERT_GL; | ||
172 | return geometry; | ||
173 | } | ||
174 | |||
175 | void gfx_del_geometry(Geometry* geometry) { | ||
176 | assert(geometry); | ||
177 | if (geometry->vao) { | ||
178 | glDeleteVertexArrays(1, &geometry->vao); | ||
179 | geometry->vao = 0; | ||
180 | } | ||
181 | } | ||
182 | |||
183 | void gfx_render_geometry(const Geometry* geometry) { | ||
184 | assert(geometry); | ||
185 | assert(geometry->vao); | ||
186 | glBindVertexArray(geometry->vao); | ||
187 | if (geometry->indices) { | ||
188 | glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, geometry->indices->vbo); | ||
189 | glDrawElements(geometry->mode, geometry->num_indices, GL_UNSIGNED_SHORT, | ||
190 | (const void*)geometry->indices_offset_bytes); | ||
191 | } else { | ||
192 | glDrawArrays(geometry->mode, 0, geometry->num_verts); | ||
193 | } | ||
194 | } | ||
diff --git a/gfx/src/render/geometry.h b/gfx/src/render/geometry.h new file mode 100644 index 0000000..a6f7e05 --- /dev/null +++ b/gfx/src/render/geometry.h | |||
@@ -0,0 +1,35 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | |||
5 | #include "gl_util.h" | ||
6 | |||
7 | #include <stdbool.h> | ||
8 | |||
9 | /// A piece of renderable geometry. | ||
10 | /// | ||
11 | /// The Geometry does not own its buffers, since buffers are typically shared | ||
12 | /// to reduce the memory footprint and the number of draw calls. More generally, | ||
13 | /// the renderer assumes ownership of all rendering resources, which simplifies | ||
14 | /// their management. | ||
15 | typedef struct Geometry { | ||
16 | GLuint vao; | ||
17 | GLenum mode; | ||
18 | VertexCount num_verts; | ||
19 | size_t num_indices; | ||
20 | size_t indices_offset_bytes; | ||
21 | // Buffer pointers are no longer needed once the VAO is created, but we store | ||
22 | // them here so that we can keep track of what Geometry objects use what | ||
23 | // Buffer objects. | ||
24 | const Buffer* positions; | ||
25 | const Buffer* normals; | ||
26 | const Buffer* tangents; | ||
27 | const Buffer* texcoords; | ||
28 | const Buffer* indices; | ||
29 | } Geometry; | ||
30 | |||
31 | /// Create new geometry. | ||
32 | bool gfx_init_geometry(Geometry*, RenderBackend*, const GeometryDesc*); | ||
33 | |||
34 | /// Destroy the geometry. | ||
35 | void gfx_del_geometry(Geometry*); | ||
diff --git a/gfx/src/render/gl_util.h b/gfx/src/render/gl_util.h new file mode 100644 index 0000000..a3cc629 --- /dev/null +++ b/gfx/src/render/gl_util.h | |||
@@ -0,0 +1,47 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <glad/glad.h> | ||
4 | #include <log/log.h> | ||
5 | |||
6 | #include <assert.h> | ||
7 | |||
8 | #define GFX_GL_CONTEXT_PC 1 | ||
9 | #define GFX_GL_CONTEXT_ES 2 | ||
10 | |||
11 | #ifndef GFX_GL_CONTEXT | ||
12 | #define GFX_GL_CONTEXT GFX_GL_CONTEXT_PC | ||
13 | #endif // GFX_GL_CONTEXT | ||
14 | |||
15 | /// Log an error if an OpenGL has occurred. | ||
16 | #ifndef NDEBUG | ||
17 | #define ASSERT_GL \ | ||
18 | { \ | ||
19 | GLenum e = glGetError(); \ | ||
20 | switch (e) { \ | ||
21 | case GL_NO_ERROR: \ | ||
22 | break; \ | ||
23 | case GL_INVALID_ENUM: \ | ||
24 | LOGE("GL_INVALID_ENUM"); \ | ||
25 | break; \ | ||
26 | case GL_INVALID_VALUE: \ | ||
27 | LOGE("GL_INVALID_VALUE"); \ | ||
28 | break; \ | ||
29 | case GL_INVALID_OPERATION: \ | ||
30 | LOGE("GL_INVALID_OPERATION"); \ | ||
31 | break; \ | ||
32 | case GL_INVALID_FRAMEBUFFER_OPERATION: \ | ||
33 | LOGE("GL_INVALID_FRAMEBUFFER_OPERATION"); \ | ||
34 | break; \ | ||
35 | case GL_OUT_OF_MEMORY: \ | ||
36 | LOGE("GL_OUT_OF_MEMORY"); \ | ||
37 | break; \ | ||
38 | /*case GL_STACK_UNDERFLOW: LOGE("GL_STACK_UNDERFLOW");*/ \ | ||
39 | /*case GL_STACK_OVERFLOW: LOGE("GL_STACK_OVERFLOW");*/ \ | ||
40 | default: \ | ||
41 | LOGE("Unknown OpenGL error"); \ | ||
42 | break; \ | ||
43 | } \ | ||
44 | } | ||
45 | #else // Not NDEBUG. | ||
46 | #define ASSERT_GL | ||
47 | #endif | ||
diff --git a/gfx/src/render/render_backend.c b/gfx/src/render/render_backend.c new file mode 100644 index 0000000..c79de7d --- /dev/null +++ b/gfx/src/render/render_backend.c | |||
@@ -0,0 +1,317 @@ | |||
1 | #include "render_backend_impl.h" | ||
2 | |||
3 | #include "gl_util.h" | ||
4 | |||
5 | #include <GL/gl.h> | ||
6 | #include <log/log.h> | ||
7 | |||
8 | #include <assert.h> | ||
9 | |||
10 | void gfx_init_render_backend(RenderBackend* render_backend) { | ||
11 | assert(render_backend); | ||
12 | mempool_make(&render_backend->buffers); | ||
13 | mempool_make(&render_backend->framebuffers); | ||
14 | mempool_make(&render_backend->geometries); | ||
15 | mempool_make(&render_backend->renderbuffers); | ||
16 | mempool_make(&render_backend->shaders); | ||
17 | mempool_make(&render_backend->shader_programs); | ||
18 | mempool_make(&render_backend->textures); | ||
19 | |||
20 | glEnable(GL_CULL_FACE); | ||
21 | glFrontFace(GL_CCW); | ||
22 | glCullFace(GL_BACK); | ||
23 | |||
24 | glEnable(GL_DEPTH_TEST); | ||
25 | |||
26 | // Filter cubemaps across their faces to avoid seams. | ||
27 | // https://www.khronos.org/opengl/wiki/Cubemap_Texture#Seamless_cubemap | ||
28 | glEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS); | ||
29 | } | ||
30 | |||
31 | // Conveniently destroy any objects that have not been destroyed by the | ||
32 | // application. | ||
33 | void gfx_del_render_backend(RenderBackend* render_backend) { | ||
34 | assert(render_backend); | ||
35 | |||
36 | mempool_foreach(&render_backend->buffers, buffer, | ||
37 | { gfx_del_buffer(buffer); }); | ||
38 | |||
39 | mempool_foreach(&render_backend->framebuffers, framebuffer, | ||
40 | { gfx_del_framebuffer(framebuffer); }); | ||
41 | |||
42 | mempool_foreach(&render_backend->geometries, geometry, | ||
43 | { gfx_del_geometry(geometry); }); | ||
44 | |||
45 | mempool_foreach(&render_backend->renderbuffers, renderbuffer, | ||
46 | { gfx_del_renderbuffer(renderbuffer); }); | ||
47 | |||
48 | mempool_foreach(&render_backend->shader_programs, prog, | ||
49 | { gfx_del_shader_program(prog); }); | ||
50 | |||
51 | mempool_foreach(&render_backend->shaders, shader, | ||
52 | { gfx_del_shader(shader); }); | ||
53 | |||
54 | mempool_foreach(&render_backend->textures, texture, | ||
55 | { gfx_del_texture(texture); }); | ||
56 | } | ||
57 | |||
58 | // ----------------------------------------------------------------------------- | ||
59 | // Render commands. | ||
60 | // ----------------------------------------------------------------------------- | ||
61 | |||
62 | void gfx_start_frame(RenderBackend* render_backend) { | ||
63 | assert(render_backend); | ||
64 | |||
65 | glViewport(0, 0, render_backend->viewport.width, | ||
66 | render_backend->viewport.height); | ||
67 | glClearColor(0, 0, 0, 0); | ||
68 | glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); | ||
69 | |||
70 | ASSERT_GL; | ||
71 | } | ||
72 | |||
73 | void gfx_end_frame(RenderBackend* render_backend) { | ||
74 | assert(render_backend); | ||
75 | ASSERT_GL; | ||
76 | } | ||
77 | |||
78 | void gfx_set_viewport(RenderBackend* render_backend, int width, int height) { | ||
79 | assert(render_backend); | ||
80 | render_backend->viewport.width = width; | ||
81 | render_backend->viewport.height = height; | ||
82 | } | ||
83 | |||
84 | void gfx_get_viewport(RenderBackend* render_backend, int* width, int* height) { | ||
85 | assert(render_backend); | ||
86 | assert(width); | ||
87 | assert(height); | ||
88 | *width = render_backend->viewport.width; | ||
89 | *height = render_backend->viewport.height; | ||
90 | } | ||
91 | |||
92 | // ----------------------------------------------------------------------------- | ||
93 | // Buffers. | ||
94 | // ----------------------------------------------------------------------------- | ||
95 | |||
96 | Buffer* gfx_make_buffer(RenderBackend* render_backend, const void* data, | ||
97 | size_t size_bytes) { | ||
98 | assert(render_backend); | ||
99 | Buffer* buffer = mempool_alloc(&render_backend->buffers); | ||
100 | if (!buffer) { | ||
101 | return 0; | ||
102 | } | ||
103 | if (!gfx_init_buffer(buffer, data, size_bytes)) { | ||
104 | mempool_free(&render_backend->buffers, &buffer); | ||
105 | return 0; | ||
106 | } | ||
107 | return buffer; | ||
108 | } | ||
109 | |||
110 | Buffer* gfx_make_buffer2d(RenderBackend* render_backend, const vec2* verts, | ||
111 | size_t count) { | ||
112 | assert(render_backend); | ||
113 | Buffer* buffer = mempool_alloc(&render_backend->buffers); | ||
114 | if (!buffer) { | ||
115 | return 0; | ||
116 | } | ||
117 | if (!gfx_init_buffer_2d(buffer, verts, count)) { | ||
118 | mempool_free(&render_backend->buffers, &buffer); | ||
119 | return 0; | ||
120 | } | ||
121 | return buffer; | ||
122 | } | ||
123 | |||
124 | Buffer* gfx_make_buffer3d(RenderBackend* render_backend, const vec3* verts, | ||
125 | size_t count) { | ||
126 | assert(render_backend); | ||
127 | Buffer* buffer = mempool_alloc(&render_backend->buffers); | ||
128 | if (!buffer) { | ||
129 | return 0; | ||
130 | } | ||
131 | if (!gfx_init_buffer_3d(buffer, verts, count)) { | ||
132 | mempool_free(&render_backend->buffers, &buffer); | ||
133 | return 0; | ||
134 | } | ||
135 | return buffer; | ||
136 | } | ||
137 | |||
138 | Buffer* gfx_make_buffer4d(RenderBackend* render_backend, const vec4* verts, | ||
139 | size_t count) { | ||
140 | assert(render_backend); | ||
141 | Buffer* buffer = mempool_alloc(&render_backend->buffers); | ||
142 | if (!buffer) { | ||
143 | return 0; | ||
144 | } | ||
145 | if (!gfx_init_buffer_4d(buffer, verts, count)) { | ||
146 | mempool_free(&render_backend->buffers, &buffer); | ||
147 | return 0; | ||
148 | } | ||
149 | return buffer; | ||
150 | } | ||
151 | |||
152 | void gfx_destroy_buffer(RenderBackend* render_backend, Buffer** buffer) { | ||
153 | assert(render_backend); | ||
154 | assert(buffer); | ||
155 | gfx_del_buffer(*buffer); | ||
156 | mempool_free(&render_backend->buffers, buffer); | ||
157 | } | ||
158 | |||
159 | // ----------------------------------------------------------------------------- | ||
160 | // Geometry. | ||
161 | // ----------------------------------------------------------------------------- | ||
162 | |||
163 | Geometry* gfx_make_geometry(RenderBackend* render_backend, | ||
164 | const GeometryDesc* desc) { | ||
165 | assert(render_backend); | ||
166 | assert(desc); | ||
167 | Geometry* geometry = mempool_alloc(&render_backend->geometries); | ||
168 | if (!geometry) { | ||
169 | return 0; | ||
170 | } | ||
171 | if (!gfx_init_geometry(geometry, render_backend, desc)) { | ||
172 | mempool_free(&render_backend->geometries, &geometry); | ||
173 | return 0; | ||
174 | } | ||
175 | return geometry; | ||
176 | } | ||
177 | |||
178 | void gfx_destroy_geometry(RenderBackend* render_backend, Geometry** geometry) { | ||
179 | assert(render_backend); | ||
180 | assert(geometry); | ||
181 | gfx_del_geometry(*geometry); | ||
182 | mempool_free(&render_backend->geometries, geometry); | ||
183 | } | ||
184 | |||
185 | // ----------------------------------------------------------------------------- | ||
186 | // Textures. | ||
187 | // ----------------------------------------------------------------------------- | ||
188 | |||
189 | Texture* gfx_make_texture(RenderBackend* render_backend, | ||
190 | const TextureDesc* desc) { | ||
191 | assert(render_backend); | ||
192 | assert(desc); | ||
193 | Texture* texture = mempool_alloc(&render_backend->textures); | ||
194 | if (!texture) { | ||
195 | return 0; | ||
196 | } | ||
197 | if (!gfx_init_texture(texture, desc)) { | ||
198 | mempool_free(&render_backend->textures, &texture); | ||
199 | return 0; | ||
200 | } | ||
201 | return texture; | ||
202 | } | ||
203 | |||
204 | void gfx_destroy_texture(RenderBackend* render_backend, Texture** texture) { | ||
205 | assert(render_backend); | ||
206 | assert(texture); | ||
207 | assert(*texture); | ||
208 | gfx_del_texture(*texture); | ||
209 | mempool_free(&render_backend->textures, texture); | ||
210 | } | ||
211 | |||
212 | // ----------------------------------------------------------------------------- | ||
213 | // Renderbuffers. | ||
214 | // ----------------------------------------------------------------------------- | ||
215 | |||
216 | RenderBuffer* gfx_make_renderbuffer(RenderBackend* render_backend, | ||
217 | const RenderBufferDesc* desc) { | ||
218 | assert(render_backend); | ||
219 | assert(desc); | ||
220 | RenderBuffer* renderbuffer = mempool_alloc(&render_backend->renderbuffers); | ||
221 | if (!renderbuffer) { | ||
222 | return 0; | ||
223 | } | ||
224 | if (!gfx_init_renderbuffer(renderbuffer, desc)) { | ||
225 | mempool_free(&render_backend->renderbuffers, &renderbuffer); | ||
226 | } | ||
227 | return renderbuffer; | ||
228 | } | ||
229 | |||
230 | void gfx_destroy_renderbuffer(RenderBackend* render_backend, | ||
231 | RenderBuffer** renderbuffer) { | ||
232 | assert(render_backend); | ||
233 | assert(renderbuffer); | ||
234 | assert(*renderbuffer); | ||
235 | gfx_del_renderbuffer(*renderbuffer); | ||
236 | mempool_free(&render_backend->renderbuffers, renderbuffer); | ||
237 | } | ||
238 | |||
239 | // ----------------------------------------------------------------------------- | ||
240 | // Framebuffers. | ||
241 | // ----------------------------------------------------------------------------- | ||
242 | |||
243 | FrameBuffer* gfx_make_framebuffer(RenderBackend* render_backend, | ||
244 | const FrameBufferDesc* desc) { | ||
245 | assert(render_backend); | ||
246 | assert(desc); | ||
247 | FrameBuffer* framebuffer = mempool_alloc(&render_backend->framebuffers); | ||
248 | if (!framebuffer) { | ||
249 | return 0; | ||
250 | } | ||
251 | if (!gfx_init_framebuffer(framebuffer, desc)) { | ||
252 | mempool_free(&render_backend->framebuffers, &framebuffer); | ||
253 | return 0; | ||
254 | } | ||
255 | return framebuffer; | ||
256 | } | ||
257 | |||
258 | void gfx_destroy_framebuffer(RenderBackend* render_backend, | ||
259 | FrameBuffer** framebuffer) { | ||
260 | assert(render_backend); | ||
261 | assert(framebuffer); | ||
262 | assert(*framebuffer); | ||
263 | gfx_del_framebuffer(*framebuffer); | ||
264 | mempool_free(&render_backend->framebuffers, framebuffer); | ||
265 | } | ||
266 | |||
267 | void gfx_activate_framebuffer(const FrameBuffer* framebuffer); | ||
268 | |||
269 | // ----------------------------------------------------------------------------- | ||
270 | // Shaders. | ||
271 | // ----------------------------------------------------------------------------- | ||
272 | |||
273 | Shader* gfx_make_shader(RenderBackend* render_backend, const ShaderDesc* desc) { | ||
274 | assert(render_backend); | ||
275 | assert(desc); | ||
276 | Shader* shader = mempool_alloc(&render_backend->shaders); | ||
277 | if (!shader) { | ||
278 | return 0; | ||
279 | } | ||
280 | if (!gfx_compile_shader(shader, desc)) { | ||
281 | mempool_free(&render_backend->shaders, &shader); | ||
282 | return 0; | ||
283 | } | ||
284 | return shader; | ||
285 | } | ||
286 | |||
287 | void gfx_destroy_shader(RenderBackend* render_backend, Shader** shader) { | ||
288 | assert(render_backend); | ||
289 | assert(shader); | ||
290 | assert(*shader); | ||
291 | gfx_del_shader(*shader); | ||
292 | mempool_free(&render_backend->shaders, shader); | ||
293 | } | ||
294 | |||
295 | ShaderProgram* gfx_make_shader_program(RenderBackend* render_backend, | ||
296 | const ShaderProgramDesc* desc) { | ||
297 | assert(render_backend); | ||
298 | assert(desc); | ||
299 | ShaderProgram* prog = mempool_alloc(&render_backend->shader_programs); | ||
300 | if (!prog) { | ||
301 | return 0; | ||
302 | } | ||
303 | if (!gfx_build_shader_program(prog, desc)) { | ||
304 | mempool_free(&render_backend->shader_programs, &prog); | ||
305 | return 0; | ||
306 | } | ||
307 | return prog; | ||
308 | } | ||
309 | |||
310 | void gfx_destroy_shader_program(RenderBackend* render_backend, | ||
311 | ShaderProgram** prog) { | ||
312 | assert(render_backend); | ||
313 | assert(prog); | ||
314 | assert(*prog); | ||
315 | gfx_del_shader_program(*prog); | ||
316 | mempool_free(&render_backend->shader_programs, prog); | ||
317 | } | ||
diff --git a/gfx/src/render/render_backend_impl.h b/gfx/src/render/render_backend_impl.h new file mode 100644 index 0000000..6d13367 --- /dev/null +++ b/gfx/src/render/render_backend_impl.h | |||
@@ -0,0 +1,45 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | #include <gfx/sizes.h> | ||
5 | |||
6 | #include "buffer.h" | ||
7 | #include "framebuffer.h" | ||
8 | #include "geometry.h" | ||
9 | #include "renderbuffer.h" | ||
10 | #include "shader.h" | ||
11 | #include "shader_program.h" | ||
12 | #include "texture.h" | ||
13 | |||
14 | #include <mempool.h> | ||
15 | |||
16 | DEF_MEMPOOL(buffer_pool, Buffer, GFX_MAX_NUM_BUFFERS) | ||
17 | DEF_MEMPOOL(framebuffer_pool, FrameBuffer, GFX_MAX_NUM_FRAMEBUFFERS) | ||
18 | DEF_MEMPOOL(geometry_pool, Geometry, GFX_MAX_NUM_GEOMETRIES) | ||
19 | DEF_MEMPOOL(renderbuffer_pool, RenderBuffer, GFX_MAX_NUM_RENDERBUFFERS) | ||
20 | DEF_MEMPOOL(shader_pool, Shader, GFX_MAX_NUM_SHADERS) | ||
21 | DEF_MEMPOOL(shader_program_pool, ShaderProgram, GFX_MAX_NUM_SHADER_PROGRAMS) | ||
22 | DEF_MEMPOOL(texture_pool, Texture, GFX_MAX_NUM_TEXTURES) | ||
23 | |||
24 | typedef struct { | ||
25 | int width; | ||
26 | int height; | ||
27 | } Viewport; | ||
28 | |||
29 | typedef struct RenderBackend { | ||
30 | Viewport viewport; | ||
31 | // mempools for render-specific objects: textures, geometry, etc. | ||
32 | buffer_pool buffers; | ||
33 | framebuffer_pool framebuffers; | ||
34 | geometry_pool geometries; | ||
35 | renderbuffer_pool renderbuffers; | ||
36 | shader_pool shaders; | ||
37 | shader_program_pool shader_programs; | ||
38 | texture_pool textures; | ||
39 | } RenderBackend; | ||
40 | |||
41 | /// Create a new render backend. | ||
42 | void gfx_init_render_backend(RenderBackend*); | ||
43 | |||
44 | /// Destroy the render backend. | ||
45 | void gfx_del_render_backend(RenderBackend*); | ||
diff --git a/gfx/src/render/renderbuffer.c b/gfx/src/render/renderbuffer.c new file mode 100644 index 0000000..3b19483 --- /dev/null +++ b/gfx/src/render/renderbuffer.c | |||
@@ -0,0 +1,34 @@ | |||
1 | #include "renderbuffer.h" | ||
2 | |||
3 | #include "texture.h" | ||
4 | |||
5 | #include <gfx/error.h> | ||
6 | |||
7 | bool gfx_init_renderbuffer(RenderBuffer* renderbuffer, | ||
8 | const RenderBufferDesc* desc) { | ||
9 | assert(renderbuffer); | ||
10 | assert(desc); | ||
11 | |||
12 | glGenRenderbuffers(1, &renderbuffer->id); | ||
13 | if (!renderbuffer->id) { | ||
14 | gfx_set_error("glGenRenderbuffers failed"); | ||
15 | return false; | ||
16 | } | ||
17 | |||
18 | glBindRenderbuffer(GL_RENDERBUFFER, renderbuffer->id); | ||
19 | glRenderbufferStorage(GL_RENDERBUFFER, | ||
20 | to_GL_internal_format(desc->texture_format), | ||
21 | desc->width, desc->height); | ||
22 | glBindRenderbuffer(GL_RENDERBUFFER, 0); | ||
23 | |||
24 | ASSERT_GL; | ||
25 | return true; | ||
26 | } | ||
27 | |||
28 | void gfx_del_renderbuffer(RenderBuffer* renderbuffer) { | ||
29 | assert(renderbuffer); | ||
30 | if (renderbuffer->id) { | ||
31 | glDeleteRenderbuffers(1, &renderbuffer->id); | ||
32 | renderbuffer->id = 0; | ||
33 | } | ||
34 | } | ||
diff --git a/gfx/src/render/renderbuffer.h b/gfx/src/render/renderbuffer.h new file mode 100644 index 0000000..458dc83 --- /dev/null +++ b/gfx/src/render/renderbuffer.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | |||
5 | #include "gl_util.h" | ||
6 | |||
7 | typedef struct RenderBuffer { | ||
8 | GLuint id; | ||
9 | } RenderBuffer; | ||
10 | |||
11 | /// Create a new renderbuffer. | ||
12 | bool gfx_init_renderbuffer(RenderBuffer*, const RenderBufferDesc*); | ||
13 | |||
14 | /// Destroy the renderbuffer. | ||
15 | void gfx_del_renderbuffer(RenderBuffer*); | ||
diff --git a/gfx/src/render/shader.c b/gfx/src/render/shader.c new file mode 100644 index 0000000..73bc86c --- /dev/null +++ b/gfx/src/render/shader.c | |||
@@ -0,0 +1,74 @@ | |||
1 | #include "shader.h" | ||
2 | |||
3 | #include "gl_util.h" | ||
4 | |||
5 | #include <log/log.h> | ||
6 | |||
7 | #include <assert.h> | ||
8 | #include <stdlib.h> | ||
9 | #include <string.h> | ||
10 | |||
11 | static GLenum shader_type_to_gl(ShaderType type) { | ||
12 | switch (type) { | ||
13 | case VertexShader: | ||
14 | return GL_VERTEX_SHADER; | ||
15 | case FragmentShader: | ||
16 | return GL_FRAGMENT_SHADER; | ||
17 | default: | ||
18 | LOGE("shader_type_to_gl(): missing case"); | ||
19 | return GL_INVALID_ENUM; | ||
20 | } | ||
21 | } | ||
22 | |||
23 | /// Creates an OpenGL shader. | ||
24 | /// Returns non-zero on success, 0 on failure. | ||
25 | static GLuint create_shader(const ShaderDesc* desc) { | ||
26 | const GLuint shader = glCreateShader(shader_type_to_gl(desc->type)); | ||
27 | if (!shader) { | ||
28 | return 0; | ||
29 | } | ||
30 | |||
31 | #if GFX_GL_CONTEXT == GFX_GL_CONTEXT_ES | ||
32 | const char* header = "#version 300 es\n\nprecision highp float;"; | ||
33 | #else | ||
34 | const char* header = "#version 400 core\n\n"; | ||
35 | #endif | ||
36 | |||
37 | const char* source_bits[] = {header, desc->code}; | ||
38 | const GLint source_lengths[] = {strlen(header), strlen(desc->code)}; | ||
39 | |||
40 | glShaderSource(shader, 2, source_bits, source_lengths); | ||
41 | glCompileShader(shader); | ||
42 | GLint result; | ||
43 | glGetShaderiv(shader, GL_COMPILE_STATUS, &result); | ||
44 | if (result == GL_FALSE) { | ||
45 | GLint log_len; | ||
46 | glGetShaderiv(shader, GL_INFO_LOG_LENGTH, &log_len); | ||
47 | if (log_len > 0) { | ||
48 | char* log = calloc(log_len, sizeof(char)); | ||
49 | glGetShaderInfoLog(shader, log_len, NULL, log); | ||
50 | LOGE("Failed loading shader: %s\n\nShader code: %s", log, desc->code); | ||
51 | free(log); | ||
52 | } else { | ||
53 | LOGE("Failed loading shader: %s", desc->code); | ||
54 | } | ||
55 | glDeleteShader(shader); | ||
56 | return 0; | ||
57 | } | ||
58 | ASSERT_GL; | ||
59 | return shader; | ||
60 | } | ||
61 | |||
62 | bool gfx_compile_shader(Shader* shader, const ShaderDesc* desc) { | ||
63 | shader->id = create_shader(desc); | ||
64 | return shader->id != 0; | ||
65 | } | ||
66 | |||
67 | void gfx_del_shader(Shader* shader) { | ||
68 | assert(shader); | ||
69 | if (shader->id) { | ||
70 | glDeleteShader(shader->id); | ||
71 | shader->id = 0; | ||
72 | } | ||
73 | ASSERT_GL; | ||
74 | } | ||
diff --git a/gfx/src/render/shader.h b/gfx/src/render/shader.h new file mode 100644 index 0000000..a1aaec2 --- /dev/null +++ b/gfx/src/render/shader.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | |||
5 | #include "gl_util.h" | ||
6 | |||
7 | #include <stdbool.h> | ||
8 | |||
9 | typedef struct Shader { | ||
10 | GLuint id; | ||
11 | } Shader; | ||
12 | |||
13 | /// Compile a new shader. | ||
14 | bool gfx_compile_shader(Shader*, const ShaderDesc*); | ||
15 | |||
16 | /// Destroy the shader. | ||
17 | void gfx_del_shader(Shader*); | ||
diff --git a/gfx/src/render/shader_program.c b/gfx/src/render/shader_program.c new file mode 100644 index 0000000..05cfd5a --- /dev/null +++ b/gfx/src/render/shader_program.c | |||
@@ -0,0 +1,264 @@ | |||
1 | #include "shader_program.h" | ||
2 | |||
3 | #include "gl_util.h" | ||
4 | #include "shader.h" | ||
5 | #include "texture.h" | ||
6 | |||
7 | #include <log/log.h> | ||
8 | |||
9 | #include <assert.h> | ||
10 | #include <stdlib.h> | ||
11 | #include <string.h> | ||
12 | |||
13 | /// Creates an OpenGL shader program. | ||
14 | /// Returns non-zero on success, 0 on failure. | ||
15 | static GLuint create_program(GLuint vertex_shader, GLuint fragment_shader) { | ||
16 | const GLuint prog = glCreateProgram(); | ||
17 | if (prog == 0) { | ||
18 | LOGE("Failed creating shader program"); | ||
19 | return 0; | ||
20 | } | ||
21 | glAttachShader(prog, vertex_shader); | ||
22 | glAttachShader(prog, fragment_shader); | ||
23 | glLinkProgram(prog); | ||
24 | GLint result; | ||
25 | glGetProgramiv(prog, GL_LINK_STATUS, &result); | ||
26 | if (result == GL_FALSE) { | ||
27 | GLint log_len; | ||
28 | glGetProgramiv(prog, GL_INFO_LOG_LENGTH, &log_len); | ||
29 | if (log_len > 0) { | ||
30 | char* log = calloc(log_len, sizeof(char)); | ||
31 | glGetProgramInfoLog(prog, log_len, NULL, log); | ||
32 | LOGE("Failed creating shader program: %s", log); | ||
33 | free(log); | ||
34 | } else { | ||
35 | LOGE("Failed creating shader program"); | ||
36 | } | ||
37 | glDeleteProgram(prog); | ||
38 | return 0; | ||
39 | } | ||
40 | ASSERT_GL; | ||
41 | return prog; | ||
42 | } | ||
43 | |||
44 | bool gfx_build_shader_program(ShaderProgram* prog, | ||
45 | const ShaderProgramDesc* desc) { | ||
46 | assert(prog); | ||
47 | assert(desc); | ||
48 | prog->id = create_program(desc->vertex_shader->id, desc->fragment_shader->id); | ||
49 | return prog->id != 0; | ||
50 | } | ||
51 | |||
52 | void gfx_del_shader_program(ShaderProgram* prog) { | ||
53 | assert(prog); | ||
54 | if (prog->id) { | ||
55 | glDeleteProgram(prog->id); | ||
56 | prog->id = 0; | ||
57 | } | ||
58 | ASSERT_GL; | ||
59 | } | ||
60 | |||
61 | void gfx_activate_shader_program(const ShaderProgram* prog) { | ||
62 | assert(prog); | ||
63 | glUseProgram(prog->id); | ||
64 | ASSERT_GL; | ||
65 | } | ||
66 | |||
67 | void gfx_deactivate_shader_program(const ShaderProgram* prog) { | ||
68 | assert(prog); | ||
69 | glUseProgram(0); | ||
70 | ASSERT_GL; | ||
71 | } | ||
72 | |||
73 | static void set_texture_uniform(GLuint prog, const char* name, int texture_unit, | ||
74 | const Texture* texture) { | ||
75 | assert(prog != 0); | ||
76 | assert(name); | ||
77 | assert(texture); | ||
78 | const GLint location = glGetUniformLocation(prog, name); | ||
79 | if (location >= 0) { | ||
80 | glActiveTexture(GL_TEXTURE0 + texture_unit); | ||
81 | glBindTexture(texture->target, texture->id); | ||
82 | glUniform1i(location, texture_unit); | ||
83 | } | ||
84 | } | ||
85 | |||
86 | static void set_mat4_uniform(GLuint prog, const char* name, const mat4* mat) { | ||
87 | assert(prog != 0); | ||
88 | assert(name); | ||
89 | assert(mat); | ||
90 | const GLint location = glGetUniformLocation(prog, name); | ||
91 | if (location >= 0) { | ||
92 | glUniformMatrix4fv(location, 1, GL_FALSE, (const float*)mat); | ||
93 | } | ||
94 | } | ||
95 | |||
96 | static void set_vec3_uniform(GLuint prog, const char* name, vec3 value) { | ||
97 | assert(prog != 0); | ||
98 | assert(name); | ||
99 | const GLint location = glGetUniformLocation(prog, name); | ||
100 | if (location >= 0) { | ||
101 | glUniform3f(location, value.x, value.y, value.z); | ||
102 | } | ||
103 | } | ||
104 | |||
105 | static void set_vec4_uniform(GLuint prog, const char* name, vec4 value) { | ||
106 | assert(prog != 0); | ||
107 | assert(name); | ||
108 | const GLint location = glGetUniformLocation(prog, name); | ||
109 | if (location >= 0) { | ||
110 | glUniform4f(location, value.x, value.y, value.z, value.w); | ||
111 | } | ||
112 | } | ||
113 | |||
114 | static void set_float_uniform(GLuint prog, const char* name, float value) { | ||
115 | assert(prog != 0); | ||
116 | assert(name); | ||
117 | const GLint location = glGetUniformLocation(prog, name); | ||
118 | if (location >= 0) { | ||
119 | glUniform1f(location, value); | ||
120 | } | ||
121 | } | ||
122 | |||
123 | void gfx_apply_uniforms(const ShaderProgram* prog) { | ||
124 | assert(prog); | ||
125 | int next_texture_unit = 0; | ||
126 | for (int i = 0; i < prog->num_uniforms; ++i) { | ||
127 | const ShaderUniform* uniform = &prog->uniforms[i]; | ||
128 | switch (uniform->type) { | ||
129 | case UniformTexture: | ||
130 | set_texture_uniform(prog->id, uniform->name.str, next_texture_unit, | ||
131 | uniform->value.texture); | ||
132 | next_texture_unit++; | ||
133 | break; | ||
134 | case UniformMat4: | ||
135 | set_mat4_uniform(prog->id, uniform->name.str, &uniform->value.mat4); | ||
136 | break; | ||
137 | case UniformVec3: | ||
138 | set_vec3_uniform(prog->id, uniform->name.str, uniform->value.vec3); | ||
139 | break; | ||
140 | case UniformVec4: | ||
141 | set_vec4_uniform(prog->id, uniform->name.str, uniform->value.vec4); | ||
142 | break; | ||
143 | case UniformFloat: | ||
144 | set_float_uniform(prog->id, uniform->name.str, uniform->value.scalar); | ||
145 | break; | ||
146 | } | ||
147 | } | ||
148 | } | ||
149 | |||
150 | // Get the ShaderUniform object by name from the shader program if it already | ||
151 | // exists, or allocate a new one otherwise. | ||
152 | // | ||
153 | // If there is no more space for a new uniform, this function logs an error and | ||
154 | // returns 0. | ||
155 | static ShaderUniform* get_or_allocate_uniform(ShaderProgram* prog, | ||
156 | const char* name) { | ||
157 | assert(prog); | ||
158 | assert(name); | ||
159 | // First search for the uniform in the list. | ||
160 | for (int i = 0; i < prog->num_uniforms; ++i) { | ||
161 | ShaderUniform* uniform = &prog->uniforms[i]; | ||
162 | if (sstring_eq_cstr(uniform->name, name)) { | ||
163 | return uniform; | ||
164 | } | ||
165 | } | ||
166 | // Create the uniform if it does not exist. | ||
167 | if (prog->num_uniforms == GFX_MAX_UNIFORMS_PER_SHADER) { | ||
168 | LOGE("Exceeded the maximum number of uniforms per shader. Please increase " | ||
169 | "this value."); | ||
170 | return 0; | ||
171 | } | ||
172 | ShaderUniform* uniform = &prog->uniforms[prog->num_uniforms]; | ||
173 | prog->num_uniforms++; | ||
174 | return uniform; | ||
175 | } | ||
176 | |||
177 | // The functions below save the value of a uniform in the shader program. If the | ||
178 | // uniform does not even exist, then there is no need to store the value. | ||
179 | |||
180 | void gfx_set_texture_uniform(ShaderProgram* prog, const char* name, | ||
181 | const Texture* texture) { | ||
182 | assert(prog); | ||
183 | assert(name); | ||
184 | assert(texture); | ||
185 | const GLint location = glGetUniformLocation(prog->id, name); | ||
186 | if (location < 0) { | ||
187 | return; | ||
188 | } | ||
189 | ShaderUniform* uniform = get_or_allocate_uniform(prog, name); | ||
190 | if (!uniform) { | ||
191 | return; | ||
192 | } | ||
193 | uniform->name = sstring_make(name); | ||
194 | uniform->type = UniformTexture; | ||
195 | uniform->value.texture = texture; | ||
196 | } | ||
197 | |||
198 | void gfx_set_mat4_uniform(ShaderProgram* prog, const char* name, | ||
199 | const mat4* mat) { | ||
200 | assert(prog); | ||
201 | assert(name); | ||
202 | assert(mat); | ||
203 | const GLint location = glGetUniformLocation(prog->id, name); | ||
204 | if (location < 0) { | ||
205 | return; | ||
206 | } | ||
207 | ShaderUniform* uniform = get_or_allocate_uniform(prog, name); | ||
208 | if (!uniform) { | ||
209 | return; | ||
210 | } | ||
211 | uniform->name = sstring_make(name); | ||
212 | uniform->type = UniformMat4; | ||
213 | uniform->value.mat4 = *mat; | ||
214 | } | ||
215 | |||
216 | void gfx_set_vec3_uniform(ShaderProgram* prog, const char* name, vec3 value) { | ||
217 | assert(prog); | ||
218 | assert(name); | ||
219 | const GLint location = glGetUniformLocation(prog->id, name); | ||
220 | if (location < 0) { | ||
221 | return; | ||
222 | } | ||
223 | ShaderUniform* uniform = get_or_allocate_uniform(prog, name); | ||
224 | if (!uniform) { | ||
225 | return; | ||
226 | } | ||
227 | uniform->name = sstring_make(name); | ||
228 | uniform->type = UniformVec3; | ||
229 | uniform->value.vec3 = value; | ||
230 | } | ||
231 | |||
232 | void gfx_set_vec4_uniform(ShaderProgram* prog, const char* name, vec4 value) { | ||
233 | assert(prog); | ||
234 | assert(name); | ||
235 | const GLint location = glGetUniformLocation(prog->id, name); | ||
236 | if (location < 0) { | ||
237 | return; | ||
238 | } | ||
239 | ShaderUniform* uniform = get_or_allocate_uniform(prog, name); | ||
240 | if (!uniform) { | ||
241 | return; | ||
242 | } | ||
243 | uniform->name = sstring_make(name); | ||
244 | uniform->type = UniformVec4; | ||
245 | uniform->value.vec4 = value; | ||
246 | } | ||
247 | |||
248 | void gfx_set_float_uniform(ShaderProgram* prog, const char* name, float value) { | ||
249 | assert(prog); | ||
250 | assert(name); | ||
251 | // No need to store the uniform on our side if it does not exist in the | ||
252 | // program. | ||
253 | const GLint location = glGetUniformLocation(prog->id, name); | ||
254 | if (location < 0) { | ||
255 | return; | ||
256 | } | ||
257 | ShaderUniform* uniform = get_or_allocate_uniform(prog, name); | ||
258 | if (!uniform) { | ||
259 | return; | ||
260 | } | ||
261 | uniform->name = sstring_make(name); | ||
262 | uniform->type = UniformFloat; | ||
263 | uniform->value.scalar = value; | ||
264 | } | ||
diff --git a/gfx/src/render/shader_program.h b/gfx/src/render/shader_program.h new file mode 100644 index 0000000..c269190 --- /dev/null +++ b/gfx/src/render/shader_program.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | #include <gfx/sizes.h> | ||
5 | |||
6 | #include "gl_util.h" | ||
7 | |||
8 | #include <math/fwd.h> | ||
9 | |||
10 | #include <stdbool.h> | ||
11 | |||
12 | typedef struct Texture Texture; | ||
13 | |||
14 | typedef struct ShaderProgram { | ||
15 | GLuint id; | ||
16 | ShaderUniform uniforms[GFX_MAX_UNIFORMS_PER_SHADER]; | ||
17 | int num_uniforms; | ||
18 | } ShaderProgram; | ||
19 | |||
20 | /// Create a new shader program. | ||
21 | bool gfx_build_shader_program(ShaderProgram*, const ShaderProgramDesc*); | ||
22 | |||
23 | /// Destroy the shader program. | ||
24 | void gfx_del_shader_program(ShaderProgram*); | ||
diff --git a/gfx/src/render/texture.c b/gfx/src/render/texture.c new file mode 100644 index 0000000..691f3f8 --- /dev/null +++ b/gfx/src/render/texture.c | |||
@@ -0,0 +1,195 @@ | |||
1 | #include "texture.h" | ||
2 | |||
3 | #include <gfx/error.h> | ||
4 | |||
5 | #include <math/defs.h> | ||
6 | |||
7 | #include <assert.h> | ||
8 | #include <stdbool.h> | ||
9 | |||
10 | bool gfx_init_texture(Texture* texture, const TextureDesc* desc) { | ||
11 | assert(texture); | ||
12 | assert(desc); | ||
13 | |||
14 | glGenTextures(1, &texture->id); | ||
15 | if (!texture->id) { | ||
16 | gfx_set_error("glGenTextures() failed"); | ||
17 | return false; | ||
18 | } | ||
19 | texture->target = to_GL_dimension(desc->dimension); | ||
20 | glBindTexture(texture->target, texture->id); | ||
21 | |||
22 | // glTexStorageXD | ||
23 | const int levels = | ||
24 | desc->mipmaps | ||
25 | ? max(max(log2(desc->width), log2(desc->height)), log2(desc->depth)) + | ||
26 | 1 | ||
27 | : 1; | ||
28 | const GLenum internal_format = to_GL_internal_format(desc->format); | ||
29 | switch (texture->target) { | ||
30 | case GL_TEXTURE_2D: | ||
31 | case GL_TEXTURE_CUBE_MAP: | ||
32 | glTexStorage2D(texture->target, levels, internal_format, desc->width, | ||
33 | desc->height); | ||
34 | break; | ||
35 | default: | ||
36 | assert(false && "Unhandled texture dimension"); | ||
37 | gfx_del_texture(texture); | ||
38 | return false; | ||
39 | } | ||
40 | |||
41 | // glTexSubImageXD | ||
42 | const GLenum format = to_GL_format(desc->format); | ||
43 | const GLenum type = to_GL_type(desc->format); | ||
44 | switch (texture->target) { | ||
45 | case GL_TEXTURE_2D: | ||
46 | if (desc->pixels) { | ||
47 | glTexSubImage2D(GL_TEXTURE_2D, /*level=*/0, /*xoffset=*/0, | ||
48 | /*yoffset=*/0, desc->width, desc->height, format, type, | ||
49 | desc->pixels); | ||
50 | } | ||
51 | break; | ||
52 | case GL_TEXTURE_CUBE_MAP: | ||
53 | for (int i = 0; i < 6; ++i) { | ||
54 | const void* pixels = *(&desc->cubemap.pixels_pos_x + i); | ||
55 | if (pixels) { | ||
56 | glTexSubImage2D( | ||
57 | GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, /*level=*/0, /*xoffset=*/0, | ||
58 | /*yoffset=*/0, desc->width, desc->height, format, type, pixels); | ||
59 | } | ||
60 | } | ||
61 | break; | ||
62 | default: | ||
63 | assert(false && "Unhandled texture dimension"); | ||
64 | gfx_del_texture(texture); | ||
65 | return false; | ||
66 | } | ||
67 | |||
68 | // Mipmaps. | ||
69 | if (desc->mipmaps) { | ||
70 | glGenerateMipmap(texture->target); | ||
71 | } | ||
72 | |||
73 | // Texture filtering. | ||
74 | const bool linear = desc->filtering == LinearFiltering; | ||
75 | GLenum min = desc->mipmaps ? (linear ? GL_LINEAR_MIPMAP_LINEAR | ||
76 | : GL_NEAREST_MIPMAP_NEAREST) | ||
77 | : (linear ? GL_LINEAR : GL_NEAREST); | ||
78 | GLenum mag = linear ? GL_LINEAR : GL_NEAREST; | ||
79 | glTexParameteri(texture->target, GL_TEXTURE_MIN_FILTER, min); | ||
80 | glTexParameteri(texture->target, GL_TEXTURE_MAG_FILTER, mag); | ||
81 | |||
82 | // Texture wrapping. | ||
83 | GLenum wrap = GL_INVALID_ENUM; | ||
84 | switch (desc->wrap) { | ||
85 | case Repeat: | ||
86 | wrap = GL_REPEAT; | ||
87 | break; | ||
88 | case ClampToEdge: | ||
89 | wrap = GL_CLAMP_TO_EDGE; | ||
90 | break; | ||
91 | } | ||
92 | glTexParameteri(texture->target, GL_TEXTURE_WRAP_R, wrap); | ||
93 | glTexParameteri(texture->target, GL_TEXTURE_WRAP_S, wrap); | ||
94 | glTexParameteri(texture->target, GL_TEXTURE_WRAP_T, wrap); | ||
95 | |||
96 | glBindTexture(texture->target, 0); | ||
97 | return true; | ||
98 | } | ||
99 | |||
100 | void gfx_del_texture(Texture* texture) { | ||
101 | if (texture->id) { | ||
102 | glDeleteTextures(1, &texture->id); | ||
103 | texture->id = 0; | ||
104 | } | ||
105 | } | ||
106 | |||
107 | GLenum to_GL_dimension(TextureDimension dim) { | ||
108 | switch (dim) { | ||
109 | case Texture2D: | ||
110 | return GL_TEXTURE_2D; | ||
111 | case TextureCubeMap: | ||
112 | return GL_TEXTURE_CUBE_MAP; | ||
113 | default: | ||
114 | assert(false && "Unhandled TextureDimension"); | ||
115 | return GL_INVALID_ENUM; | ||
116 | } | ||
117 | } | ||
118 | |||
119 | GLenum to_GL_internal_format(TextureFormat format) { | ||
120 | switch (format) { | ||
121 | case TextureDepth: | ||
122 | return GL_DEPTH_COMPONENT; | ||
123 | case TextureRG16: | ||
124 | return GL_RG16; | ||
125 | case TextureRG16F: | ||
126 | return GL_RG16F; | ||
127 | case TextureRGB8: | ||
128 | return GL_RGB8; | ||
129 | case TextureRGBA8: | ||
130 | return GL_RGBA8; | ||
131 | case TextureSRGB8: | ||
132 | return GL_SRGB8; | ||
133 | case TextureSRGBA8: | ||
134 | return GL_SRGB8_ALPHA8; | ||
135 | default: | ||
136 | assert(false && "Unhandled TextureFormat"); | ||
137 | return GL_INVALID_ENUM; | ||
138 | } | ||
139 | } | ||
140 | |||
141 | GLenum to_GL_format(TextureFormat format) { | ||
142 | switch (format) { | ||
143 | case TextureDepth: | ||
144 | return GL_DEPTH_COMPONENT; | ||
145 | case TextureRG16: | ||
146 | case TextureRG16F: | ||
147 | return GL_RG; | ||
148 | case TextureRGB8: | ||
149 | case TextureSRGB8: | ||
150 | return GL_RGB; | ||
151 | case TextureRGBA8: | ||
152 | case TextureSRGBA8: | ||
153 | return GL_RGBA; | ||
154 | default: | ||
155 | assert(false && "Unhandled TextureFormat"); | ||
156 | return GL_INVALID_ENUM; | ||
157 | } | ||
158 | } | ||
159 | |||
160 | GLenum to_GL_type(TextureFormat format) { | ||
161 | switch (format) { | ||
162 | case TextureDepth: | ||
163 | case TextureRG16F: | ||
164 | return GL_FLOAT; | ||
165 | case TextureRG16: | ||
166 | case TextureRGB8: | ||
167 | case TextureRGBA8: | ||
168 | case TextureSRGB8: | ||
169 | case TextureSRGBA8: | ||
170 | return GL_UNSIGNED_BYTE; | ||
171 | default: | ||
172 | assert(false && "Unhandled TextureFormat"); | ||
173 | return GL_INVALID_ENUM; | ||
174 | } | ||
175 | } | ||
176 | |||
177 | GLenum to_GL_cubemap_face(CubemapFace face) { | ||
178 | switch (face) { | ||
179 | case CubemapFacePosX: | ||
180 | return GL_TEXTURE_CUBE_MAP_POSITIVE_X; | ||
181 | case CubemapFaceNegX: | ||
182 | return GL_TEXTURE_CUBE_MAP_NEGATIVE_X; | ||
183 | case CubemapFacePosY: | ||
184 | return GL_TEXTURE_CUBE_MAP_POSITIVE_Y; | ||
185 | case CubemapFaceNegY: | ||
186 | return GL_TEXTURE_CUBE_MAP_NEGATIVE_Y; | ||
187 | case CubemapFacePosZ: | ||
188 | return GL_TEXTURE_CUBE_MAP_POSITIVE_Z; | ||
189 | case CubemapFaceNegZ: | ||
190 | return GL_TEXTURE_CUBE_MAP_NEGATIVE_Z; | ||
191 | default: | ||
192 | assert(false && "Unhandled CubemapFace"); | ||
193 | return GL_INVALID_ENUM; | ||
194 | } | ||
195 | } | ||
diff --git a/gfx/src/render/texture.h b/gfx/src/render/texture.h new file mode 100644 index 0000000..b4e4bed --- /dev/null +++ b/gfx/src/render/texture.h | |||
@@ -0,0 +1,31 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | |||
5 | #include "gl_util.h" | ||
6 | |||
7 | typedef struct Texture { | ||
8 | GLuint id; | ||
9 | GLenum target; | ||
10 | } Texture; | ||
11 | |||
12 | /// Create a new texture. | ||
13 | bool gfx_init_texture(Texture*, const TextureDesc*); | ||
14 | |||
15 | /// Destroy the texture. | ||
16 | void gfx_del_texture(Texture*); | ||
17 | |||
18 | /// Converts a TextureDimension into the OpenGL enum equivalent. | ||
19 | GLenum to_GL_dimension(TextureDimension dim); | ||
20 | |||
21 | /// Converts a texture format into an OpenGL internal format. | ||
22 | GLenum to_GL_internal_format(TextureFormat format); | ||
23 | |||
24 | /// Converts a texture format into an OpenGL format. | ||
25 | GLenum to_GL_format(TextureFormat format); | ||
26 | |||
27 | /// Converts a texture format into an OpenGL type. | ||
28 | GLenum to_GL_type(TextureFormat format); | ||
29 | |||
30 | /// Converts a cubemap face into the OpenGL enum equivalent. | ||
31 | GLenum to_GL_cubemap_face(CubemapFace face); | ||
diff --git a/gfx/src/renderer/renderer.c b/gfx/src/renderer/renderer.c new file mode 100644 index 0000000..ed781c9 --- /dev/null +++ b/gfx/src/renderer/renderer.c | |||
@@ -0,0 +1,238 @@ | |||
1 | #include "renderer_impl.h" | ||
2 | |||
3 | #include "scene/camera_impl.h" | ||
4 | #include "scene/light_impl.h" | ||
5 | #include "scene/material_impl.h" | ||
6 | #include "scene/mesh_impl.h" | ||
7 | #include "scene/node_impl.h" | ||
8 | #include "scene/object_impl.h" | ||
9 | #include "scene/scene_impl.h" | ||
10 | #include "scene/scene_memory.h" | ||
11 | |||
12 | #include <gfx/render_backend.h> | ||
13 | #include <gfx/util/ibl.h> | ||
14 | |||
15 | #include <log/log.h> | ||
16 | #include <math/mat4.h> | ||
17 | #include <math/spatial3.h> | ||
18 | |||
19 | #include <assert.h> | ||
20 | |||
21 | static const int IRRADIANCE_MAP_WIDTH = 1024; | ||
22 | static const int IRRADIANCE_MAP_HEIGHT = 1024; | ||
23 | static const int PREFILTERED_ENVIRONMENT_MAP_WIDTH = 128; | ||
24 | static const int PREFILTERED_ENVIRONMENT_MAP_HEIGHT = 128; | ||
25 | static const int BRDF_INTEGRATION_MAP_WIDTH = 512; | ||
26 | static const int BRDF_INTEGRATION_MAP_HEIGHT = 512; | ||
27 | |||
28 | bool renderer_make(Renderer* renderer, RenderBackend* render_backend) { | ||
29 | assert(renderer); | ||
30 | assert(render_backend); | ||
31 | |||
32 | if (!(renderer->ibl = gfx_make_ibl(render_backend))) { | ||
33 | renderer_destroy(renderer, render_backend); | ||
34 | return false; | ||
35 | } | ||
36 | |||
37 | if (!(renderer->brdf_integration_map = gfx_make_brdf_integration_map( | ||
38 | renderer->ibl, render_backend, BRDF_INTEGRATION_MAP_WIDTH, | ||
39 | BRDF_INTEGRATION_MAP_HEIGHT))) { | ||
40 | renderer_destroy(renderer, render_backend); | ||
41 | return false; | ||
42 | } | ||
43 | |||
44 | return true; | ||
45 | } | ||
46 | |||
47 | void renderer_destroy(Renderer* renderer, RenderBackend* render_backend) { | ||
48 | if (!renderer) { | ||
49 | return; | ||
50 | } | ||
51 | assert(render_backend); | ||
52 | if (renderer->ibl) { | ||
53 | gfx_destroy_ibl(render_backend, &renderer->ibl); | ||
54 | } | ||
55 | } | ||
56 | |||
57 | // static void log_matrix(const mat4* m) { | ||
58 | // for (int row = 0; row < 4; ++row) { | ||
59 | // LOGI("[ %5.2f, %5.2f, %5.2f, %5.2f ]", m->val[0][row], m->val[1][row], | ||
60 | // m->val[2][row], m->val[3][row]); | ||
61 | // } | ||
62 | // } | ||
63 | |||
64 | /// Computes irradiance and prefiltered environment maps for the light if they | ||
65 | /// have not been already computed. | ||
66 | static bool setup_environment_light(Renderer* renderer, | ||
67 | RenderBackend* render_backend, | ||
68 | EnvironmentLight* light) { | ||
69 | assert(renderer); | ||
70 | assert(light); | ||
71 | assert(renderer->ibl); | ||
72 | |||
73 | if (light->irradiance_map) { | ||
74 | assert(light->prefiltered_environment_map); | ||
75 | return true; | ||
76 | } | ||
77 | |||
78 | Texture* irradiance_map = 0; | ||
79 | Texture* prefiltered_environment_map = 0; | ||
80 | |||
81 | if (!(irradiance_map = gfx_make_irradiance_map( | ||
82 | renderer->ibl, render_backend, light->environment_map, | ||
83 | IRRADIANCE_MAP_WIDTH, IRRADIANCE_MAP_HEIGHT))) { | ||
84 | goto cleanup; | ||
85 | } | ||
86 | |||
87 | int max_mip_level = 0; | ||
88 | if (!(prefiltered_environment_map = gfx_make_prefiltered_environment_map( | ||
89 | renderer->ibl, render_backend, light->environment_map, | ||
90 | PREFILTERED_ENVIRONMENT_MAP_WIDTH, | ||
91 | PREFILTERED_ENVIRONMENT_MAP_HEIGHT, &max_mip_level))) { | ||
92 | goto cleanup; | ||
93 | } | ||
94 | |||
95 | light->irradiance_map = irradiance_map; | ||
96 | light->prefiltered_environment_map = prefiltered_environment_map; | ||
97 | light->max_reflection_lod = max_mip_level; | ||
98 | |||
99 | return true; | ||
100 | |||
101 | cleanup: | ||
102 | if (irradiance_map) { | ||
103 | gfx_destroy_texture(render_backend, &irradiance_map); | ||
104 | } | ||
105 | if (prefiltered_environment_map) { | ||
106 | gfx_destroy_texture(render_backend, &prefiltered_environment_map); | ||
107 | } | ||
108 | return false; | ||
109 | } | ||
110 | |||
111 | typedef struct RenderState { | ||
112 | RenderBackend* render_backend; | ||
113 | Renderer* renderer; | ||
114 | const Scene* scene; | ||
115 | const Camera* camera; | ||
116 | const mat4* view_matrix; | ||
117 | const mat4* projection; | ||
118 | Light* environment_light; | ||
119 | const float fovy; | ||
120 | const float aspect; | ||
121 | } RenderState; | ||
122 | |||
123 | static void draw_recursively(RenderState* state, mat4 parent_transform, | ||
124 | node_idx node_index) { | ||
125 | assert(state); | ||
126 | const SceneNode* node = mem_get_node(node_index); | ||
127 | const mat4 node_transform = mat4_mul(parent_transform, node->transform); | ||
128 | |||
129 | // Activate light. | ||
130 | if (node->type == LightNode) { | ||
131 | Light* light = mem_get_light(node->light); | ||
132 | assert(light); | ||
133 | |||
134 | if (light->type == EnvironmentLightType) { | ||
135 | bool result = setup_environment_light( | ||
136 | state->renderer, state->render_backend, &light->environment); | ||
137 | // TODO: Handle the result in a better way. | ||
138 | assert(result); | ||
139 | state->environment_light = light; | ||
140 | } | ||
141 | } | ||
142 | // Render object. | ||
143 | else if (node->type == ObjectNode) { | ||
144 | const SceneObject* object = mem_get_object(node->object); | ||
145 | assert(object); | ||
146 | |||
147 | const mat4 model_matrix = mat4_mul(node_transform, object->transform); | ||
148 | const mat4 modelview = mat4_mul(*state->view_matrix, model_matrix); | ||
149 | const mat4 mvp = mat4_mul(*state->projection, modelview); | ||
150 | |||
151 | for (mesh_link_idx mesh_link_index = object->mesh_link; | ||
152 | mesh_link_index.val;) { | ||
153 | const MeshLink* mesh_link = mem_get_mesh_link(mesh_link_index); | ||
154 | mesh_link_index = mesh_link->next; | ||
155 | |||
156 | const Mesh* mesh = mem_get_mesh(mesh_link->mesh); | ||
157 | if (!mesh) { | ||
158 | continue; | ||
159 | } | ||
160 | assert(mesh->geometry); | ||
161 | assert(mesh->material); | ||
162 | material_activate(mesh->material); | ||
163 | // Apply common shader uniforms not captured by materials. | ||
164 | // TODO: Avoid computing matrices like Modelview or MVP if the shader does | ||
165 | // not use them. | ||
166 | ShaderProgram* shader = mesh->material->shader; | ||
167 | gfx_set_mat4_uniform(shader, "ModelMatrix", &model_matrix); | ||
168 | gfx_set_mat4_uniform(shader, "Modelview", &modelview); | ||
169 | gfx_set_mat4_uniform(shader, "Projection", state->projection); | ||
170 | gfx_set_mat4_uniform(shader, "MVP", &mvp); | ||
171 | gfx_set_float_uniform(shader, "Fovy", state->fovy); | ||
172 | gfx_set_float_uniform(shader, "Aspect", state->aspect); | ||
173 | gfx_set_vec3_uniform(shader, "CameraPosition", state->camera->spatial.p); | ||
174 | // Apply lights. | ||
175 | if (state->environment_light) { | ||
176 | const EnvironmentLight* light = &state->environment_light->environment; | ||
177 | assert(light->irradiance_map); | ||
178 | assert(light->prefiltered_environment_map); | ||
179 | assert(state->renderer->brdf_integration_map); | ||
180 | gfx_set_texture_uniform(shader, "BRDFIntegrationMap", | ||
181 | state->renderer->brdf_integration_map); | ||
182 | gfx_set_texture_uniform(shader, "Sky", light->environment_map); | ||
183 | gfx_set_texture_uniform(shader, "IrradianceMap", light->irradiance_map); | ||
184 | gfx_set_texture_uniform(shader, "PrefilteredEnvironmentMap", | ||
185 | light->prefiltered_environment_map); | ||
186 | gfx_set_float_uniform(shader, "MaxReflectionLOD", | ||
187 | light->max_reflection_lod); | ||
188 | } | ||
189 | // TODO: Remove this altogether. | ||
190 | // This is not needed because material_activate() already activates the | ||
191 | // shader. | ||
192 | // gfx_activate_shader_program(shader); | ||
193 | gfx_apply_uniforms(shader); | ||
194 | gfx_render_geometry(mesh->geometry); | ||
195 | } | ||
196 | } | ||
197 | |||
198 | // Render children recursively. | ||
199 | for (node_idx child_index = node->child; child_index.val;) { | ||
200 | draw_recursively(state, node_transform, child_index); | ||
201 | |||
202 | const SceneNode* child = mem_get_node(child_index); | ||
203 | child_index = child->next; | ||
204 | } | ||
205 | } | ||
206 | |||
207 | void gfx_render_scene(Renderer* renderer, RenderBackend* render_backend, | ||
208 | const Scene* scene, const SceneCamera* camera) { | ||
209 | assert(renderer); | ||
210 | assert(render_backend); | ||
211 | |||
212 | if (!scene) { | ||
213 | return; | ||
214 | } | ||
215 | |||
216 | const mat4 projection = camera ? camera->camera.projection : mat4_id(); | ||
217 | const mat4 view_matrix = | ||
218 | camera ? spatial3_inverse_transform(&camera->camera.spatial) : mat4_id(); | ||
219 | |||
220 | int width, height; | ||
221 | gfx_get_viewport(render_backend, &width, &height); | ||
222 | const float aspect = (float)width / (float)height; | ||
223 | |||
224 | RenderState state = {.render_backend = render_backend, | ||
225 | .renderer = renderer, | ||
226 | .scene = scene, | ||
227 | .camera = &camera->camera, | ||
228 | .view_matrix = &view_matrix, | ||
229 | .projection = &projection, | ||
230 | .environment_light = 0, | ||
231 | // Assuming a perspective matrix. | ||
232 | .fovy = atan(1.0 / (mat4_at(projection, 1, 1))) * 2, | ||
233 | .aspect = aspect}; | ||
234 | |||
235 | gfx_start_frame(render_backend); | ||
236 | draw_recursively(&state, mat4_id(), scene->root); | ||
237 | gfx_end_frame(render_backend); | ||
238 | } | ||
diff --git a/gfx/src/renderer/renderer_impl.h b/gfx/src/renderer/renderer_impl.h new file mode 100644 index 0000000..ce8ebe7 --- /dev/null +++ b/gfx/src/renderer/renderer_impl.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/renderer.h> | ||
4 | |||
5 | #include <gfx/util/ibl.h> | ||
6 | |||
7 | #include <stdbool.h> | ||
8 | |||
9 | typedef struct Renderer { | ||
10 | IBL* ibl; | ||
11 | Texture* brdf_integration_map; | ||
12 | } Renderer; | ||
13 | |||
14 | /// Create a new renderer. | ||
15 | bool renderer_make(Renderer*, RenderBackend*); | ||
16 | |||
17 | /// Destroy the renderer. | ||
18 | void renderer_destroy(Renderer*, RenderBackend*); | ||
diff --git a/gfx/src/scene/camera.c b/gfx/src/scene/camera.c new file mode 100644 index 0000000..df161c2 --- /dev/null +++ b/gfx/src/scene/camera.c | |||
@@ -0,0 +1,42 @@ | |||
1 | #include "camera_impl.h" | ||
2 | |||
3 | #include "node_impl.h" | ||
4 | #include "scene_memory.h" | ||
5 | |||
6 | #include <assert.h> | ||
7 | |||
8 | static void scene_camera_make(SceneCamera* camera) { | ||
9 | assert(camera); | ||
10 | camera->camera = | ||
11 | camera_perspective(/*fovy=*/90.0 * TO_RAD, /*aspect=*/16.0 / 9.0, | ||
12 | /*near=*/0.1, /*far=*/1000); | ||
13 | } | ||
14 | |||
15 | SceneCamera* gfx_make_camera() { | ||
16 | SceneCamera* camera = mem_alloc_camera(); | ||
17 | if (!camera) { | ||
18 | return 0; | ||
19 | } | ||
20 | scene_camera_make(camera); | ||
21 | return camera; | ||
22 | } | ||
23 | |||
24 | void gfx_destroy_camera(SceneCamera** camera) { | ||
25 | assert(camera); | ||
26 | assert(*camera); | ||
27 | if ((*camera)->parent.val) { | ||
28 | gfx_del_node((*camera)->parent); | ||
29 | } | ||
30 | mem_free_camera(camera); | ||
31 | } | ||
32 | |||
33 | void gfx_set_camera_camera(SceneCamera* scene_camera, Camera* camera) { | ||
34 | assert(scene_camera); | ||
35 | assert(camera); | ||
36 | scene_camera->camera = *camera; | ||
37 | } | ||
38 | |||
39 | Camera* gfx_get_camera_camera(SceneCamera* camera) { | ||
40 | assert(camera); | ||
41 | return &camera->camera; | ||
42 | } | ||
diff --git a/gfx/src/scene/camera_impl.h b/gfx/src/scene/camera_impl.h new file mode 100644 index 0000000..20c3890 --- /dev/null +++ b/gfx/src/scene/camera_impl.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/camera.h> | ||
4 | |||
5 | #include "types.h" | ||
6 | |||
7 | #include <math/camera.h> | ||
8 | |||
9 | typedef struct SceneCamera { | ||
10 | Camera camera; | ||
11 | node_idx parent; // Parent SceneNode. | ||
12 | } SceneCamera; | ||
diff --git a/gfx/src/scene/light.c b/gfx/src/scene/light.c new file mode 100644 index 0000000..2ca1a01 --- /dev/null +++ b/gfx/src/scene/light.c | |||
@@ -0,0 +1,45 @@ | |||
1 | #include "light_impl.h" | ||
2 | |||
3 | #include "node_impl.h" | ||
4 | #include "scene_memory.h" | ||
5 | |||
6 | #include <gfx/error.h> | ||
7 | |||
8 | static void make_environment_light(Light* light, | ||
9 | const EnvironmentLightDesc* desc) { | ||
10 | assert(light); | ||
11 | assert(desc); | ||
12 | |||
13 | light->type = EnvironmentLightType; | ||
14 | light->environment.environment_map = desc->environment_map; | ||
15 | } | ||
16 | |||
17 | Light* gfx_make_light(const LightDesc* desc) { | ||
18 | assert(desc); | ||
19 | |||
20 | Light* light = mem_alloc_light(); | ||
21 | if (!light) { | ||
22 | return 0; | ||
23 | } | ||
24 | |||
25 | switch (desc->type) { | ||
26 | case EnvironmentLightType: | ||
27 | make_environment_light(light, &desc->light.environment); | ||
28 | break; | ||
29 | default: | ||
30 | gfx_set_error("Unhandled light type"); | ||
31 | gfx_destroy_light(&light); | ||
32 | return 0; | ||
33 | } | ||
34 | |||
35 | return light; | ||
36 | } | ||
37 | |||
38 | void gfx_destroy_light(Light** light) { | ||
39 | assert(light); | ||
40 | assert(*light); | ||
41 | if ((*light)->parent.val) { | ||
42 | gfx_del_node((*light)->parent); | ||
43 | } | ||
44 | mem_free_light(light); | ||
45 | } | ||
diff --git a/gfx/src/scene/light_impl.h b/gfx/src/scene/light_impl.h new file mode 100644 index 0000000..1aa0bb4 --- /dev/null +++ b/gfx/src/scene/light_impl.h | |||
@@ -0,0 +1,25 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/light.h> | ||
4 | |||
5 | #include "types.h" | ||
6 | |||
7 | typedef struct Texture Texture; | ||
8 | |||
9 | /// An environment light. | ||
10 | typedef struct EnvironmentLight { | ||
11 | const Texture* environment_map; | ||
12 | const Texture* irradiance_map; // Renderer implementation. | ||
13 | const Texture* prefiltered_environment_map; // Renderer implementation. | ||
14 | int max_reflection_lod; // Mandatory when prefiltered_environment_map is | ||
15 | // given. | ||
16 | } EnvironmentLight; | ||
17 | |||
18 | /// A scene light. | ||
19 | typedef struct Light { | ||
20 | LightType type; | ||
21 | union { | ||
22 | EnvironmentLight environment; | ||
23 | }; | ||
24 | node_idx parent; // Parent SceneNode. | ||
25 | } Light; | ||
diff --git a/gfx/src/scene/material.c b/gfx/src/scene/material.c new file mode 100644 index 0000000..d44746a --- /dev/null +++ b/gfx/src/scene/material.c | |||
@@ -0,0 +1,57 @@ | |||
1 | #include "material_impl.h" | ||
2 | |||
3 | #include "scene_memory.h" | ||
4 | |||
5 | #include <gfx/render_backend.h> | ||
6 | |||
7 | static void material_make(Material* material, const MaterialDesc* desc) { | ||
8 | assert(material); | ||
9 | assert(desc); | ||
10 | assert(desc->num_uniforms < GFX_MAX_UNIFORMS_PER_MATERIAL); | ||
11 | material->shader = desc->shader; | ||
12 | material->num_uniforms = desc->num_uniforms; | ||
13 | for (int i = 0; i < desc->num_uniforms; ++i) { | ||
14 | material->uniforms[i] = desc->uniforms[i]; | ||
15 | } | ||
16 | } | ||
17 | |||
18 | Material* gfx_make_material(const MaterialDesc* desc) { | ||
19 | assert(desc); | ||
20 | Material* material = mem_alloc_material(); | ||
21 | if (!material) { | ||
22 | return 0; | ||
23 | } | ||
24 | material_make(material, desc); | ||
25 | return material; | ||
26 | } | ||
27 | |||
28 | void gfx_destroy_material(Material** material) { mem_free_material(material); } | ||
29 | |||
30 | static void set_uniform(ShaderProgram* prog, const ShaderUniform* uniform) { | ||
31 | switch (uniform->type) { | ||
32 | case UniformTexture: | ||
33 | gfx_set_texture_uniform(prog, uniform->name.str, uniform->value.texture); | ||
34 | break; | ||
35 | case UniformMat4: | ||
36 | gfx_set_mat4_uniform(prog, uniform->name.str, &uniform->value.mat4); | ||
37 | break; | ||
38 | case UniformVec3: | ||
39 | gfx_set_vec3_uniform(prog, uniform->name.str, uniform->value.vec3); | ||
40 | break; | ||
41 | case UniformVec4: | ||
42 | gfx_set_vec4_uniform(prog, uniform->name.str, uniform->value.vec4); | ||
43 | break; | ||
44 | case UniformFloat: | ||
45 | gfx_set_float_uniform(prog, uniform->name.str, uniform->value.scalar); | ||
46 | break; | ||
47 | } | ||
48 | } | ||
49 | |||
50 | void material_activate(const Material* material) { | ||
51 | assert(material); | ||
52 | gfx_activate_shader_program(material->shader); | ||
53 | for (int i = 0; i < material->num_uniforms; ++i) { | ||
54 | const ShaderUniform* uniform = &material->uniforms[i]; | ||
55 | set_uniform(material->shader, uniform); | ||
56 | } | ||
57 | } | ||
diff --git a/gfx/src/scene/material_impl.h b/gfx/src/scene/material_impl.h new file mode 100644 index 0000000..c680ccf --- /dev/null +++ b/gfx/src/scene/material_impl.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/material.h> | ||
4 | |||
5 | typedef struct ShaderProgram ShaderProgram; | ||
6 | |||
7 | typedef struct Material { | ||
8 | ShaderProgram* shader; | ||
9 | ShaderUniform uniforms[GFX_MAX_UNIFORMS_PER_MATERIAL]; | ||
10 | int num_uniforms; | ||
11 | } Material; | ||
12 | |||
13 | /// Activate the material. | ||
14 | /// | ||
15 | /// This activates the material's shader and configures the shader uniforms that | ||
16 | /// are specific to the material. | ||
17 | void material_activate(const Material* material); | ||
diff --git a/gfx/src/scene/mesh.c b/gfx/src/scene/mesh.c new file mode 100644 index 0000000..722eae7 --- /dev/null +++ b/gfx/src/scene/mesh.c | |||
@@ -0,0 +1,25 @@ | |||
1 | #include "mesh_impl.h" | ||
2 | |||
3 | #include "scene_memory.h" | ||
4 | |||
5 | #include <assert.h> | ||
6 | |||
7 | static void mesh_make(Mesh* mesh, const MeshDesc* desc) { | ||
8 | assert(mesh); | ||
9 | assert(desc); | ||
10 | assert(desc->geometry); | ||
11 | assert(desc->material); | ||
12 | mesh->geometry = desc->geometry; | ||
13 | mesh->material = desc->material; | ||
14 | } | ||
15 | |||
16 | Mesh* gfx_make_mesh(const MeshDesc* desc) { | ||
17 | Mesh* mesh = mem_alloc_mesh(); | ||
18 | if (!mesh) { | ||
19 | return 0; | ||
20 | } | ||
21 | mesh_make(mesh, desc); | ||
22 | return mesh; | ||
23 | } | ||
24 | |||
25 | void gfx_destroy_mesh(Mesh** mesh) { mem_free_mesh(mesh); } | ||
diff --git a/gfx/src/scene/mesh_impl.h b/gfx/src/scene/mesh_impl.h new file mode 100644 index 0000000..858b147 --- /dev/null +++ b/gfx/src/scene/mesh_impl.h | |||
@@ -0,0 +1,11 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/mesh.h> | ||
4 | |||
5 | typedef struct Mesh { | ||
6 | const Geometry* geometry; | ||
7 | const Material* material; | ||
8 | } Mesh; | ||
9 | |||
10 | // TODO: a mesh_render() that takes a transform, applies the material and the | ||
11 | // transform, and then renders the geometry. | ||
diff --git a/gfx/src/scene/node.c b/gfx/src/scene/node.c new file mode 100644 index 0000000..7d7f69f --- /dev/null +++ b/gfx/src/scene/node.c | |||
@@ -0,0 +1,115 @@ | |||
1 | #include "node_impl.h" | ||
2 | |||
3 | #include "camera_impl.h" | ||
4 | #include "light_impl.h" | ||
5 | #include "object_impl.h" | ||
6 | #include "scene_graph.h" | ||
7 | #include "scene_memory.h" | ||
8 | |||
9 | #include <assert.h> | ||
10 | |||
11 | static void scene_node_make(SceneNode* node) { | ||
12 | assert(node); | ||
13 | node->type = LogicalNode; | ||
14 | node->transform = mat4_id(); | ||
15 | } | ||
16 | |||
17 | SceneNode* gfx_make_node() { | ||
18 | SceneNode* node = mem_alloc_node(); | ||
19 | if (!node) { | ||
20 | return 0; | ||
21 | } | ||
22 | scene_node_make(node); | ||
23 | return node; | ||
24 | } | ||
25 | |||
26 | SceneNode* gfx_make_camera_node(SceneCamera* camera) { | ||
27 | assert(camera); | ||
28 | SceneNode* node = gfx_make_node(); | ||
29 | if (!node) { | ||
30 | return 0; | ||
31 | } | ||
32 | node->type = CameraNode; | ||
33 | node->camera = mem_get_camera_index(camera); | ||
34 | camera->parent = mem_get_node_index(node); | ||
35 | return node; | ||
36 | } | ||
37 | |||
38 | SceneNode* gfx_make_light_node(Light* light) { | ||
39 | assert(light); | ||
40 | SceneNode* node = gfx_make_node(); | ||
41 | if (!node) { | ||
42 | return 0; | ||
43 | } | ||
44 | node->type = LightNode; | ||
45 | node->light = mem_get_light_index(light); | ||
46 | light->parent = mem_get_node_index(node); | ||
47 | return node; | ||
48 | } | ||
49 | |||
50 | SceneNode* gfx_make_object_node(SceneObject* object) { | ||
51 | assert(object); | ||
52 | SceneNode* node = gfx_make_node(); | ||
53 | if (!node) { | ||
54 | return 0; | ||
55 | } | ||
56 | node->type = ObjectNode; | ||
57 | node->object = mem_get_object_index(object); | ||
58 | object->parent = mem_get_node_index(node); | ||
59 | return node; | ||
60 | } | ||
61 | |||
62 | void gfx_destroy_node(SceneNode** node) { | ||
63 | assert(node); | ||
64 | assert(*node); | ||
65 | |||
66 | // Destroy the node's resources. | ||
67 | // Camera. | ||
68 | if ((*node)->type == CameraNode) { | ||
69 | SceneCamera* camera = mem_get_camera((*node)->camera); | ||
70 | camera->parent.val = 0; // Avoid recursive call into gfx_destroy_node(). | ||
71 | gfx_destroy_camera(&camera); | ||
72 | } | ||
73 | // TODO: free light. | ||
74 | // Object. | ||
75 | if ((*node)->type == ObjectNode) { | ||
76 | SceneObject* object = mem_get_object((*node)->object); | ||
77 | object->parent.val = 0; // Avoid recursive call into gfx_destroy_node(). | ||
78 | gfx_destroy_object(&object); | ||
79 | } | ||
80 | |||
81 | TREE_REMOVE(*node); | ||
82 | mem_free_node(node); | ||
83 | } | ||
84 | |||
85 | void gfx_del_node(node_idx index) { | ||
86 | assert(index.val); | ||
87 | SceneNode* node = mem_get_node(index); | ||
88 | assert(node); | ||
89 | TREE_REMOVE(node); | ||
90 | mem_free_node(&node); | ||
91 | } | ||
92 | |||
93 | void gfx_set_node_parent(SceneNode* child, SceneNode* parent) { | ||
94 | assert(child); | ||
95 | assert(parent); | ||
96 | SET_PARENT(child, parent); | ||
97 | } | ||
98 | |||
99 | void gfx_set_node_transform(SceneNode* node, const mat4* transform) { | ||
100 | assert(node); | ||
101 | assert(transform); | ||
102 | node->transform = *transform; | ||
103 | } | ||
104 | |||
105 | void gfx_set_node_position(SceneNode* node, const vec3* position) { | ||
106 | assert(node); | ||
107 | assert(position); | ||
108 | mat4_set_v3(&node->transform, *position); | ||
109 | } | ||
110 | |||
111 | void gfx_set_node_rotation(SceneNode* node, const mat4* rotation) { | ||
112 | assert(node); | ||
113 | assert(rotation); | ||
114 | mat4_set_3x3(&node->transform, *rotation); | ||
115 | } | ||
diff --git a/gfx/src/scene/node_impl.h b/gfx/src/scene/node_impl.h new file mode 100644 index 0000000..ce3b769 --- /dev/null +++ b/gfx/src/scene/node_impl.h | |||
@@ -0,0 +1,38 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/node.h> | ||
4 | |||
5 | #include "types.h" | ||
6 | |||
7 | #include <math/mat4.h> | ||
8 | |||
9 | /// Scene node type. | ||
10 | typedef enum NodeType { | ||
11 | CameraNode, | ||
12 | LightNode, | ||
13 | LogicalNode, | ||
14 | ObjectNode | ||
15 | } NodeType; | ||
16 | |||
17 | /// Scene node. | ||
18 | /// | ||
19 | /// The SceneNode owns its cameras, objects, lights and child nodes. These | ||
20 | /// together form a strict tree hierarchy and not a more general DAG. | ||
21 | typedef struct SceneNode { | ||
22 | NodeType type; | ||
23 | union { | ||
24 | camera_idx camera; | ||
25 | light_idx light; | ||
26 | object_idx object; | ||
27 | }; | ||
28 | mat4 transform; // Transformation for this node and its children. | ||
29 | node_idx parent; // Parent SceneNode. | ||
30 | node_idx child; // First child SceneNode. | ||
31 | node_idx next; // Next sibling SceneNode. | ||
32 | node_idx prev; // Previous sibling SceneNode. | ||
33 | } SceneNode; | ||
34 | |||
35 | /// Destroy a node given its index. | ||
36 | /// | ||
37 | /// The node is conveniently removed from the scene graph. | ||
38 | void gfx_del_node(node_idx); | ||
diff --git a/gfx/src/scene/object.c b/gfx/src/scene/object.c new file mode 100644 index 0000000..7f23e92 --- /dev/null +++ b/gfx/src/scene/object.c | |||
@@ -0,0 +1,71 @@ | |||
1 | #include "object_impl.h" | ||
2 | |||
3 | #include "node_impl.h" | ||
4 | #include "scene_memory.h" | ||
5 | |||
6 | #include <assert.h> | ||
7 | |||
8 | static void scene_object_make(SceneObject* object) { | ||
9 | assert(object); | ||
10 | object->transform = mat4_id(); | ||
11 | } | ||
12 | |||
13 | SceneObject* gfx_make_object() { | ||
14 | SceneObject* object = mem_alloc_object(); | ||
15 | if (!object) { | ||
16 | return 0; | ||
17 | } | ||
18 | scene_object_make(object); | ||
19 | return object; | ||
20 | } | ||
21 | |||
22 | void gfx_destroy_object(SceneObject** object) { | ||
23 | assert(object); | ||
24 | assert(*object); | ||
25 | if ((*object)->parent.val) { | ||
26 | gfx_del_node((*object)->parent); | ||
27 | } | ||
28 | mem_free_object(object); | ||
29 | } | ||
30 | |||
31 | void gfx_set_object_transform(SceneObject* object, const mat4* transform) { | ||
32 | assert(object); | ||
33 | assert(transform); | ||
34 | object->transform = *transform; | ||
35 | } | ||
36 | |||
37 | void gfx_add_object_mesh(SceneObject* object, Mesh* mesh) { | ||
38 | assert(object); | ||
39 | assert(mesh); | ||
40 | |||
41 | MeshLink* link = mem_alloc_mesh_link(); | ||
42 | assert(link); | ||
43 | link->mesh = mem_get_mesh_index(mesh); | ||
44 | link->next = object->mesh_link; | ||
45 | object->mesh_link = mem_get_mesh_link_index(link); | ||
46 | } | ||
47 | |||
48 | void gfx_remove_object_mesh(SceneObject* object, Mesh* mesh) { | ||
49 | assert(object); | ||
50 | assert(mesh); | ||
51 | |||
52 | MeshLink* prev = 0; | ||
53 | const mesh_idx mesh_index = mem_get_mesh_index(mesh); | ||
54 | |||
55 | // Find the MeshLink in the object that contains the given mesh. | ||
56 | for (mesh_link_idx mesh_link_index = object->mesh_link; | ||
57 | mesh_link_index.val;) { | ||
58 | MeshLink* mesh_link = mem_get_mesh_link(mesh_link_index); | ||
59 | if (mesh_link->mesh.val == mesh_index.val) { | ||
60 | if (prev) { | ||
61 | prev->next = mesh_link->next; | ||
62 | } else { | ||
63 | object->mesh_link = mesh_link->next; | ||
64 | } | ||
65 | mem_free_mesh_link(&mesh_link); | ||
66 | break; | ||
67 | } | ||
68 | prev = mesh_link; | ||
69 | mesh_link_index = mesh_link->next; | ||
70 | } | ||
71 | } | ||
diff --git a/gfx/src/scene/object_impl.h b/gfx/src/scene/object_impl.h new file mode 100644 index 0000000..bd3fdbc --- /dev/null +++ b/gfx/src/scene/object_impl.h | |||
@@ -0,0 +1,25 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/object.h> | ||
4 | |||
5 | #include "types.h" | ||
6 | |||
7 | #include <math/mat4.h> | ||
8 | |||
9 | typedef struct MeshLink { | ||
10 | mesh_idx mesh; | ||
11 | mesh_link_idx next; // Next MeshLink in the list. | ||
12 | } MeshLink; | ||
13 | |||
14 | /// Scene object. | ||
15 | /// | ||
16 | /// A SceneObject does not own its Meshes, and they are instead shared for | ||
17 | /// re-use. The SceneObject consequently embeds a list of MeshLinks as opposed | ||
18 | /// to a list of Meshes. The MeshLinks define a list of Meshes, which can be | ||
19 | /// different for each SceneObject. Each SceneObject may then have a unique list | ||
20 | /// of Meshes, and the Meshes are re-used. | ||
21 | typedef struct SceneObject { | ||
22 | mat4 transform; | ||
23 | mesh_link_idx mesh_link; // First MeshLink in the list. | ||
24 | node_idx parent; // Parent SceneNode. | ||
25 | } SceneObject; | ||
diff --git a/gfx/src/scene/scene.c b/gfx/src/scene/scene.c new file mode 100644 index 0000000..9e974de --- /dev/null +++ b/gfx/src/scene/scene.c | |||
@@ -0,0 +1,43 @@ | |||
1 | #include "scene_impl.h" | ||
2 | |||
3 | #include "camera_impl.h" | ||
4 | #include "node_impl.h" | ||
5 | #include "object_impl.h" | ||
6 | #include "scene_graph.h" | ||
7 | #include "scene_memory.h" | ||
8 | |||
9 | static void scene_destroy_rec(node_idx node_index) { | ||
10 | assert(node_index.val); | ||
11 | |||
12 | SceneNode* node = mem_get_node(node_index); | ||
13 | assert(node); | ||
14 | |||
15 | // First child. | ||
16 | if (node->child.val) { | ||
17 | scene_destroy_rec(node->child); | ||
18 | } | ||
19 | |||
20 | // Right sibling. | ||
21 | if (node->next.val) { | ||
22 | scene_destroy_rec(node->next); | ||
23 | } | ||
24 | |||
25 | gfx_destroy_node(&node); | ||
26 | } | ||
27 | |||
28 | void scene_make(Scene* scene) { | ||
29 | assert(scene); | ||
30 | SceneNode* root = gfx_make_node(); | ||
31 | assert(root); | ||
32 | scene->root = mem_get_node_index(root); | ||
33 | } | ||
34 | |||
35 | void scene_destroy(Scene* scene) { | ||
36 | assert(scene); | ||
37 | scene_destroy_rec(scene->root); | ||
38 | } | ||
39 | |||
40 | SceneNode* gfx_get_scene_root(Scene* scene) { | ||
41 | assert(scene); | ||
42 | return mem_get_node(scene->root); | ||
43 | } | ||
diff --git a/gfx/src/scene/scene_graph.h b/gfx/src/scene/scene_graph.h new file mode 100644 index 0000000..b9b3a14 --- /dev/null +++ b/gfx/src/scene/scene_graph.h | |||
@@ -0,0 +1,67 @@ | |||
1 | /// Functions for list manipulation. | ||
2 | #pragma once | ||
3 | |||
4 | #include "scene_memory.h" | ||
5 | |||
6 | // Note that SceneMemory guarantees that index 0 can be regarded as an invalid | ||
7 | // index. | ||
8 | |||
9 | #define MEM_GET(INDEX) \ | ||
10 | _Generic((INDEX), camera_idx \ | ||
11 | : mem_get_camera, material_idx \ | ||
12 | : mem_get_material, mesh_idx \ | ||
13 | : mem_get_mesh, mesh_link_idx \ | ||
14 | : mem_get_mesh_link, node_idx \ | ||
15 | : mem_get_node, object_idx \ | ||
16 | : mem_get_object, scene_idx \ | ||
17 | : mem_get_scene)(INDEX) | ||
18 | |||
19 | #define MEM_GET_INDEX(ITEM) \ | ||
20 | _Generic((ITEM), SceneCamera * \ | ||
21 | : mem_get_camera_index, Material * \ | ||
22 | : mem_get_material_index, Mesh * \ | ||
23 | : mem_get_mesh_index, MeshLink * \ | ||
24 | : mem_get_mesh_link_index, SceneNode * \ | ||
25 | : mem_get_node_index, SceneObject * \ | ||
26 | : mem_get_object_index, Scene * \ | ||
27 | : mem_get_scene_index)(ITEM) | ||
28 | |||
29 | #define LIST_PREPEND(HEAD_INDEX, ITEM) \ | ||
30 | ITEM->next = HEAD_INDEX; \ | ||
31 | if (HEAD_INDEX.val) { \ | ||
32 | typeof(ITEM) old_head = MEM_GET(HEAD_INDEX); \ | ||
33 | old_head->prev = MEM_GET_INDEX(ITEM); \ | ||
34 | } \ | ||
35 | HEAD_INDEX = MEM_GET_INDEX(ITEM); | ||
36 | |||
37 | #define LIST_REMOVE(ITEM) \ | ||
38 | if ((ITEM)->prev.val) { \ | ||
39 | typeof(ITEM) prev_sibling = MEM_GET((ITEM)->prev); \ | ||
40 | prev_sibling->next = (ITEM)->next; \ | ||
41 | } \ | ||
42 | if ((ITEM)->next.val) { \ | ||
43 | typeof(ITEM) next_sibling = MEM_GET((ITEM)->next); \ | ||
44 | next_sibling->prev = (ITEM)->prev; \ | ||
45 | } | ||
46 | |||
47 | #define SET_PARENT(CHILD, PARENT) \ | ||
48 | assert(CHILD); \ | ||
49 | if (CHILD->parent.val) { \ | ||
50 | LIST_REMOVE(CHILD); \ | ||
51 | } \ | ||
52 | if (parent) { \ | ||
53 | LIST_PREPEND(PARENT->CHILD, CHILD); \ | ||
54 | } | ||
55 | |||
56 | #define TREE_REMOVE(ITEM) \ | ||
57 | if ((ITEM)->prev.val) { \ | ||
58 | typeof(ITEM) prev_sibling = MEM_GET((ITEM)->prev); \ | ||
59 | prev_sibling->next = (ITEM)->next; \ | ||
60 | } \ | ||
61 | if ((ITEM)->next.val) { \ | ||
62 | typeof(ITEM) next_sibling = MEM_GET((ITEM)->next); \ | ||
63 | next_sibling->prev = (ITEM)->prev; \ | ||
64 | } \ | ||
65 | if ((ITEM)->parent.val) { \ | ||
66 | MEM_GET((ITEM)->parent)->child.val = 0; \ | ||
67 | } | ||
diff --git a/gfx/src/scene/scene_impl.h b/gfx/src/scene/scene_impl.h new file mode 100644 index 0000000..e0c25bf --- /dev/null +++ b/gfx/src/scene/scene_impl.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/scene/scene.h> | ||
4 | |||
5 | #include "types.h" | ||
6 | |||
7 | typedef struct Scene { | ||
8 | node_idx root; | ||
9 | scene_idx next; | ||
10 | scene_idx prev; | ||
11 | } Scene; | ||
12 | |||
13 | /// Create a new scene. | ||
14 | void scene_make(Scene*); | ||
15 | |||
16 | /// Destroy the scene. | ||
17 | void scene_destroy(Scene*); | ||
diff --git a/gfx/src/scene/scene_memory.c b/gfx/src/scene/scene_memory.c new file mode 100644 index 0000000..cd4a79c --- /dev/null +++ b/gfx/src/scene/scene_memory.c | |||
@@ -0,0 +1,148 @@ | |||
1 | #include "scene_memory.h" | ||
2 | |||
3 | #include <gfx/sizes.h> | ||
4 | |||
5 | #include "camera_impl.h" | ||
6 | #include "light_impl.h" | ||
7 | #include "material_impl.h" | ||
8 | #include "mesh_impl.h" | ||
9 | #include "node_impl.h" | ||
10 | #include "object_impl.h" | ||
11 | #include "scene_impl.h" | ||
12 | #include "types.h" | ||
13 | |||
14 | #include <mempool.h> | ||
15 | |||
16 | DEF_MEMPOOL(camera_pool, SceneCamera, GFX_MAX_NUM_CAMERAS) | ||
17 | DEF_MEMPOOL(light_pool, Light, GFX_MAX_NUM_LIGHTS) | ||
18 | DEF_MEMPOOL(material_pool, Material, GFX_MAX_NUM_MATERIALS) | ||
19 | DEF_MEMPOOL(mesh_pool, Mesh, GFX_MAX_NUM_MESHES) | ||
20 | DEF_MEMPOOL(mesh_link_pool, MeshLink, GFX_MAX_NUM_MESH_LINKS) | ||
21 | DEF_MEMPOOL(node_pool, SceneNode, GFX_MAX_NUM_NODES) | ||
22 | DEF_MEMPOOL(object_pool, SceneObject, GFX_MAX_NUM_OBJECTS) | ||
23 | DEF_MEMPOOL(scene_pool, Scene, GFX_MAX_NUM_SCENES) | ||
24 | |||
25 | /// Scene memory. | ||
26 | /// | ||
27 | /// Holds memory pools for every type of scene object. | ||
28 | typedef struct SceneMemory { | ||
29 | camera_pool cameras; | ||
30 | light_pool lights; | ||
31 | material_pool materials; | ||
32 | mesh_pool meshes; | ||
33 | mesh_link_pool mesh_links; | ||
34 | node_pool nodes; | ||
35 | object_pool objects; | ||
36 | scene_pool scenes; | ||
37 | } SceneMemory; | ||
38 | |||
39 | static SceneMemory mem; | ||
40 | |||
41 | #define ALLOC_DUMMY(POOL) \ | ||
42 | assert(mempool_get_block_index(POOL, mempool_alloc(POOL)) == 0) | ||
43 | |||
44 | void scene_mem_init() { | ||
45 | mempool_make(&mem.cameras); | ||
46 | mempool_make(&mem.lights); | ||
47 | mempool_make(&mem.materials); | ||
48 | mempool_make(&mem.meshes); | ||
49 | mempool_make(&mem.mesh_links); | ||
50 | mempool_make(&mem.nodes); | ||
51 | mempool_make(&mem.objects); | ||
52 | mempool_make(&mem.scenes); | ||
53 | |||
54 | // Allocate dummy objects at index 0 to guarantee that no objects allocated by | ||
55 | // the caller map to index 0. | ||
56 | ALLOC_DUMMY(&mem.cameras); | ||
57 | ALLOC_DUMMY(&mem.lights); | ||
58 | ALLOC_DUMMY(&mem.materials); | ||
59 | ALLOC_DUMMY(&mem.meshes); | ||
60 | ALLOC_DUMMY(&mem.mesh_links); | ||
61 | ALLOC_DUMMY(&mem.nodes); | ||
62 | ALLOC_DUMMY(&mem.objects); | ||
63 | ALLOC_DUMMY(&mem.scenes); | ||
64 | } | ||
65 | |||
66 | void scene_mem_destroy() {} | ||
67 | |||
68 | // Memory allocation. | ||
69 | SceneCamera* mem_alloc_camera() { return mempool_alloc(&mem.cameras); } | ||
70 | Light* mem_alloc_light() { return mempool_alloc(&mem.lights); } | ||
71 | Material* mem_alloc_material() { return mempool_alloc(&mem.materials); } | ||
72 | Mesh* mem_alloc_mesh() { return mempool_alloc(&mem.meshes); } | ||
73 | MeshLink* mem_alloc_mesh_link() { return mempool_alloc(&mem.mesh_links); } | ||
74 | SceneNode* mem_alloc_node() { return mempool_alloc(&mem.nodes); } | ||
75 | SceneObject* mem_alloc_object() { return mempool_alloc(&mem.objects); } | ||
76 | Scene* mem_alloc_scene() { return mempool_alloc(&mem.scenes); } | ||
77 | |||
78 | // Memory free. | ||
79 | void mem_free_camera(SceneCamera** camera) { | ||
80 | mempool_free(&mem.cameras, camera); | ||
81 | } | ||
82 | void mem_free_light(Light** light) { mempool_free(&mem.lights, light); } | ||
83 | void mem_free_material(Material** material) { | ||
84 | mempool_free(&mem.materials, material); | ||
85 | } | ||
86 | void mem_free_mesh(Mesh** mesh) { mempool_free(&mem.meshes, mesh); } | ||
87 | void mem_free_mesh_link(MeshLink** mesh_link) { | ||
88 | mempool_free(&mem.mesh_links, mesh_link); | ||
89 | } | ||
90 | void mem_free_node(SceneNode** node) { mempool_free(&mem.nodes, node); } | ||
91 | void mem_free_object(SceneObject** object) { | ||
92 | mempool_free(&mem.objects, object); | ||
93 | } | ||
94 | void mem_free_scene(Scene** scene) { mempool_free(&mem.scenes, scene); } | ||
95 | |||
96 | // Query by index. | ||
97 | SceneCamera* mem_get_camera(camera_idx index) { | ||
98 | return mempool_get_block(&mem.cameras, index.val); | ||
99 | } | ||
100 | Light* mem_get_light(light_idx index) { | ||
101 | return mempool_get_block(&mem.lights, index.val); | ||
102 | } | ||
103 | Material* mem_get_material(material_idx index) { | ||
104 | return mempool_get_block(&mem.materials, index.val); | ||
105 | } | ||
106 | Mesh* mem_get_mesh(mesh_idx index) { | ||
107 | return mempool_get_block(&mem.meshes, index.val); | ||
108 | } | ||
109 | MeshLink* mem_get_mesh_link(mesh_link_idx index) { | ||
110 | return mempool_get_block(&mem.mesh_links, index.val); | ||
111 | } | ||
112 | SceneNode* mem_get_node(node_idx index) { | ||
113 | return mempool_get_block(&mem.nodes, index.val); | ||
114 | } | ||
115 | SceneObject* mem_get_object(object_idx index) { | ||
116 | return mempool_get_block(&mem.objects, index.val); | ||
117 | } | ||
118 | Scene* mem_get_scene(scene_idx index) { | ||
119 | return mempool_get_block(&mem.scenes, index.val); | ||
120 | } | ||
121 | |||
122 | // Map object to index. | ||
123 | camera_idx mem_get_camera_index(const SceneCamera* camera) { | ||
124 | return (camera_idx){.val = mempool_get_block_index(&mem.cameras, camera)}; | ||
125 | } | ||
126 | light_idx mem_get_light_index(const Light* light) { | ||
127 | return (light_idx){.val = mempool_get_block_index(&mem.lights, light)}; | ||
128 | } | ||
129 | material_idx mem_get_material_index(const Material* material) { | ||
130 | return (material_idx){.val = | ||
131 | mempool_get_block_index(&mem.materials, material)}; | ||
132 | } | ||
133 | mesh_idx mem_get_mesh_index(const Mesh* mesh) { | ||
134 | return (mesh_idx){.val = mempool_get_block_index(&mem.meshes, mesh)}; | ||
135 | } | ||
136 | mesh_link_idx mem_get_mesh_link_index(const MeshLink* mesh_link) { | ||
137 | return (mesh_link_idx){ | ||
138 | .val = mempool_get_block_index(&mem.mesh_links, mesh_link)}; | ||
139 | } | ||
140 | node_idx mem_get_node_index(const SceneNode* node) { | ||
141 | return (node_idx){.val = mempool_get_block_index(&mem.nodes, node)}; | ||
142 | } | ||
143 | object_idx mem_get_object_index(const SceneObject* object) { | ||
144 | return (object_idx){.val = mempool_get_block_index(&mem.objects, object)}; | ||
145 | } | ||
146 | scene_idx mem_get_scene_index(const Scene* scene) { | ||
147 | return (scene_idx){.val = mempool_get_block_index(&mem.scenes, scene)}; | ||
148 | } | ||
diff --git a/gfx/src/scene/scene_memory.h b/gfx/src/scene/scene_memory.h new file mode 100644 index 0000000..dff5bd8 --- /dev/null +++ b/gfx/src/scene/scene_memory.h | |||
@@ -0,0 +1,130 @@ | |||
1 | /// Memory management of scene objects. | ||
2 | #pragma once | ||
3 | |||
4 | #include "types.h" | ||
5 | |||
6 | typedef struct Light Light; | ||
7 | typedef struct Material Material; | ||
8 | typedef struct Mesh Mesh; | ||
9 | typedef struct MeshLink MeshLink; | ||
10 | typedef struct SceneCamera SceneCamera; | ||
11 | typedef struct SceneNode SceneNode; | ||
12 | typedef struct SceneObject SceneObject; | ||
13 | typedef struct Scene Scene; | ||
14 | |||
15 | /// Initialize scene memory. | ||
16 | /// | ||
17 | /// The scene memory guarantees that every object maps to an index different | ||
18 | /// than 0. In this way, 0 can be used as a special index to denote "no value". | ||
19 | void scene_mem_init(); | ||
20 | |||
21 | /// Destroy the scene memory. | ||
22 | void scene_mem_destroy(); | ||
23 | |||
24 | /// ---------------------------------------------------------------------------- | ||
25 | /// Memory allocation. | ||
26 | /// ---------------------------------------------------------------------------- | ||
27 | |||
28 | /// Allocate space for a camera. | ||
29 | SceneCamera* mem_alloc_camera(); | ||
30 | |||
31 | /// Allocate space for a light. | ||
32 | Light* mem_alloc_light(); | ||
33 | |||
34 | /// Allocate space for a material. | ||
35 | Material* mem_alloc_material(); | ||
36 | |||
37 | /// Allocate space for a mesh. | ||
38 | Mesh* mem_alloc_mesh(); | ||
39 | |||
40 | /// Allocate space for a mesh link. | ||
41 | MeshLink* mem_alloc_mesh_link(); | ||
42 | |||
43 | /// Allocate space for a scene node. | ||
44 | SceneNode* mem_alloc_node(); | ||
45 | |||
46 | /// Allocate space for a scene object. | ||
47 | SceneObject* mem_alloc_object(); | ||
48 | |||
49 | /// Allocate space for a scene. | ||
50 | Scene* mem_alloc_scene(); | ||
51 | |||
52 | /// Free the camera. | ||
53 | void mem_free_camera(SceneCamera**); | ||
54 | |||
55 | /// Free the light. | ||
56 | void mem_free_light(Light**); | ||
57 | |||
58 | /// Free the material. | ||
59 | void mem_free_material(Material**); | ||
60 | |||
61 | /// Free the mesh. | ||
62 | void mem_free_mesh(Mesh**); | ||
63 | |||
64 | /// Free the mesh link. | ||
65 | void mem_free_mesh_link(MeshLink**); | ||
66 | |||
67 | /// Free the scene node. | ||
68 | void mem_free_node(SceneNode**); | ||
69 | |||
70 | /// Free the scene object. | ||
71 | void mem_free_object(SceneObject**); | ||
72 | |||
73 | /// Free the scene. | ||
74 | void mem_free_scene(Scene**); | ||
75 | |||
76 | /// ---------------------------------------------------------------------------- | ||
77 | /// Query objects by index. | ||
78 | /// ---------------------------------------------------------------------------- | ||
79 | |||
80 | /// Get a camera by index. | ||
81 | SceneCamera* mem_get_camera(camera_idx); | ||
82 | |||
83 | /// Get a light by index. | ||
84 | Light* mem_get_light(light_idx); | ||
85 | |||
86 | /// Get a material by index. | ||
87 | Material* mem_get_material(material_idx); | ||
88 | |||
89 | /// Get a mesh by index. | ||
90 | Mesh* mem_get_mesh(mesh_idx); | ||
91 | |||
92 | /// Get a mesh link by index. | ||
93 | MeshLink* mem_get_mesh_link(mesh_link_idx); | ||
94 | |||
95 | /// Get a node by index. | ||
96 | SceneNode* mem_get_node(node_idx); | ||
97 | |||
98 | /// Get an object by index. | ||
99 | SceneObject* mem_get_object(object_idx); | ||
100 | |||
101 | /// Get a scene by index. | ||
102 | Scene* mem_get_scene(scene_idx); | ||
103 | |||
104 | /// ---------------------------------------------------------------------------- | ||
105 | /// Map objects to indices. | ||
106 | /// ---------------------------------------------------------------------------- | ||
107 | |||
108 | /// Get the camera's index. | ||
109 | camera_idx mem_get_camera_index(const SceneCamera*); | ||
110 | |||
111 | /// Get the light's index. | ||
112 | light_idx mem_get_light_index(const Light*); | ||
113 | |||
114 | /// Get the material's index. | ||
115 | material_idx mem_get_material_index(const Material*); | ||
116 | |||
117 | /// Get the mesh's index. | ||
118 | mesh_idx mem_get_mesh_index(const Mesh*); | ||
119 | |||
120 | /// Get the mesh link's index. | ||
121 | mesh_link_idx mem_get_mesh_link_index(const MeshLink*); | ||
122 | |||
123 | /// Get the node's index. | ||
124 | node_idx mem_get_node_index(const SceneNode*); | ||
125 | |||
126 | /// Get the object's index. | ||
127 | object_idx mem_get_object_index(const SceneObject*); | ||
128 | |||
129 | /// Get the scene's index. | ||
130 | scene_idx mem_get_scene_index(const Scene*); | ||
diff --git a/gfx/src/scene/types.h b/gfx/src/scene/types.h new file mode 100644 index 0000000..2863ac7 --- /dev/null +++ b/gfx/src/scene/types.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <stdint.h> | ||
4 | |||
5 | typedef uint16_t gfx_idx; | ||
6 | |||
7 | // Strongly-typed indices. | ||
8 | |||
9 | #define DEF_STRONG_INDEX(TYPE_NAME) \ | ||
10 | typedef struct TYPE_NAME##_idx { \ | ||
11 | gfx_idx val; \ | ||
12 | } TYPE_NAME##_idx; | ||
13 | |||
14 | DEF_STRONG_INDEX(camera) | ||
15 | DEF_STRONG_INDEX(light) | ||
16 | DEF_STRONG_INDEX(material) | ||
17 | DEF_STRONG_INDEX(mesh) | ||
18 | DEF_STRONG_INDEX(mesh_link) | ||
19 | DEF_STRONG_INDEX(node) | ||
20 | DEF_STRONG_INDEX(object) | ||
21 | DEF_STRONG_INDEX(scene) | ||
diff --git a/gfx/src/util/geometry.c b/gfx/src/util/geometry.c new file mode 100644 index 0000000..d485125 --- /dev/null +++ b/gfx/src/util/geometry.c | |||
@@ -0,0 +1,44 @@ | |||
1 | #include <gfx/util/geometry.h> | ||
2 | |||
3 | #include <math/vec2.h> | ||
4 | |||
5 | static void gfx_make_quad_11_positions(vec2 positions[4]) { | ||
6 | positions[0] = vec2_make(-1, +1); | ||
7 | positions[1] = vec2_make(-1, -1); | ||
8 | positions[2] = vec2_make(+1, +1); | ||
9 | positions[3] = vec2_make(+1, -1); | ||
10 | } | ||
11 | |||
12 | static void gfx_make_quad_01_positions(vec2 positions[4]) { | ||
13 | positions[0] = vec2_make(0, 0); | ||
14 | positions[1] = vec2_make(1, 0); | ||
15 | positions[2] = vec2_make(1, 1); | ||
16 | positions[3] = vec2_make(0, 1); | ||
17 | } | ||
18 | |||
19 | static GeometryDesc gfx_make_quad_desc(vec2 positions[4]) { | ||
20 | GeometryDesc desc = (GeometryDesc){0}; | ||
21 | desc.positions2d.data = positions; | ||
22 | desc.positions2d.size_bytes = 4 * sizeof(vec2); | ||
23 | desc.num_verts = 4; | ||
24 | desc.type = TriangleStrip; | ||
25 | return desc; | ||
26 | } | ||
27 | |||
28 | Geometry* gfx_make_quad_11(RenderBackend* render_backend) { | ||
29 | assert(render_backend); | ||
30 | |||
31 | vec2 positions[4]; | ||
32 | gfx_make_quad_11_positions(positions); | ||
33 | const GeometryDesc geometry_desc = gfx_make_quad_desc(positions); | ||
34 | return gfx_make_geometry(render_backend, &geometry_desc); | ||
35 | } | ||
36 | |||
37 | Geometry* gfx_make_quad_01(RenderBackend* render_backend) { | ||
38 | assert(render_backend); | ||
39 | |||
40 | vec2 positions[4]; | ||
41 | gfx_make_quad_01_positions(positions); | ||
42 | const GeometryDesc geometry_desc = gfx_make_quad_desc(positions); | ||
43 | return gfx_make_geometry(render_backend, &geometry_desc); | ||
44 | } | ||
diff --git a/gfx/src/util/ibl.c b/gfx/src/util/ibl.c new file mode 100644 index 0000000..704cf08 --- /dev/null +++ b/gfx/src/util/ibl.c | |||
@@ -0,0 +1,303 @@ | |||
1 | #include <gfx/util/ibl.h> | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | #include <gfx/util/geometry.h> | ||
5 | #include <gfx/util/shader.h> | ||
6 | #include <math/mat4.h> | ||
7 | |||
8 | #include <assert.h> | ||
9 | #include <stdlib.h> | ||
10 | |||
11 | typedef struct IBL { | ||
12 | Geometry* quad; | ||
13 | ShaderProgram* brdf_integration_map_shader; | ||
14 | ShaderProgram* irradiance_map_shader; | ||
15 | ShaderProgram* prefiltered_environment_map_shader; | ||
16 | Texture* brdf_integration_map; | ||
17 | FrameBuffer* framebuffer; | ||
18 | mat4 rotations[6]; | ||
19 | } IBL; | ||
20 | |||
21 | static const CubemapFace faces[6] = { | ||
22 | CubemapFacePosX, // Right. | ||
23 | CubemapFaceNegX, // Left. | ||
24 | CubemapFacePosY, // Up. | ||
25 | CubemapFaceNegY, // Down. | ||
26 | CubemapFacePosZ, // Back. | ||
27 | CubemapFaceNegZ, // Forward. | ||
28 | }; | ||
29 | |||
30 | IBL* gfx_make_ibl(RenderBackend* render_backend) { | ||
31 | assert(render_backend); | ||
32 | |||
33 | IBL* ibl = calloc(1, sizeof(IBL)); | ||
34 | if (!ibl) { | ||
35 | return 0; | ||
36 | } | ||
37 | |||
38 | if (!(ibl->quad = gfx_make_quad_11(render_backend))) { | ||
39 | goto cleanup; | ||
40 | } | ||
41 | |||
42 | // We only need the BRDF integration once since we are caching the map, but | ||
43 | // compiling the shader up front may lead to fewer surprises. Not that the | ||
44 | // shader is fully compiled up front anyway, since the driver will typically | ||
45 | // defer full compilation to the first draw call. | ||
46 | if (!(ibl->brdf_integration_map_shader = | ||
47 | gfx_make_brdf_integration_map_shader(render_backend))) { | ||
48 | goto cleanup; | ||
49 | } | ||
50 | |||
51 | if (!(ibl->irradiance_map_shader = | ||
52 | gfx_make_irradiance_map_shader(render_backend))) { | ||
53 | goto cleanup; | ||
54 | } | ||
55 | |||
56 | if (!(ibl->prefiltered_environment_map_shader = | ||
57 | gfx_make_prefiltered_environment_map_shader(render_backend))) { | ||
58 | goto cleanup; | ||
59 | } | ||
60 | |||
61 | // Create an empty framebuffer for now. Will attach the colour buffer later | ||
62 | // as we render the faces of the cube. | ||
63 | if (!(ibl->framebuffer = gfx_make_framebuffer( | ||
64 | render_backend, | ||
65 | &(FrameBufferDesc){ | ||
66 | .colour = | ||
67 | (FrameBufferAttachment){.type = FrameBufferNoAttachment}, | ||
68 | .depth = (FrameBufferAttachment){ | ||
69 | .type = FrameBufferNoAttachment}}))) { | ||
70 | goto cleanup; | ||
71 | } | ||
72 | |||
73 | // Right. | ||
74 | ibl->rotations[0] = mat4_lookat(/*position=*/vec3_make(0, 0, 0), | ||
75 | /*target=*/vec3_make(1, 0, 0), | ||
76 | /*up=*/vec3_make(0, 1, 0)); | ||
77 | // Left. | ||
78 | ibl->rotations[1] = mat4_lookat(/*position=*/vec3_make(0, 0, 0), | ||
79 | /*target=*/vec3_make(-1, 0, 0), | ||
80 | /*up=*/vec3_make(0, 1, 0)); | ||
81 | // Up. | ||
82 | ibl->rotations[2] = mat4_lookat(/*position=*/vec3_make(0, 0, 0), | ||
83 | /*target=*/vec3_make(0, 1, 0), | ||
84 | /*up=*/vec3_make(0, 0, 1)); | ||
85 | // Down. | ||
86 | ibl->rotations[3] = mat4_lookat(/*position=*/vec3_make(0, 0, 0), | ||
87 | /*target=*/vec3_make(0, -1, 0), | ||
88 | /*up=*/vec3_make(0, 0, -1)); | ||
89 | // Back. | ||
90 | ibl->rotations[4] = mat4_lookat(/*position=*/vec3_make(0, 0, 0), | ||
91 | /*target=*/vec3_make(0, 0, 1), | ||
92 | /*up=*/vec3_make(0, 1, 0)); | ||
93 | // Forward. | ||
94 | ibl->rotations[5] = mat4_lookat(/*position=*/vec3_make(0, 0, 0), | ||
95 | /*target=*/vec3_make(0, 0, -1), | ||
96 | /*up=*/vec3_make(0, 1, 0)); | ||
97 | |||
98 | return ibl; | ||
99 | |||
100 | cleanup: | ||
101 | gfx_destroy_ibl(render_backend, &ibl); | ||
102 | return 0; | ||
103 | } | ||
104 | |||
105 | void gfx_destroy_ibl(RenderBackend* render_backend, IBL** ibl) { | ||
106 | if (!ibl) { | ||
107 | return; | ||
108 | } | ||
109 | if ((*ibl)->quad) { | ||
110 | gfx_destroy_geometry(render_backend, &(*ibl)->quad); | ||
111 | } | ||
112 | if ((*ibl)->brdf_integration_map_shader) { | ||
113 | gfx_destroy_shader_program(render_backend, | ||
114 | &(*ibl)->brdf_integration_map_shader); | ||
115 | } | ||
116 | if ((*ibl)->irradiance_map_shader) { | ||
117 | gfx_destroy_shader_program(render_backend, &(*ibl)->irradiance_map_shader); | ||
118 | } | ||
119 | if ((*ibl)->prefiltered_environment_map_shader) { | ||
120 | gfx_destroy_shader_program(render_backend, | ||
121 | &(*ibl)->prefiltered_environment_map_shader); | ||
122 | } | ||
123 | if ((*ibl)->brdf_integration_map) { | ||
124 | gfx_destroy_texture(render_backend, &(*ibl)->brdf_integration_map); | ||
125 | } | ||
126 | if ((*ibl)->framebuffer) { | ||
127 | gfx_destroy_framebuffer(render_backend, &(*ibl)->framebuffer); | ||
128 | } | ||
129 | free(*ibl); | ||
130 | *ibl = 0; | ||
131 | } | ||
132 | |||
133 | Texture* gfx_make_brdf_integration_map(IBL* ibl, RenderBackend* render_backend, | ||
134 | int width, int height) { | ||
135 | assert(ibl); | ||
136 | assert(render_backend); | ||
137 | |||
138 | if (ibl->brdf_integration_map) { | ||
139 | return ibl->brdf_integration_map; | ||
140 | } | ||
141 | |||
142 | bool success = false; | ||
143 | |||
144 | if (!(ibl->brdf_integration_map = gfx_make_texture( | ||
145 | render_backend, &(TextureDesc){.width = width, | ||
146 | .height = height, | ||
147 | .depth = 1, | ||
148 | .dimension = Texture2D, | ||
149 | .format = TextureRG16, | ||
150 | .filtering = LinearFiltering, | ||
151 | .wrap = ClampToEdge, | ||
152 | .mipmaps = false}))) { | ||
153 | goto cleanup; | ||
154 | } | ||
155 | |||
156 | gfx_activate_framebuffer(ibl->framebuffer); | ||
157 | gfx_framebuffer_set_viewport(ibl->framebuffer, 0, 0, width, height); | ||
158 | gfx_activate_shader_program(ibl->brdf_integration_map_shader); | ||
159 | if (!gfx_framebuffer_attach_colour( | ||
160 | ibl->framebuffer, | ||
161 | &(FrameBufferAttachment){.type = FrameBufferTexture, | ||
162 | .texture.texture = ibl->brdf_integration_map, | ||
163 | .texture.mip_level = 0})) { | ||
164 | goto cleanup; | ||
165 | } | ||
166 | gfx_render_geometry(ibl->quad); | ||
167 | |||
168 | success = true; | ||
169 | |||
170 | cleanup: | ||
171 | gfx_deactivate_shader_program(ibl->brdf_integration_map_shader); | ||
172 | gfx_deactivate_framebuffer(ibl->framebuffer); | ||
173 | if (!success && ibl->brdf_integration_map) { | ||
174 | gfx_destroy_texture(render_backend, &ibl->brdf_integration_map); | ||
175 | return 0; | ||
176 | } else { | ||
177 | return ibl->brdf_integration_map; | ||
178 | } | ||
179 | } | ||
180 | |||
181 | Texture* gfx_make_irradiance_map(IBL* ibl, RenderBackend* render_backend, | ||
182 | const Texture* environment_map, int width, | ||
183 | int height) { | ||
184 | assert(ibl); | ||
185 | assert(render_backend); | ||
186 | assert(environment_map); | ||
187 | |||
188 | Texture* irradiance_map = 0; | ||
189 | bool success = false; | ||
190 | |||
191 | // TODO: Could define colour-renderable texture formats separately to make | ||
192 | // framebuffer creation less error-prone. Or, at the very least, validate the | ||
193 | // choice at runtime. | ||
194 | if (!(irradiance_map = gfx_make_texture( | ||
195 | render_backend, &(TextureDesc){.width = width, | ||
196 | .height = height, | ||
197 | .depth = 1, | ||
198 | .dimension = TextureCubeMap, | ||
199 | .format = TextureRGBA8, | ||
200 | .filtering = NearestFiltering, | ||
201 | .mipmaps = false}))) { | ||
202 | goto cleanup; | ||
203 | } | ||
204 | |||
205 | gfx_activate_framebuffer(ibl->framebuffer); | ||
206 | gfx_framebuffer_set_viewport(ibl->framebuffer, 0, 0, width, height); | ||
207 | gfx_activate_shader_program(ibl->irradiance_map_shader); | ||
208 | gfx_set_texture_uniform(ibl->irradiance_map_shader, "Sky", environment_map); | ||
209 | for (int i = 0; i < 6; ++i) { | ||
210 | if (!gfx_framebuffer_attach_colour( | ||
211 | ibl->framebuffer, | ||
212 | &(FrameBufferAttachment){.type = FrameBufferCubemapTexture, | ||
213 | .cubemap.face = faces[i], | ||
214 | .cubemap.texture = irradiance_map})) { | ||
215 | goto cleanup; | ||
216 | } | ||
217 | gfx_set_mat4_uniform(ibl->irradiance_map_shader, "Modelview", | ||
218 | &ibl->rotations[i]); | ||
219 | gfx_apply_uniforms(ibl->irradiance_map_shader); | ||
220 | gfx_render_geometry(ibl->quad); | ||
221 | } | ||
222 | |||
223 | success = true; | ||
224 | |||
225 | cleanup: | ||
226 | gfx_deactivate_shader_program(ibl->irradiance_map_shader); | ||
227 | gfx_deactivate_framebuffer(ibl->framebuffer); | ||
228 | if (!success && irradiance_map) { | ||
229 | gfx_destroy_texture(render_backend, &irradiance_map); | ||
230 | return 0; | ||
231 | } else { | ||
232 | return irradiance_map; | ||
233 | } | ||
234 | } | ||
235 | |||
236 | Texture* gfx_make_prefiltered_environment_map(IBL* ibl, | ||
237 | RenderBackend* render_backend, | ||
238 | const Texture* environment_map, | ||
239 | int width, int height, | ||
240 | int* max_mip_level) { | ||
241 | assert(ibl); | ||
242 | assert(render_backend); | ||
243 | assert(environment_map); | ||
244 | assert(max_mip_level); | ||
245 | |||
246 | Texture* prefiltered_env_map = 0; | ||
247 | bool success = false; | ||
248 | |||
249 | // TODO: Use 16 bits for more precision and a floating-point format, e.g. | ||
250 | // RGB16F. | ||
251 | if (!(prefiltered_env_map = gfx_make_texture( | ||
252 | render_backend, &(TextureDesc){.width = width, | ||
253 | .height = height, | ||
254 | .depth = 1, | ||
255 | .dimension = TextureCubeMap, | ||
256 | .format = TextureRGBA8, | ||
257 | .filtering = LinearFiltering, | ||
258 | .mipmaps = true}))) { | ||
259 | goto cleanup; | ||
260 | } | ||
261 | |||
262 | gfx_activate_framebuffer(ibl->framebuffer); | ||
263 | gfx_activate_shader_program(ibl->prefiltered_environment_map_shader); | ||
264 | gfx_set_texture_uniform(ibl->prefiltered_environment_map_shader, "Sky", | ||
265 | environment_map); | ||
266 | const int max_mip = (int)(rlog2(min(width, height))); | ||
267 | for (int mip = 0; mip <= max_mip; ++mip) { | ||
268 | const int mip_width = width >> mip; | ||
269 | const int mip_height = height >> mip; | ||
270 | const float roughness = (float)mip / (float)(max_mip); | ||
271 | gfx_framebuffer_set_viewport(ibl->framebuffer, 0, 0, mip_width, mip_height); | ||
272 | gfx_set_float_uniform(ibl->prefiltered_environment_map_shader, "Roughness", | ||
273 | roughness); | ||
274 | |||
275 | for (int i = 0; i < 6; ++i) { | ||
276 | if (!gfx_framebuffer_attach_colour( | ||
277 | ibl->framebuffer, &(FrameBufferAttachment){ | ||
278 | .type = FrameBufferCubemapTexture, | ||
279 | .cubemap.face = faces[i], | ||
280 | .cubemap.mip_level = mip, | ||
281 | .cubemap.texture = prefiltered_env_map})) { | ||
282 | goto cleanup; | ||
283 | } | ||
284 | gfx_set_mat4_uniform(ibl->prefiltered_environment_map_shader, "Modelview", | ||
285 | &ibl->rotations[i]); | ||
286 | gfx_apply_uniforms(ibl->prefiltered_environment_map_shader); | ||
287 | gfx_render_geometry(ibl->quad); | ||
288 | } | ||
289 | } | ||
290 | |||
291 | *max_mip_level = max_mip; | ||
292 | success = true; | ||
293 | |||
294 | cleanup: | ||
295 | gfx_deactivate_shader_program(ibl->prefiltered_environment_map_shader); | ||
296 | gfx_deactivate_framebuffer(ibl->framebuffer); | ||
297 | if (!success && prefiltered_env_map) { | ||
298 | gfx_destroy_texture(render_backend, &prefiltered_env_map); | ||
299 | return 0; | ||
300 | } else { | ||
301 | return prefiltered_env_map; | ||
302 | } | ||
303 | } | ||
diff --git a/gfx/src/util/scene.c b/gfx/src/util/scene.c new file mode 100644 index 0000000..9511a71 --- /dev/null +++ b/gfx/src/util/scene.c | |||
@@ -0,0 +1,1193 @@ | |||
1 | /// Loads scenes from memory and files. | ||
2 | /// | ||
3 | /// Only the GLTF scene format is current supported. | ||
4 | /// | ||
5 | /// ---------------------------------------------------------------------------- | ||
6 | /// glTF File Format Documentation | ||
7 | /// ---------------------------------------------------------------------------- | ||
8 | /// | ||
9 | /// cgltf: | ||
10 | /// https://github.com/jkuhlmann/cgltf | ||
11 | /// | ||
12 | /// gltf overview: | ||
13 | /// https://raw.githubusercontent.com/KhronosGroup/glTF/master/specification/2.0/figures/gltfOverview-2.0.0b.png | ||
14 | /// | ||
15 | /// gltf spec: | ||
16 | /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/README.md | ||
17 | /// | ||
18 | /// Sample models: | ||
19 | /// https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0 | ||
20 | /// https://github.com/KhronosGroup/glTF-Sample-Models/blob/master/2.0/Sponza/glTF/Sponza.gltf | ||
21 | /// https://github.com/KhronosGroup/glTF-Sample-Models/blob/master/2.0/AlphaBlendModeTest/glTF/AlphaBlendModeTest.gltf | ||
22 | /// https://github.com/KhronosGroup/glTF-Sample-Models/blob/master/2.0/Buggy/glTF/Buggy.gltf | ||
23 | /// https://github.com/KhronosGroup/glTF-Sample-Models/blob/master/2.0/AntiqueCamera/glTF/AntiqueCamera.gltf | ||
24 | /// https://github.com/KhronosGroup/glTF-Sample-Models/blob/master/2.0/DamagedHelmet/glTF/DamagedHelmet.gltf | ||
25 | /// | ||
26 | /// ---------------------------------------------------------------------------- | ||
27 | /// Implementation Notes | ||
28 | /// ---------------------------------------------------------------------------- | ||
29 | /// | ||
30 | /// # glTF and the gfx library | ||
31 | /// | ||
32 | /// glTF has concepts that are similar to those in the gfx library, but there | ||
33 | /// isn't an exact 1-1 mapping. Concepts map as follows: | ||
34 | /// | ||
35 | /// glTF gfx | ||
36 | /// ---- --- | ||
37 | /// buffer Buffer | ||
38 | /// accessor + buffer view BufferView | ||
39 | /// mesh primitive (geom + mat) Mesh (also geom + mat) | ||
40 | /// mesh SceneObject | ||
41 | /// node SceneNode | ||
42 | /// | ||
43 | /// glTF buffers map 1-1 with gfx Buffers. glTF scenes make heavy re-use of | ||
44 | /// buffers across views/accessors/meshes, so it is important to make that same | ||
45 | /// re-use in the gfx library to use the data effectively and without | ||
46 | /// duplication. The Sponza scene, for example, has all of its data in one giant | ||
47 | /// buffer. | ||
48 | /// | ||
49 | /// glTF accessors and buffer views are combined and mapped to gfx BufferViews. | ||
50 | /// The glTF buffer view's offset/length/stride are combined with the accessor's | ||
51 | /// offset, and together with the remaining information of both data structures | ||
52 | /// baked into a BufferView. Internally, this information is fed into | ||
53 | /// glVertexAttribPointer() calls, wrapped in a VAO (index view/accessor | ||
54 | /// information is fed into glDrawElements()). This baking should not hurt | ||
55 | /// re-use, at least in the OpenGL world. | ||
56 | /// | ||
57 | /// A glTF mesh primitive contains a piece of geometry and a material. This maps | ||
58 | /// directly to a gfx Mesh. | ||
59 | /// | ||
60 | /// A glTF mesh is a list of mesh primitives. This maps nicely to a gfx | ||
61 | /// SceneObject, with the only inconvenience that terminology gets a little | ||
62 | /// confusing. | ||
63 | /// | ||
64 | /// Finally, glTF nodes map directly to gfx SceneNodes. Both enforce a strict | ||
65 | /// tree hierarchy; DAGs are not supported. | ||
66 | /// | ||
67 | /// # Materials | ||
68 | /// | ||
69 | /// glTF uses the metallic-roughness material model. However, an extension | ||
70 | /// allows a scene to use the specular-glossiness model as well and cgltf | ||
71 | /// supports it: | ||
72 | /// | ||
73 | /// https://kcoley.github.io/glTF/extensions/2.0/Khronos/KHR_materials_pbrSpecularGlossiness/ | ||
74 | /// | ||
75 | /// From the docs, the specular-glossiness model can represent more materials | ||
76 | /// than the metallic-roughness model, but it is also more computationally | ||
77 | /// expensive. Furthermore, a material in glTF can specify parameters for both | ||
78 | /// models, leaving it up to the implementation to decide which one to use. | ||
79 | /// In our case, we use the specular-glosiness model if parameters for it are | ||
80 | /// provided, otherwise we use the metallic-roughness model. | ||
81 | |||
82 | #include <gfx/util/scene.h> | ||
83 | |||
84 | #include <gfx/error.h> | ||
85 | #include <gfx/gfx.h> | ||
86 | #include <gfx/render_backend.h> | ||
87 | #include <gfx/scene/camera.h> | ||
88 | #include <gfx/scene/material.h> | ||
89 | #include <gfx/scene/mesh.h> | ||
90 | #include <gfx/scene/node.h> | ||
91 | #include <gfx/scene/object.h> | ||
92 | #include <gfx/scene/scene.h> | ||
93 | #include <gfx/util/texture.h> | ||
94 | |||
95 | #include <cstring.h> | ||
96 | #include <log/log.h> | ||
97 | #include <math/camera.h> | ||
98 | #include <math/mat4.h> | ||
99 | #include <math/quat.h> | ||
100 | #include <math/vec2.h> | ||
101 | #include <math/vec3.h> | ||
102 | |||
103 | #include <cgltf_tangents.h> | ||
104 | #define CGLTF_IMPLEMENTATION | ||
105 | #include <cgltf.h> | ||
106 | |||
107 | #include <assert.h> | ||
108 | #include <stdbool.h> | ||
109 | #include <stdlib.h> | ||
110 | |||
111 | // Taken from the GL header file. | ||
112 | #define GL_NEAREST 0x2600 | ||
113 | #define GL_LINEAR 0x2601 | ||
114 | #define GL_NEAREST_MIPMAP_NEAREST 0x2700 | ||
115 | #define GL_LINEAR_MIPMAP_NEAREST 0x2701 | ||
116 | #define GL_NEAREST_MIPMAP_LINEAR 0x2702 | ||
117 | #define GL_LINEAR_MIPMAP_LINEAR 0x2703 | ||
118 | |||
119 | // Uniforms names. Must match the names in shaders. | ||
120 | #define UNIFORM_BASE_COLOR_FACTOR "BaseColorFactor" | ||
121 | #define UNIFORM_METALLIC_FACTOR "MetallicFactor" | ||
122 | #define UNIFORM_ROUGHNESS_FACTOR "RoughnessFactor" | ||
123 | #define UNIFORM_EMISSIVE_FACTOR "EmissiveFactor" | ||
124 | #define UNIFORM_BASE_COLOR_TEXTURE "BaseColorTexture" | ||
125 | #define UNIFORM_METALLIC_ROUGHNESS_TEXTURE "MetallicRoughnessTexture" | ||
126 | #define UNIFORM_EMISSIVE_TEXTURE "EmissiveTexture" | ||
127 | #define UNIFORM_AMBIENT_OCCLUSION_TEXTURE "AmbientOcclusionTexture" | ||
128 | #define UNIFORM_NORMAL_MAP "NormalMap" | ||
129 | |||
130 | typedef enum TextureType { | ||
131 | BaseColorTexture, | ||
132 | MetallicRoughnessTexture, | ||
133 | EmissiveTexture, | ||
134 | AmbientOcclusionTexture, | ||
135 | NormalMap, | ||
136 | } TextureType; | ||
137 | |||
138 | /// Describes the properties of a mesh. | ||
139 | /// This is used to create shader permutations. | ||
140 | typedef struct MeshPermutation { | ||
141 | union { | ||
142 | struct { | ||
143 | // Vertex attributes. | ||
144 | bool has_normals : 1; | ||
145 | bool has_tangents : 1; | ||
146 | // Textures. | ||
147 | bool has_normal_map : 1; | ||
148 | bool has_occlusion_texture : 1; | ||
149 | bool has_emissive_texture : 1; | ||
150 | }; | ||
151 | int32_t all; | ||
152 | }; | ||
153 | } MeshPermutation; | ||
154 | |||
155 | /// Map a texture type to the name of the shader uniform used to access the | ||
156 | /// texture. | ||
157 | static const char* TextureUniformName(TextureType type) { | ||
158 | switch (type) { | ||
159 | case BaseColorTexture: | ||
160 | return UNIFORM_BASE_COLOR_TEXTURE; | ||
161 | case MetallicRoughnessTexture: | ||
162 | return UNIFORM_METALLIC_ROUGHNESS_TEXTURE; | ||
163 | case EmissiveTexture: | ||
164 | return UNIFORM_EMISSIVE_TEXTURE; | ||
165 | case AmbientOcclusionTexture: | ||
166 | return UNIFORM_AMBIENT_OCCLUSION_TEXTURE; | ||
167 | case NormalMap: | ||
168 | return UNIFORM_NORMAL_MAP; | ||
169 | default: | ||
170 | assert(false); | ||
171 | return 0; | ||
172 | } | ||
173 | } | ||
174 | |||
175 | /// Map a glTF primitive type to a gfx primitive type. | ||
176 | static PrimitiveType from_gltf_primitive_type(cgltf_primitive_type type) { | ||
177 | switch (type) { | ||
178 | case cgltf_primitive_type_triangles: | ||
179 | return Triangles; | ||
180 | case cgltf_primitive_type_triangle_fan: | ||
181 | return TriangleFan; | ||
182 | case cgltf_primitive_type_triangle_strip: | ||
183 | return TriangleStrip; | ||
184 | default: | ||
185 | LOGE("Unsupported primitive type: %d", type); | ||
186 | assert(false); | ||
187 | return 0; | ||
188 | } | ||
189 | } | ||
190 | |||
191 | /// Return the total number of primitives in the scene. Each mesh may contain | ||
192 | /// multiple primitives. | ||
193 | /// | ||
194 | /// Note that this function scans all of the scenes in the glTF data. | ||
195 | static size_t get_total_primitives(const cgltf_data* data) { | ||
196 | size_t total = 0; | ||
197 | for (cgltf_size i = 0; i < data->meshes_count; ++i) { | ||
198 | total += data->meshes[i].primitives_count; | ||
199 | } | ||
200 | return total; | ||
201 | } | ||
202 | |||
203 | /// Load all buffers from the glTF scene. | ||
204 | /// | ||
205 | /// If buffer data is loaded from memory, set filepath = null. | ||
206 | /// | ||
207 | /// Return an array of Buffers such that the index of each glTF buffer in | ||
208 | /// the original array matches the same Buffer in the resulting array. | ||
209 | static Buffer** load_buffers( | ||
210 | const cgltf_data* data, RenderBackend* render_backend, | ||
211 | cgltf_size* num_buffers) { | ||
212 | assert(data); | ||
213 | assert(render_backend); | ||
214 | assert(num_buffers); | ||
215 | |||
216 | Buffer** buffers = 0; | ||
217 | |||
218 | buffers = calloc(data->buffers_count, sizeof(Buffer*)); | ||
219 | if (!buffers) { | ||
220 | goto cleanup; | ||
221 | } | ||
222 | |||
223 | for (cgltf_size i = 0; i < data->buffers_count; ++i) { | ||
224 | const cgltf_buffer* buffer = &data->buffers[i]; | ||
225 | assert(buffer->data); | ||
226 | buffers[i] = gfx_make_buffer(render_backend, buffer->data, buffer->size); | ||
227 | if (!buffers[i]) { | ||
228 | goto cleanup; | ||
229 | } | ||
230 | } | ||
231 | *num_buffers = data->buffers_count; | ||
232 | return buffers; | ||
233 | |||
234 | cleanup: | ||
235 | if (buffers) { | ||
236 | for (cgltf_size i = 0; i < data->buffers_count; ++i) { | ||
237 | if (buffers[i]) { | ||
238 | gfx_destroy_buffer(render_backend, &buffers[i]); | ||
239 | } | ||
240 | } | ||
241 | free(buffers); | ||
242 | } | ||
243 | *num_buffers = 0; | ||
244 | return 0; | ||
245 | } | ||
246 | |||
247 | /// Load tangent buffers. | ||
248 | static Buffer** load_tangent_buffers( | ||
249 | const cgltfTangentBuffer* tangent_buffers, cgltf_size num_tangent_buffers, | ||
250 | RenderBackend* render_backend) { | ||
251 | assert(tangent_buffers); | ||
252 | assert(render_backend); | ||
253 | |||
254 | Buffer** buffers = 0; | ||
255 | |||
256 | buffers = calloc(num_tangent_buffers, sizeof(Buffer*)); | ||
257 | if (!buffers) { | ||
258 | goto cleanup; | ||
259 | } | ||
260 | |||
261 | for (cgltf_size i = 0; i < num_tangent_buffers; ++i) { | ||
262 | const cgltfTangentBuffer* buffer = &tangent_buffers[i]; | ||
263 | assert(buffer->data); | ||
264 | buffers[i] = | ||
265 | gfx_make_buffer(render_backend, buffer->data, buffer->size_bytes); | ||
266 | if (!buffers[i]) { | ||
267 | goto cleanup; | ||
268 | } | ||
269 | } | ||
270 | |||
271 | return buffers; | ||
272 | |||
273 | cleanup: | ||
274 | if (buffers) { | ||
275 | for (cgltf_size i = 0; i < num_tangent_buffers; ++i) { | ||
276 | if (buffers[i]) { | ||
277 | gfx_destroy_buffer(render_backend, &buffers[i]); | ||
278 | } | ||
279 | } | ||
280 | free(buffers); | ||
281 | } | ||
282 | return 0; | ||
283 | } | ||
284 | |||
285 | /// Load all textures from the glTF scene. | ||
286 | /// | ||
287 | /// Return an array of Textures such that the index of each glTF texture in the | ||
288 | /// original array matches the same Texture in the resulting array. | ||
289 | /// | ||
290 | /// Most textures are in sRGB colour space. One exception is normal maps, which | ||
291 | /// are typically authored in linear space (e.g. DamagedHelmet sample). Since | ||
292 | /// we don't know what colour space we should use at this point, we load the | ||
293 | /// textures lazily and don't actually commit them to GPU memory until we know | ||
294 | /// their colour space. | ||
295 | /// | ||
296 | /// This function returns an array of Texture objects, all of which are null due | ||
297 | /// to lazy loading. It also returns an array of LoadTextureCmd which describes | ||
298 | /// how each Texture in the first array should be loaded. | ||
299 | static Texture** load_textures( | ||
300 | const cgltf_data* data, RenderBackend* render_backend, | ||
301 | const char* directory, LoadTextureCmd** load_texture_cmds, | ||
302 | cgltf_size* num_textures) { | ||
303 | assert(data); | ||
304 | assert(render_backend); | ||
305 | assert(num_textures); | ||
306 | |||
307 | Texture** textures = 0; | ||
308 | *load_texture_cmds = 0; | ||
309 | |||
310 | textures = calloc(data->textures_count, sizeof(Texture*)); | ||
311 | if (!textures) { | ||
312 | goto cleanup; | ||
313 | } | ||
314 | |||
315 | *load_texture_cmds = calloc(data->textures_count, sizeof(LoadTextureCmd)); | ||
316 | if (!*load_texture_cmds) { | ||
317 | goto cleanup; | ||
318 | } | ||
319 | |||
320 | for (cgltf_size i = 0; i < data->textures_count; ++i) { | ||
321 | const cgltf_texture* texture = &data->textures[i]; | ||
322 | const cgltf_image* image = texture->image; | ||
323 | const cgltf_sampler* sampler = texture->sampler; | ||
324 | |||
325 | // glTF models might not specify a sampler. In such case, the client can | ||
326 | // pick its own defaults. | ||
327 | // https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#samplers | ||
328 | bool mipmaps = true; | ||
329 | TextureFiltering filtering = LinearFiltering; | ||
330 | TextureWrapping wrap = Repeat; | ||
331 | |||
332 | if (sampler) { | ||
333 | // The gfx library does not distinguish between sampling the texture and | ||
334 | // combining the mipmap levels. | ||
335 | const cgltf_int filter = | ||
336 | sampler->min_filter == 0 ? sampler->mag_filter : sampler->min_filter; | ||
337 | |||
338 | switch (filter) { | ||
339 | case GL_NEAREST_MIPMAP_NEAREST: | ||
340 | mipmaps = true; | ||
341 | filtering = NearestFiltering; | ||
342 | break; | ||
343 | case GL_NEAREST_MIPMAP_LINEAR: | ||
344 | case GL_LINEAR_MIPMAP_NEAREST: | ||
345 | case GL_LINEAR_MIPMAP_LINEAR: | ||
346 | mipmaps = true; | ||
347 | filtering = LinearFiltering; | ||
348 | break; | ||
349 | case GL_NEAREST: | ||
350 | filtering = NearestFiltering; | ||
351 | break; | ||
352 | case GL_LINEAR: | ||
353 | filtering = LinearFiltering; | ||
354 | break; | ||
355 | default: | ||
356 | break; | ||
357 | } | ||
358 | } | ||
359 | |||
360 | // Currently only supporting loading textures from files. | ||
361 | assert(image->uri); | ||
362 | assert(directory); | ||
363 | mstring fullpath = | ||
364 | mstring_concat_path(mstring_make(directory), mstring_make(image->uri)); | ||
365 | |||
366 | (*load_texture_cmds)[i] = (LoadTextureCmd){ | ||
367 | .origin = TextureFromFile, | ||
368 | .type = LoadTexture, | ||
369 | .colour_space = sRGB, | ||
370 | .filtering = filtering, | ||
371 | .wrap = wrap, | ||
372 | .mipmaps = mipmaps, | ||
373 | .data.texture.filepath = fullpath}; | ||
374 | } | ||
375 | |||
376 | *num_textures = data->textures_count; | ||
377 | return textures; | ||
378 | |||
379 | cleanup: | ||
380 | if (textures) { | ||
381 | for (cgltf_size i = 0; i < data->textures_count; ++i) { | ||
382 | if (textures[i]) { | ||
383 | gfx_destroy_texture(render_backend, &textures[i]); | ||
384 | } | ||
385 | } | ||
386 | free(textures); | ||
387 | } | ||
388 | if (*load_texture_cmds) { | ||
389 | free(*load_texture_cmds); | ||
390 | } | ||
391 | *num_textures = 0; | ||
392 | return 0; | ||
393 | } | ||
394 | |||
395 | /// Load a texture uniform. | ||
396 | /// | ||
397 | /// This determines a texture's colour space based on its intended use, loads | ||
398 | /// the texture, and then defines the sampler shader uniform. | ||
399 | static bool load_texture_uniform( | ||
400 | const cgltf_data* data, RenderBackend* render_backend, | ||
401 | const cgltf_texture_view* texture_view, TextureType texture_type, | ||
402 | Texture** textures, LoadTextureCmd* load_texture_cmds, int* next_uniform, | ||
403 | MaterialDesc* desc) { | ||
404 | assert(data); | ||
405 | assert(render_backend); | ||
406 | assert(texture_view); | ||
407 | assert(textures); | ||
408 | assert(next_uniform); | ||
409 | assert(desc); | ||
410 | assert(*next_uniform < GFX_MAX_UNIFORMS_PER_MATERIAL); | ||
411 | |||
412 | const size_t texture_index = texture_view->texture - data->textures; | ||
413 | assert(texture_index < data->textures_count); | ||
414 | |||
415 | LoadTextureCmd* cmd = &load_texture_cmds[texture_index]; | ||
416 | if (texture_type == NormalMap) { | ||
417 | cmd->colour_space = LinearColourSpace; | ||
418 | } | ||
419 | |||
420 | LOGD( | ||
421 | "Load texture: %s (mipmaps: %d, filtering: %d)", | ||
422 | mstring_cstring(&cmd->data.texture.filepath), cmd->mipmaps, | ||
423 | cmd->filtering); | ||
424 | |||
425 | textures[texture_index] = gfx_load_texture(render_backend, cmd); | ||
426 | if (!textures[texture_index]) { | ||
427 | gfx_prepend_error( | ||
428 | "Failed to load texture: %s", | ||
429 | mstring_cstring(&cmd->data.texture.filepath)); | ||
430 | return false; | ||
431 | } | ||
432 | |||
433 | desc->uniforms[(*next_uniform)++] = (ShaderUniform){ | ||
434 | .name = sstring_make(TextureUniformName(texture_type)), | ||
435 | .type = UniformTexture, | ||
436 | .value.texture = textures[texture_index]}; | ||
437 | |||
438 | return true; | ||
439 | } | ||
440 | |||
441 | /// Load all materials from the glTF scene. | ||
442 | /// | ||
443 | /// Return an array of Materials such that the index of each glTF material in | ||
444 | /// the original array matches the same Material in the resulting array. | ||
445 | static Material** load_materials( | ||
446 | const cgltf_data* data, RenderBackend* render_backend, | ||
447 | ShaderProgram* shader, Texture** textures, | ||
448 | LoadTextureCmd* load_texture_cmds, cgltf_size* num_materials) { | ||
449 | assert(data); | ||
450 | assert(render_backend); | ||
451 | assert(shader); | ||
452 | assert(textures); | ||
453 | assert(load_texture_cmds); | ||
454 | assert(num_materials); | ||
455 | |||
456 | Material** materials = 0; | ||
457 | |||
458 | materials = calloc(data->materials_count, sizeof(Material*)); | ||
459 | if (!materials) { | ||
460 | goto cleanup; | ||
461 | } | ||
462 | |||
463 | for (cgltf_size i = 0; i < data->materials_count; ++i) { | ||
464 | const cgltf_material* mat = &data->materials[i]; | ||
465 | |||
466 | int next_uniform = 0; | ||
467 | MaterialDesc desc = (MaterialDesc){.shader = shader}; | ||
468 | |||
469 | // TODO: emissive texture/factor and other material parameters. | ||
470 | if (mat->has_pbr_metallic_roughness) { | ||
471 | const cgltf_pbr_metallic_roughness* pbr = &mat->pbr_metallic_roughness; | ||
472 | |||
473 | assert(next_uniform + 3 < GFX_MAX_UNIFORMS_PER_MATERIAL); | ||
474 | |||
475 | desc.uniforms[next_uniform++] = (ShaderUniform){ | ||
476 | .name = sstring_make(UNIFORM_BASE_COLOR_FACTOR), | ||
477 | .type = UniformVec4, | ||
478 | .value.vec4 = vec4_from_array(pbr->base_color_factor)}; | ||
479 | |||
480 | desc.uniforms[next_uniform++] = (ShaderUniform){ | ||
481 | .name = sstring_make(UNIFORM_METALLIC_FACTOR), | ||
482 | .type = UniformFloat, | ||
483 | .value.scalar = pbr->metallic_factor}; | ||
484 | |||
485 | desc.uniforms[next_uniform++] = (ShaderUniform){ | ||
486 | .name = sstring_make(UNIFORM_ROUGHNESS_FACTOR), | ||
487 | .type = UniformFloat, | ||
488 | .value.scalar = pbr->roughness_factor}; | ||
489 | |||
490 | if (pbr->base_color_texture.texture) { | ||
491 | if (!load_texture_uniform( | ||
492 | data, render_backend, &pbr->base_color_texture, | ||
493 | BaseColorTexture, textures, load_texture_cmds, &next_uniform, | ||
494 | &desc)) { | ||
495 | goto cleanup; | ||
496 | } | ||
497 | } | ||
498 | |||
499 | if (pbr->metallic_roughness_texture.texture) { | ||
500 | if (!load_texture_uniform( | ||
501 | data, render_backend, &pbr->metallic_roughness_texture, | ||
502 | MetallicRoughnessTexture, textures, load_texture_cmds, | ||
503 | &next_uniform, &desc)) { | ||
504 | goto cleanup; | ||
505 | } | ||
506 | } | ||
507 | } | ||
508 | |||
509 | desc.uniforms[next_uniform++] = (ShaderUniform){ | ||
510 | .name = sstring_make(UNIFORM_EMISSIVE_FACTOR), | ||
511 | .type = UniformVec3, | ||
512 | .value.vec3 = vec3_from_array(mat->emissive_factor)}; | ||
513 | |||
514 | if (mat->emissive_texture.texture) { | ||
515 | if (!load_texture_uniform( | ||
516 | data, render_backend, &mat->emissive_texture, EmissiveTexture, | ||
517 | textures, load_texture_cmds, &next_uniform, &desc)) { | ||
518 | goto cleanup; | ||
519 | } | ||
520 | } | ||
521 | |||
522 | if (mat->occlusion_texture.texture) { | ||
523 | if (!load_texture_uniform( | ||
524 | data, render_backend, &mat->occlusion_texture, | ||
525 | AmbientOcclusionTexture, textures, load_texture_cmds, | ||
526 | &next_uniform, &desc)) { | ||
527 | goto cleanup; | ||
528 | } | ||
529 | } | ||
530 | |||
531 | if (mat->normal_texture.texture) { | ||
532 | if (!load_texture_uniform( | ||
533 | data, render_backend, &mat->normal_texture, NormalMap, textures, | ||
534 | load_texture_cmds, &next_uniform, &desc)) { | ||
535 | goto cleanup; | ||
536 | } | ||
537 | } | ||
538 | |||
539 | assert(next_uniform < GFX_MAX_UNIFORMS_PER_MATERIAL); | ||
540 | desc.num_uniforms = next_uniform; | ||
541 | |||
542 | materials[i] = gfx_make_material(&desc); | ||
543 | if (!materials[i]) { | ||
544 | goto cleanup; | ||
545 | } | ||
546 | } | ||
547 | |||
548 | *num_materials = data->materials_count; | ||
549 | return materials; | ||
550 | |||
551 | cleanup: | ||
552 | if (materials) { | ||
553 | for (cgltf_size i = 0; i < data->materials_count; ++i) { | ||
554 | if (materials[i]) { | ||
555 | gfx_destroy_material(&materials[i]); | ||
556 | } | ||
557 | } | ||
558 | free(materials); | ||
559 | } | ||
560 | *num_materials = 0; | ||
561 | return 0; | ||
562 | } | ||
563 | |||
564 | /// Configures the MeshPermutation based on the given material. | ||
565 | static void configure_material_permutation( | ||
566 | MeshPermutation* perm, cgltf_material* material) { | ||
567 | assert(perm); | ||
568 | assert(material); | ||
569 | |||
570 | perm->has_normal_map = material->normal_texture.texture != 0; | ||
571 | perm->has_occlusion_texture = material->occlusion_texture.texture != 0; | ||
572 | perm->has_emissive_texture = material->emissive_texture.texture != 0; | ||
573 | } | ||
574 | |||
575 | /// Load all meshes from the glTF scene. | ||
576 | static SceneObject** load_meshes( | ||
577 | const cgltf_data* data, Gfx* gfx, Buffer** buffers, | ||
578 | Buffer** tangent_buffers, Material** materials, | ||
579 | const cgltfTangentBuffer* cgltf_tangent_buffers, | ||
580 | cgltf_size num_tangent_buffers, Geometry*** geometries, Mesh*** meshes, | ||
581 | MeshPermutation** mesh_permutations, cgltf_size* num_geometries, | ||
582 | cgltf_size* num_meshes, cgltf_size* num_scene_objects) { | ||
583 | // Walk through the mesh primitives to create Meshes. A GLTF mesh primitive | ||
584 | // has a material (Mesh) and vertex data (Geometry). A GLTF mesh maps to | ||
585 | // a SceneObject. | ||
586 | // | ||
587 | // glTF gfx | ||
588 | // ---- --- | ||
589 | // Mesh SceneObject | ||
590 | // Mesh primitive Mesh / Geometry | ||
591 | // Accessor + buffer view BufferView | ||
592 | // Buffer Buffer | ||
593 | assert(data); | ||
594 | assert(gfx); | ||
595 | assert(buffers); | ||
596 | assert(materials); | ||
597 | assert(geometries); | ||
598 | assert(meshes); | ||
599 | assert(mesh_permutations); | ||
600 | assert(num_geometries); | ||
601 | assert(num_meshes); | ||
602 | assert(num_scene_objects); | ||
603 | if (num_tangent_buffers > 0) { | ||
604 | assert(tangent_buffers); | ||
605 | assert(cgltf_tangent_buffers); | ||
606 | } | ||
607 | |||
608 | // TODO: pass render_backend as argument instead of gfx. | ||
609 | RenderBackend* render_backend = gfx_get_render_backend(gfx); | ||
610 | |||
611 | const size_t primitive_count = get_total_primitives(data); | ||
612 | |||
613 | *geometries = calloc(primitive_count, sizeof(Geometry*)); | ||
614 | if (!*geometries) { | ||
615 | goto cleanup; | ||
616 | } | ||
617 | *meshes = calloc(primitive_count, sizeof(Mesh*)); | ||
618 | if (!*meshes) { | ||
619 | goto cleanup; | ||
620 | } | ||
621 | *mesh_permutations = calloc(primitive_count, sizeof(MeshPermutation)); | ||
622 | if (!*mesh_permutations) { | ||
623 | goto cleanup; | ||
624 | } | ||
625 | SceneObject** objects = calloc(data->meshes_count, sizeof(SceneObject*)); | ||
626 | if (!objects) { | ||
627 | goto cleanup; | ||
628 | } | ||
629 | |||
630 | // Points to the next available Mesh and also the next available Geometry. | ||
631 | // There is one (Mesh, Geometry) pair per glTF mesh primitive. | ||
632 | size_t next_mesh = 0; | ||
633 | |||
634 | for (cgltf_size m = 0; m < data->meshes_count; ++m) { | ||
635 | const cgltf_mesh* mesh = &data->meshes[m]; | ||
636 | |||
637 | objects[m] = gfx_make_object(); | ||
638 | if (!objects[m]) { | ||
639 | goto cleanup; | ||
640 | } | ||
641 | |||
642 | for (cgltf_size p = 0; p < mesh->primitives_count; ++p) { | ||
643 | assert(next_mesh < primitive_count); | ||
644 | const cgltf_primitive* prim = &mesh->primitives[p]; | ||
645 | MeshPermutation* perm = mesh_permutations[next_mesh]; | ||
646 | |||
647 | GeometryDesc geometry_desc = { | ||
648 | .type = from_gltf_primitive_type(prim->type)}; | ||
649 | |||
650 | // Vertex indices. | ||
651 | if (prim->indices) { | ||
652 | const cgltf_accessor* accessor = prim->indices; | ||
653 | const cgltf_buffer_view* view = prim->indices->buffer_view; | ||
654 | const cgltf_size buffer_index = view->buffer - data->buffers; | ||
655 | assert(buffer_index < data->buffers_count); | ||
656 | const Buffer* buffer = buffers[buffer_index]; | ||
657 | geometry_desc.indices.buffer = buffer; | ||
658 | geometry_desc.indices.offset_bytes = accessor->offset + view->offset; | ||
659 | geometry_desc.indices.size_bytes = view->size; | ||
660 | geometry_desc.indices.stride_bytes = view->stride; | ||
661 | geometry_desc.num_indices = prim->indices->count; | ||
662 | } | ||
663 | |||
664 | // Vertex attributes. | ||
665 | for (cgltf_size a = 0; a < prim->attributes_count; ++a) { | ||
666 | const cgltf_attribute* attrib = &prim->attributes[a]; | ||
667 | const cgltf_accessor* accessor = attrib->data; | ||
668 | const cgltf_buffer_view* view = accessor->buffer_view; | ||
669 | const cgltf_size offset = accessor->offset + view->offset; | ||
670 | const cgltf_size buffer_index = view->buffer - data->buffers; | ||
671 | assert(buffer_index < data->buffers_count); | ||
672 | const Buffer* buffer = buffers[buffer_index]; | ||
673 | |||
674 | BufferView2d* buffer_view_2d = 0; | ||
675 | BufferView3d* buffer_view_3d = 0; | ||
676 | BufferView4d* buffer_view_4d = 0; | ||
677 | |||
678 | switch (attrib->type) { | ||
679 | case cgltf_attribute_type_position: { | ||
680 | switch (accessor->type) { | ||
681 | case cgltf_type_vec2: | ||
682 | assert(geometry_desc.positions3d.buffer == 0); | ||
683 | buffer_view_2d = &geometry_desc.positions2d; | ||
684 | break; | ||
685 | case cgltf_type_vec3: | ||
686 | assert(geometry_desc.positions2d.buffer == 0); | ||
687 | buffer_view_3d = &geometry_desc.positions3d; | ||
688 | break; | ||
689 | default: | ||
690 | LOGE( | ||
691 | "Unhandled accessor type %d in vertex positions", | ||
692 | accessor->type); | ||
693 | assert(false); | ||
694 | break; | ||
695 | } | ||
696 | break; | ||
697 | } | ||
698 | case cgltf_attribute_type_normal: | ||
699 | buffer_view_3d = &geometry_desc.normals; | ||
700 | perm->has_normals = true; | ||
701 | break; | ||
702 | case cgltf_attribute_type_tangent: | ||
703 | buffer_view_4d = &geometry_desc.tangents; | ||
704 | perm->has_tangents = true; | ||
705 | break; | ||
706 | case cgltf_attribute_type_texcoord: | ||
707 | buffer_view_2d = &geometry_desc.texcoords; | ||
708 | break; | ||
709 | default: | ||
710 | // Attribute ignored. | ||
711 | break; | ||
712 | } | ||
713 | |||
714 | if (buffer_view_2d) { | ||
715 | buffer_view_2d->buffer = buffer; | ||
716 | buffer_view_2d->offset_bytes = offset; | ||
717 | buffer_view_2d->size_bytes = view->size; | ||
718 | buffer_view_2d->stride_bytes = view->stride; | ||
719 | } else if (buffer_view_3d) { | ||
720 | buffer_view_3d->buffer = buffer; | ||
721 | buffer_view_3d->offset_bytes = offset; | ||
722 | buffer_view_3d->size_bytes = view->size; | ||
723 | buffer_view_3d->stride_bytes = view->stride; | ||
724 | } else if (buffer_view_4d) { | ||
725 | buffer_view_4d->buffer = buffer; | ||
726 | buffer_view_4d->offset_bytes = offset; | ||
727 | buffer_view_4d->size_bytes = view->size; | ||
728 | buffer_view_4d->stride_bytes = view->stride; | ||
729 | } | ||
730 | } // Vertex attributes. | ||
731 | |||
732 | // If the mesh primitive has no tangents, see if they were computed | ||
733 | // separately. | ||
734 | if (!geometry_desc.tangents.buffer) { | ||
735 | for (cgltf_size t = 0; t < num_tangent_buffers; ++t) { | ||
736 | const cgltfTangentBuffer* cgltf_buffer = &cgltf_tangent_buffers[t]; | ||
737 | |||
738 | if (cgltf_buffer->primitive == prim) { | ||
739 | BufferView4d* view = &geometry_desc.tangents; | ||
740 | view->buffer = tangent_buffers[t]; | ||
741 | view->offset_bytes = 0; | ||
742 | view->size_bytes = cgltf_buffer->size_bytes; | ||
743 | view->stride_bytes = 0; // Tightly packed. | ||
744 | break; | ||
745 | } | ||
746 | } | ||
747 | } | ||
748 | |||
749 | // Set the number of vertices in the geometry. Since a geometry can have | ||
750 | // either 2d or 3d positions but not both, here we can perform addition to | ||
751 | // compute the total number of vertices. | ||
752 | geometry_desc.num_verts = | ||
753 | (geometry_desc.positions2d.size_bytes / sizeof(vec2)) + | ||
754 | (geometry_desc.positions3d.size_bytes / sizeof(vec3)); | ||
755 | |||
756 | // Check that the number of vertices is consistent across all vertex | ||
757 | // attributes. | ||
758 | if (geometry_desc.normals.buffer) { | ||
759 | assert( | ||
760 | (geometry_desc.normals.size_bytes / sizeof(vec3)) == | ||
761 | geometry_desc.num_verts); | ||
762 | } | ||
763 | if (geometry_desc.tangents.buffer) { | ||
764 | assert( | ||
765 | (geometry_desc.tangents.size_bytes / sizeof(vec4)) == | ||
766 | geometry_desc.num_verts); | ||
767 | } | ||
768 | if (geometry_desc.texcoords.buffer) { | ||
769 | assert( | ||
770 | (geometry_desc.texcoords.size_bytes / sizeof(vec2)) == | ||
771 | geometry_desc.num_verts); | ||
772 | } | ||
773 | |||
774 | (*geometries)[next_mesh] = | ||
775 | gfx_make_geometry(render_backend, &geometry_desc); | ||
776 | |||
777 | const cgltf_size material_index = prim->material - data->materials; | ||
778 | assert(material_index < data->materials_count); | ||
779 | const Material* material = materials[material_index]; | ||
780 | |||
781 | configure_material_permutation(perm, prim->material); | ||
782 | |||
783 | (*meshes)[next_mesh] = gfx_make_mesh(&(MeshDesc){ | ||
784 | .geometry = (*geometries)[next_mesh], .material = material}); | ||
785 | |||
786 | gfx_add_object_mesh(objects[m], (*meshes)[next_mesh]); | ||
787 | |||
788 | ++next_mesh; | ||
789 | } // glTF mesh primitive / gfx Mesh. | ||
790 | } // glTF mesh / gfx SceneObject. | ||
791 | |||
792 | *num_geometries = primitive_count; | ||
793 | *num_meshes = primitive_count; | ||
794 | *num_scene_objects = data->meshes_count; | ||
795 | return objects; | ||
796 | |||
797 | cleanup: | ||
798 | // Destroy resources, free pointers arrays. | ||
799 | if (*geometries) { | ||
800 | for (size_t i = 0; i < primitive_count; ++i) { | ||
801 | if ((*geometries)[i]) { | ||
802 | gfx_destroy_geometry(render_backend, &(*geometries[i])); | ||
803 | } | ||
804 | } | ||
805 | free(*geometries); | ||
806 | *geometries = 0; | ||
807 | } | ||
808 | if (*meshes) { | ||
809 | for (size_t i = 0; i < primitive_count; ++i) { | ||
810 | if ((*meshes[i])) { | ||
811 | gfx_destroy_mesh(&(*meshes)[i]); | ||
812 | } | ||
813 | } | ||
814 | free(*meshes); | ||
815 | *meshes = 0; | ||
816 | } | ||
817 | if (*mesh_permutations) { | ||
818 | free(*mesh_permutations); | ||
819 | mesh_permutations = 0; | ||
820 | } | ||
821 | if (objects) { | ||
822 | for (cgltf_size i = 0; i < data->meshes_count; ++i) { | ||
823 | if (objects[i]) { | ||
824 | gfx_destroy_object(&objects[i]); | ||
825 | } | ||
826 | } | ||
827 | free(objects); | ||
828 | objects = 0; | ||
829 | } | ||
830 | *num_geometries = 0; | ||
831 | *num_meshes = 0; | ||
832 | *num_scene_objects = 0; | ||
833 | return 0; | ||
834 | } | ||
835 | |||
836 | /// Load all nodes from the glTF scene. | ||
837 | /// | ||
838 | /// This function ignores the many scenes and default scene of the glTF spec | ||
839 | /// and instead just loads all nodes into a single gfx Scene. | ||
840 | static SceneNode** load_nodes( | ||
841 | const cgltf_data* data, Gfx* gfx, SceneNode* root_node, | ||
842 | SceneObject** scene_objects, SceneCamera*** cameras, | ||
843 | cgltf_size* num_cameras, cgltf_size* num_nodes) { | ||
844 | // Note that with glTF 2.0, nodes do not form a DAG / scene graph but a | ||
845 | // disjount union of strict trees: | ||
846 | // | ||
847 | // "For Version 2.0 conformance, the glTF node hierarchy is not a directed | ||
848 | // acyclic graph (DAG) or scene graph, but a disjoint union of strict trees. | ||
849 | // That is, no node may be a direct descendant of more than one node. This | ||
850 | // restriction is meant to simplify implementation and facilitate | ||
851 | // conformance." | ||
852 | // | ||
853 | // This matches the gfx library implementation, where every node can have at | ||
854 | // most one parent. | ||
855 | assert(data); | ||
856 | // TODO: gfx not needed? | ||
857 | assert(gfx); | ||
858 | assert(root_node); | ||
859 | assert(scene_objects); | ||
860 | assert(cameras); | ||
861 | assert(num_cameras); | ||
862 | assert(num_nodes); | ||
863 | |||
864 | SceneNode** nodes = calloc(data->nodes_count, sizeof(SceneNode**)); | ||
865 | if (!nodes) { | ||
866 | goto cleanup; | ||
867 | } | ||
868 | *cameras = calloc(data->cameras_count, sizeof(SceneCamera**)); | ||
869 | if (!*cameras) { | ||
870 | goto cleanup; | ||
871 | } | ||
872 | |||
873 | cgltf_size next_camera = 0; | ||
874 | |||
875 | // First pass: create all nodes with no hierarchy just yet. We cannot build | ||
876 | // the hierarchy if we do not have a node pointer to connect. | ||
877 | for (cgltf_size n = 0; n < data->nodes_count; ++n) { | ||
878 | const cgltf_node* node = &data->nodes[n]; | ||
879 | |||
880 | // Add SceneObject, SceneCamera or Lights. | ||
881 | // TODO: Handle lights once they are implemented in the gfx library. | ||
882 | if (node->mesh) { | ||
883 | const cgltf_size mesh_index = node->mesh - data->meshes; | ||
884 | assert(mesh_index < data->meshes_count); | ||
885 | nodes[n] = gfx_make_object_node(scene_objects[mesh_index]); | ||
886 | } else if (node->camera) { | ||
887 | assert(next_camera < data->cameras_count); | ||
888 | |||
889 | Camera camera; | ||
890 | const cgltf_camera* cam = node->camera; | ||
891 | |||
892 | // TODO: We could define a function load_cameras() the same way we load | ||
893 | // every mesh and then remove this ad-hoc loading of cameras here, as well | ||
894 | // as remove 'next_camera'. | ||
895 | switch (cam->type) { | ||
896 | case cgltf_camera_type_orthographic: | ||
897 | camera = camera_orthographic( | ||
898 | 0, cam->data.orthographic.xmag, 0, cam->data.orthographic.ymag, | ||
899 | cam->data.orthographic.znear, cam->data.orthographic.zfar); | ||
900 | break; | ||
901 | case cgltf_camera_type_perspective: | ||
902 | camera = camera_perspective( | ||
903 | cam->data.perspective.yfov, cam->data.perspective.aspect_ratio, | ||
904 | cam->data.perspective.znear, cam->data.perspective.zfar); | ||
905 | break; | ||
906 | case cgltf_camera_type_invalid: | ||
907 | break; | ||
908 | } | ||
909 | |||
910 | gfx_set_camera_camera((*cameras)[next_camera], &camera); | ||
911 | nodes[n] = gfx_make_camera_node((*cameras)[next_camera]); | ||
912 | ++next_camera; | ||
913 | } else { | ||
914 | continue; // TODO: implementation for missing node types. | ||
915 | } | ||
916 | assert(nodes[n]); | ||
917 | |||
918 | // Set transform. | ||
919 | mat4 transform; | ||
920 | if (node->has_matrix) { | ||
921 | transform = mat4_from_array(node->matrix); | ||
922 | } else { | ||
923 | transform = mat4_id(); | ||
924 | if (node->has_scale) { | ||
925 | const mat4 scale = mat4_scale(vec3_from_array(node->scale)); | ||
926 | transform = mat4_mul(transform, scale); | ||
927 | } | ||
928 | if (node->has_rotation) { | ||
929 | const quat q = quat_from_array(node->rotation); | ||
930 | const mat4 rotate = mat4_from_quat(q); | ||
931 | transform = mat4_mul(transform, rotate); | ||
932 | } | ||
933 | if (node->has_translation) { | ||
934 | const mat4 translate = | ||
935 | mat4_translate(vec3_from_array(node->translation)); | ||
936 | transform = mat4_mul(translate, transform); | ||
937 | } | ||
938 | } | ||
939 | gfx_set_node_transform(nodes[n], &transform); | ||
940 | |||
941 | // By default, set nodes as children of the root node. The second pass will | ||
942 | // properly set the parent of the relevant nodes, and leave the root node | ||
943 | // as the parent for top-level nodes. | ||
944 | gfx_set_node_parent(nodes[n], root_node); | ||
945 | } // SceneNode. | ||
946 | |||
947 | // Second pass: wire nodes together to build the hierarchy. | ||
948 | for (cgltf_size n = 0; n < data->nodes_count; ++n) { | ||
949 | const cgltf_node* parent = &data->nodes[n]; | ||
950 | SceneNode* parent_scene_node = nodes[n]; | ||
951 | |||
952 | for (cgltf_size c = 0; c < parent->children_count; ++c) { | ||
953 | const cgltf_size child_index = parent->children[c] - data->nodes; | ||
954 | assert(child_index < data->nodes_count); | ||
955 | SceneNode* child_scene_node = nodes[child_index]; | ||
956 | |||
957 | gfx_set_node_parent(child_scene_node, parent_scene_node); | ||
958 | } | ||
959 | } | ||
960 | |||
961 | *num_cameras = data->cameras_count; | ||
962 | *num_nodes = data->nodes_count; | ||
963 | return nodes; | ||
964 | |||
965 | cleanup: | ||
966 | // Destroy resources, free pointers arrays. | ||
967 | if (nodes) { | ||
968 | for (cgltf_size i = 0; i < data->nodes_count; ++i) { | ||
969 | if (nodes[i]) { | ||
970 | gfx_destroy_node(&nodes[i]); | ||
971 | } | ||
972 | } | ||
973 | free(nodes); | ||
974 | } | ||
975 | if (cameras) { | ||
976 | for (cgltf_size i = 0; i < data->cameras_count; ++i) { | ||
977 | if (cameras[i]) { | ||
978 | gfx_destroy_camera(&(*cameras)[i]); | ||
979 | } | ||
980 | } | ||
981 | free(cameras); | ||
982 | } | ||
983 | *num_cameras = 0; | ||
984 | *num_nodes = 0; | ||
985 | return 0; | ||
986 | } | ||
987 | |||
988 | /// Load all scenes from the glTF file into the given gfx Scene. | ||
989 | /// | ||
990 | /// If the scene is loaded from memory, set filepath = null. | ||
991 | /// | ||
992 | /// This function ignores the many scenes and default scene of the glTF spec | ||
993 | /// and instead just loads all scenes into a single gfx Scene. | ||
994 | static bool load_scene( | ||
995 | cgltf_data* data, Gfx* gfx, SceneNode* root_node, const char* filepath, | ||
996 | ShaderProgram* shader, const cgltfTangentBuffer* cgltf_tangent_buffers, | ||
997 | cgltf_size num_tangent_buffers) { | ||
998 | /// In a GLTF scene, buffers can be shared among meshes, meshes among nodes, | ||
999 | /// etc. Each object is referenced by its index in the relevant array. Here we | ||
1000 | /// do a button-up construction, first allocating our own graphics objects in | ||
1001 | /// the same quantities and then re-using the GLTF indices to index these | ||
1002 | /// arrays. | ||
1003 | assert(data); | ||
1004 | assert(gfx); | ||
1005 | assert(root_node); | ||
1006 | |||
1007 | RenderBackend* render_backend = gfx_get_render_backend(gfx); | ||
1008 | |||
1009 | const mstring directory = mstring_dirname(mstring_make(filepath)); | ||
1010 | LOGD("Filepath: %s", filepath); | ||
1011 | LOGD("Directory: %s", mstring_cstring(&directory)); | ||
1012 | |||
1013 | Buffer** buffers = 0; | ||
1014 | Buffer** tangent_buffers = 0; | ||
1015 | Geometry** geometries = 0; | ||
1016 | Material** materials = 0; | ||
1017 | Mesh** meshes = 0; | ||
1018 | SceneObject** scene_objects = 0; | ||
1019 | SceneCamera** scene_cameras = 0; | ||
1020 | SceneNode** scene_nodes = 0; | ||
1021 | Texture** textures = 0; | ||
1022 | LoadTextureCmd* load_texture_cmds = 0; | ||
1023 | MeshPermutation* mesh_permutations = 0; | ||
1024 | cgltf_size num_buffers = 0; | ||
1025 | cgltf_size num_geometries = 0; | ||
1026 | cgltf_size num_materials = 0; | ||
1027 | cgltf_size num_meshes = 0; | ||
1028 | cgltf_size num_scene_objects = 0; | ||
1029 | cgltf_size num_scene_cameras = 0; | ||
1030 | cgltf_size num_scene_nodes = 0; | ||
1031 | cgltf_size num_textures = 0; | ||
1032 | |||
1033 | buffers = load_buffers(data, render_backend, &num_buffers); | ||
1034 | if (!buffers) { | ||
1035 | goto cleanup; | ||
1036 | } | ||
1037 | |||
1038 | if (num_tangent_buffers > 0) { | ||
1039 | tangent_buffers = load_tangent_buffers( | ||
1040 | cgltf_tangent_buffers, num_tangent_buffers, render_backend); | ||
1041 | if (!tangent_buffers) { | ||
1042 | goto cleanup; | ||
1043 | } | ||
1044 | } | ||
1045 | |||
1046 | textures = load_textures( | ||
1047 | data, render_backend, mstring_cstring(&directory), &load_texture_cmds, | ||
1048 | &num_textures); | ||
1049 | if (!textures || !load_texture_cmds) { | ||
1050 | goto cleanup; | ||
1051 | } | ||
1052 | |||
1053 | materials = load_materials( | ||
1054 | data, render_backend, shader, textures, load_texture_cmds, | ||
1055 | &num_materials); | ||
1056 | if (!materials) { | ||
1057 | goto cleanup; | ||
1058 | } | ||
1059 | |||
1060 | scene_objects = load_meshes( | ||
1061 | data, gfx, buffers, tangent_buffers, materials, cgltf_tangent_buffers, | ||
1062 | num_tangent_buffers, &geometries, &meshes, &mesh_permutations, | ||
1063 | &num_geometries, &num_meshes, &num_scene_objects); | ||
1064 | if (!scene_objects) { | ||
1065 | goto cleanup; | ||
1066 | } | ||
1067 | |||
1068 | scene_nodes = load_nodes( | ||
1069 | data, gfx, root_node, scene_objects, &scene_cameras, &num_scene_cameras, | ||
1070 | &num_scene_nodes); | ||
1071 | if (!scene_nodes) { | ||
1072 | goto cleanup; | ||
1073 | } | ||
1074 | |||
1075 | return true; | ||
1076 | |||
1077 | cleanup: | ||
1078 | if (buffers) { | ||
1079 | for (cgltf_size i = 0; i < num_buffers; ++i) { | ||
1080 | gfx_destroy_buffer(render_backend, &buffers[i]); | ||
1081 | } | ||
1082 | free(buffers); | ||
1083 | } | ||
1084 | if (tangent_buffers) { | ||
1085 | for (cgltf_size i = 0; i < num_tangent_buffers; ++i) { | ||
1086 | gfx_destroy_buffer(render_backend, &tangent_buffers[i]); | ||
1087 | } | ||
1088 | free(tangent_buffers); | ||
1089 | } | ||
1090 | if (textures) { | ||
1091 | for (cgltf_size i = 0; i < num_textures; ++i) { | ||
1092 | gfx_destroy_texture(render_backend, &textures[i]); | ||
1093 | } | ||
1094 | free(textures); | ||
1095 | } | ||
1096 | if (materials) { | ||
1097 | for (cgltf_size i = 0; i < num_materials; ++i) { | ||
1098 | gfx_destroy_material(&materials[i]); | ||
1099 | } | ||
1100 | free(materials); | ||
1101 | } | ||
1102 | if (geometries) { | ||
1103 | for (cgltf_size i = 0; i < num_geometries; ++i) { | ||
1104 | gfx_destroy_geometry(render_backend, &geometries[i]); | ||
1105 | } | ||
1106 | free(geometries); | ||
1107 | } | ||
1108 | if (meshes) { | ||
1109 | for (cgltf_size i = 0; i < num_meshes; ++i) { | ||
1110 | gfx_destroy_mesh(&meshes[i]); | ||
1111 | } | ||
1112 | free(meshes); | ||
1113 | } | ||
1114 | if (scene_objects) { | ||
1115 | for (cgltf_size i = 0; i < num_scene_objects; ++i) { | ||
1116 | gfx_destroy_object(&scene_objects[i]); | ||
1117 | } | ||
1118 | free(scene_objects); | ||
1119 | } | ||
1120 | if (scene_cameras) { | ||
1121 | for (cgltf_size i = 0; i < num_scene_cameras; ++i) { | ||
1122 | gfx_destroy_camera(&scene_cameras[i]); | ||
1123 | } | ||
1124 | free(scene_cameras); | ||
1125 | } | ||
1126 | if (scene_nodes) { | ||
1127 | for (cgltf_size i = 0; i < num_scene_nodes; ++i) { | ||
1128 | gfx_destroy_node(&scene_nodes[i]); | ||
1129 | } | ||
1130 | free(scene_nodes); | ||
1131 | } | ||
1132 | if (load_texture_cmds) { | ||
1133 | free(load_texture_cmds); | ||
1134 | } | ||
1135 | if (mesh_permutations) { | ||
1136 | free(mesh_permutations); | ||
1137 | } | ||
1138 | return false; | ||
1139 | } | ||
1140 | |||
1141 | bool gfx_load_scene( | ||
1142 | Gfx* gfx, SceneNode* root_node, ShaderProgram* shader, | ||
1143 | const LoadSceneCmd* cmd) { | ||
1144 | assert(gfx); | ||
1145 | assert(root_node); | ||
1146 | assert(shader); | ||
1147 | assert(cmd); | ||
1148 | |||
1149 | bool success = false; | ||
1150 | |||
1151 | cgltf_options options = {0}; | ||
1152 | cgltf_data* data = NULL; | ||
1153 | cgltfTangentBuffer* tangent_buffers = 0; | ||
1154 | |||
1155 | cgltf_result result; | ||
1156 | switch (cmd->origin) { | ||
1157 | case SceneFromFile: | ||
1158 | result = cgltf_parse_file(&options, cmd->filepath, &data); | ||
1159 | break; | ||
1160 | case SceneFromMemory: | ||
1161 | result = cgltf_parse(&options, cmd->data, cmd->size_bytes, &data); | ||
1162 | break; | ||
1163 | } | ||
1164 | if (result != cgltf_result_success) { | ||
1165 | goto cleanup; | ||
1166 | } | ||
1167 | |||
1168 | if (cmd->origin == SceneFromFile) { | ||
1169 | // Must call cgltf_load_buffers() to load buffer data. | ||
1170 | result = cgltf_load_buffers(&options, data, cmd->filepath); | ||
1171 | if (result != cgltf_result_success) { | ||
1172 | goto cleanup; | ||
1173 | } | ||
1174 | } | ||
1175 | |||
1176 | // Compute tangents for normal-mapped models that are missing them. | ||
1177 | cgltf_size num_tangent_buffers = 0; | ||
1178 | cgltf_compute_tangents( | ||
1179 | &options, data, &tangent_buffers, &num_tangent_buffers); | ||
1180 | |||
1181 | success = load_scene( | ||
1182 | data, gfx, root_node, cmd->filepath, shader, tangent_buffers, | ||
1183 | num_tangent_buffers); | ||
1184 | |||
1185 | cleanup: | ||
1186 | if (data) { | ||
1187 | cgltf_free(data); | ||
1188 | } | ||
1189 | if (tangent_buffers) { | ||
1190 | free(tangent_buffers); | ||
1191 | } | ||
1192 | return success; | ||
1193 | } | ||
diff --git a/gfx/src/util/shader.c b/gfx/src/util/shader.c new file mode 100644 index 0000000..a07c66e --- /dev/null +++ b/gfx/src/util/shader.c | |||
@@ -0,0 +1,115 @@ | |||
1 | #include <gfx/util/shader.h> | ||
2 | |||
3 | #include <gfx/render_backend.h> | ||
4 | #include <shaders/brdf_integration_map.frag.h> | ||
5 | #include <shaders/cook_torrance.frag.h> | ||
6 | #include <shaders/cook_torrance.vert.h> | ||
7 | #include <shaders/cubemap_filtering.vert.h> | ||
8 | #include <shaders/debug3d.frag.h> | ||
9 | #include <shaders/debug3d.vert.h> | ||
10 | #include <shaders/irradiance_map.frag.h> | ||
11 | #include <shaders/prefiltered_environment_map.frag.h> | ||
12 | #include <shaders/quad.vert.h> | ||
13 | #include <shaders/skyquad.frag.h> | ||
14 | #include <shaders/skyquad.vert.h> | ||
15 | #include <shaders/view_normal_mapped_normals.frag.h> | ||
16 | #include <shaders/view_normal_mapped_normals.vert.h> | ||
17 | #include <shaders/view_normals.frag.h> | ||
18 | #include <shaders/view_normals.vert.h> | ||
19 | #include <shaders/view_tangents.frag.h> | ||
20 | #include <shaders/view_tangents.vert.h> | ||
21 | #include <shaders/view_texture.frag.h> | ||
22 | #include <shaders/view_texture.vert.h> | ||
23 | |||
24 | #include <assert.h> | ||
25 | |||
26 | static ShaderProgram* make_shader_program(RenderBackend* render_backend, | ||
27 | const char* vert_source, | ||
28 | const char* frag_source) { | ||
29 | assert(render_backend); | ||
30 | assert(vert_source); | ||
31 | assert(frag_source); | ||
32 | |||
33 | Shader* vert = 0; | ||
34 | Shader* frag = 0; | ||
35 | |||
36 | ShaderDesc vertex_shader_desc = {.code = vert_source, .type = VertexShader}; | ||
37 | ShaderDesc fragment_shader_desc = {.code = frag_source, | ||
38 | .type = FragmentShader}; | ||
39 | vert = gfx_make_shader(render_backend, &vertex_shader_desc); | ||
40 | if (!vert) { | ||
41 | goto cleanup; | ||
42 | } | ||
43 | frag = gfx_make_shader(render_backend, &fragment_shader_desc); | ||
44 | if (!frag) { | ||
45 | goto cleanup; | ||
46 | } | ||
47 | ShaderProgramDesc shader_program_desc = {.vertex_shader = vert, | ||
48 | .fragment_shader = frag}; | ||
49 | ShaderProgram* prog = | ||
50 | gfx_make_shader_program(render_backend, &shader_program_desc); | ||
51 | if (!prog) { | ||
52 | goto cleanup; | ||
53 | } | ||
54 | return prog; | ||
55 | |||
56 | cleanup: | ||
57 | if (vert) { | ||
58 | gfx_destroy_shader(render_backend, &vert); | ||
59 | } | ||
60 | if (frag) { | ||
61 | gfx_destroy_shader(render_backend, &frag); | ||
62 | } | ||
63 | return 0; | ||
64 | } | ||
65 | |||
66 | ShaderProgram* | ||
67 | gfx_make_brdf_integration_map_shader(RenderBackend* render_backend) { | ||
68 | return make_shader_program(render_backend, quad_vert, | ||
69 | brdf_integration_map_frag); | ||
70 | } | ||
71 | |||
72 | ShaderProgram* gfx_make_cook_torrance_shader(RenderBackend* render_backend) { | ||
73 | return make_shader_program(render_backend, cook_torrance_vert, | ||
74 | cook_torrance_frag); | ||
75 | } | ||
76 | |||
77 | ShaderProgram* gfx_make_irradiance_map_shader(RenderBackend* render_backend) { | ||
78 | return make_shader_program(render_backend, cubemap_filtering_vert, | ||
79 | irradiance_map_frag); | ||
80 | } | ||
81 | |||
82 | ShaderProgram* | ||
83 | gfx_make_prefiltered_environment_map_shader(RenderBackend* render_backend) { | ||
84 | return make_shader_program(render_backend, cubemap_filtering_vert, | ||
85 | prefiltered_environment_map_frag); | ||
86 | } | ||
87 | |||
88 | ShaderProgram* gfx_make_debug3d_shader(RenderBackend* render_backend) { | ||
89 | return make_shader_program(render_backend, debug3d_vert, debug3d_frag); | ||
90 | } | ||
91 | |||
92 | ShaderProgram* gfx_make_skyquad_shader(RenderBackend* render_backend) { | ||
93 | return make_shader_program(render_backend, skyquad_vert, skyquad_frag); | ||
94 | } | ||
95 | |||
96 | ShaderProgram* | ||
97 | gfx_make_view_normal_mapped_normals_shader(RenderBackend* render_backend) { | ||
98 | return make_shader_program(render_backend, view_normal_mapped_normals_vert, | ||
99 | view_normal_mapped_normals_frag); | ||
100 | } | ||
101 | |||
102 | ShaderProgram* gfx_make_view_normals_shader(RenderBackend* render_backend) { | ||
103 | return make_shader_program(render_backend, view_normals_vert, | ||
104 | view_normals_frag); | ||
105 | } | ||
106 | |||
107 | ShaderProgram* gfx_make_view_tangents_shader(RenderBackend* render_backend) { | ||
108 | return make_shader_program(render_backend, view_tangents_vert, | ||
109 | view_tangents_frag); | ||
110 | } | ||
111 | |||
112 | ShaderProgram* gfx_make_view_texture_shader(RenderBackend* render_backend) { | ||
113 | return make_shader_program(render_backend, view_texture_vert, | ||
114 | view_texture_frag); | ||
115 | } | ||
diff --git a/gfx/src/util/skyquad.c b/gfx/src/util/skyquad.c new file mode 100644 index 0000000..51c250b --- /dev/null +++ b/gfx/src/util/skyquad.c | |||
@@ -0,0 +1,85 @@ | |||
1 | #include <gfx/util/skyquad.h> | ||
2 | |||
3 | #include <gfx/gfx.h> | ||
4 | #include <gfx/render_backend.h> | ||
5 | #include <gfx/scene/material.h> | ||
6 | #include <gfx/scene/mesh.h> | ||
7 | #include <gfx/scene/object.h> | ||
8 | #include <gfx/scene/scene.h> | ||
9 | #include <gfx/util/geometry.h> | ||
10 | #include <gfx/util/shader.h> | ||
11 | |||
12 | #include <math/vec4.h> | ||
13 | |||
14 | #include <assert.h> | ||
15 | |||
16 | SceneObject* gfx_make_skyquad(Gfx* gfx, Scene* scene, const Texture* texture) { | ||
17 | assert(gfx); | ||
18 | assert(scene); | ||
19 | assert(texture); | ||
20 | |||
21 | // TODO: pass RenderBackend directly? | ||
22 | RenderBackend* render_backend = gfx_get_render_backend(gfx); | ||
23 | assert(render_backend); | ||
24 | |||
25 | ShaderProgram* shader = 0; | ||
26 | Geometry* geometry = 0; | ||
27 | Material* material = 0; | ||
28 | Mesh* mesh = 0; | ||
29 | SceneObject* object = 0; | ||
30 | |||
31 | shader = gfx_make_skyquad_shader(render_backend); | ||
32 | if (!shader) { | ||
33 | goto cleanup; | ||
34 | } | ||
35 | |||
36 | geometry = gfx_make_quad_11(render_backend); | ||
37 | if (!geometry) { | ||
38 | goto cleanup; | ||
39 | } | ||
40 | |||
41 | MaterialDesc material_desc = (MaterialDesc){0}; | ||
42 | material_desc.shader = shader; | ||
43 | material_desc.uniforms[0] = (ShaderUniform){.type = UniformTexture, | ||
44 | .value.texture = texture, | ||
45 | .name = sstring_make("Skyquad")}; | ||
46 | material_desc.num_uniforms = 1; | ||
47 | material = gfx_make_material(&material_desc); | ||
48 | if (!material) { | ||
49 | goto cleanup; | ||
50 | } | ||
51 | |||
52 | MeshDesc mesh_desc = (MeshDesc){0}; | ||
53 | mesh_desc.geometry = geometry; | ||
54 | mesh_desc.material = material; | ||
55 | mesh = gfx_make_mesh(&mesh_desc); | ||
56 | if (!mesh) { | ||
57 | goto cleanup; | ||
58 | } | ||
59 | |||
60 | object = gfx_make_object(); | ||
61 | if (!object) { | ||
62 | goto cleanup; | ||
63 | } | ||
64 | gfx_add_object_mesh(object, mesh); | ||
65 | |||
66 | return object; | ||
67 | |||
68 | cleanup: | ||
69 | if (shader) { | ||
70 | gfx_destroy_shader_program(render_backend, &shader); | ||
71 | } | ||
72 | if (geometry) { | ||
73 | gfx_destroy_geometry(render_backend, &geometry); | ||
74 | } | ||
75 | if (material) { | ||
76 | gfx_destroy_material(&material); | ||
77 | } | ||
78 | if (mesh) { | ||
79 | gfx_destroy_mesh(&mesh); | ||
80 | } | ||
81 | if (object) { | ||
82 | gfx_destroy_object(&object); | ||
83 | } | ||
84 | return false; | ||
85 | } | ||
diff --git a/gfx/src/util/texture.c b/gfx/src/util/texture.c new file mode 100644 index 0000000..dae5bd2 --- /dev/null +++ b/gfx/src/util/texture.c | |||
@@ -0,0 +1,136 @@ | |||
1 | #include <gfx/util/texture.h> | ||
2 | |||
3 | #include <gfx/error.h> | ||
4 | #include <gfx/render_backend.h> | ||
5 | |||
6 | #define STB_IMAGE_IMPLEMENTATION | ||
7 | #include <stb_image.h> | ||
8 | |||
9 | Texture* gfx_load_texture(RenderBackend* render_backend, | ||
10 | const LoadTextureCmd* cmd) { | ||
11 | assert(render_backend); | ||
12 | assert(cmd); | ||
13 | assert(cmd->origin == TextureFromFile || cmd->origin == TextureFromMemory); | ||
14 | assert(cmd->type == LoadTexture || cmd->type == LoadCubemap); | ||
15 | |||
16 | int width, height, components, old_components; | ||
17 | unsigned char* pixels[6] = {0}; | ||
18 | |||
19 | switch (cmd->origin) { | ||
20 | case TextureFromFile: | ||
21 | switch (cmd->type) { | ||
22 | case LoadTexture: { | ||
23 | const char* filepath = mstring_cstring(&cmd->data.texture.filepath); | ||
24 | pixels[0] = stbi_load(filepath, &width, &height, &components, 0); | ||
25 | if (!pixels[0]) { | ||
26 | gfx_set_error("Failed to load texture file: %s", filepath); | ||
27 | } | ||
28 | break; | ||
29 | } | ||
30 | case LoadCubemap: | ||
31 | for (int i = 0; i < 6; ++i) { | ||
32 | const char* filepath = | ||
33 | mstring_cstring(&cmd->data.cubemap.filepaths.filepath_pos_x + i); | ||
34 | stbi_uc* image_pixels = | ||
35 | stbi_load(filepath, &width, &height, &components, 0); | ||
36 | if (!image_pixels) { | ||
37 | gfx_set_error("Failed to load texture file: %s", filepath); | ||
38 | break; | ||
39 | } | ||
40 | if (i > 0 && components != old_components) { | ||
41 | gfx_set_error( | ||
42 | "All textures in a cubemap must have the same number of " | ||
43 | "components"); | ||
44 | break; | ||
45 | } | ||
46 | pixels[i] = image_pixels; | ||
47 | old_components = components; | ||
48 | } | ||
49 | break; | ||
50 | } | ||
51 | break; | ||
52 | case TextureFromMemory: | ||
53 | // TODO: Load textures from memory. | ||
54 | gfx_set_error("Loading textures from memory is not yet implemented"); | ||
55 | return 0; | ||
56 | } | ||
57 | |||
58 | // Error out if we failed to load a texture. | ||
59 | if (!pixels[0] || | ||
60 | (cmd->type == LoadCubemap && | ||
61 | (!pixels[1] || !pixels[2] || !pixels[3] || !pixels[4] || !pixels[5]))) { | ||
62 | for (int i = 0; i < 6; ++i) { | ||
63 | if (pixels[i]) { | ||
64 | stbi_image_free(pixels[i]); | ||
65 | } | ||
66 | } | ||
67 | return 0; | ||
68 | } | ||
69 | |||
70 | TextureDesc desc = (TextureDesc){0}; | ||
71 | desc.width = width; | ||
72 | desc.height = height; | ||
73 | |||
74 | switch (cmd->type) { | ||
75 | case LoadTexture: | ||
76 | desc.dimension = Texture2D; | ||
77 | break; | ||
78 | case LoadCubemap: | ||
79 | desc.dimension = TextureCubeMap; | ||
80 | break; | ||
81 | } | ||
82 | |||
83 | switch (components) { | ||
84 | case 3: | ||
85 | switch (cmd->colour_space) { | ||
86 | case LinearColourSpace: | ||
87 | desc.format = TextureRGB8; | ||
88 | break; | ||
89 | case sRGB: | ||
90 | desc.format = TextureSRGB8; | ||
91 | break; | ||
92 | default: | ||
93 | gfx_set_error("Unsupported texture colour space: %d", cmd->colour_space); | ||
94 | return 0; | ||
95 | } | ||
96 | break; | ||
97 | case 4: | ||
98 | switch (cmd->colour_space) { | ||
99 | case LinearColourSpace: | ||
100 | desc.format = TextureRGBA8; | ||
101 | break; | ||
102 | case sRGB: | ||
103 | desc.format = TextureSRGBA8; | ||
104 | break; | ||
105 | default: | ||
106 | gfx_set_error("Unsupported texture colour space: %d", cmd->colour_space); | ||
107 | return 0; | ||
108 | } | ||
109 | break; | ||
110 | default: | ||
111 | gfx_set_error("Unsupported number of texture components: %d", components); | ||
112 | return 0; | ||
113 | } | ||
114 | |||
115 | desc.filtering = cmd->filtering; | ||
116 | desc.mipmaps = cmd->mipmaps; | ||
117 | |||
118 | switch (cmd->type) { | ||
119 | case LoadTexture: | ||
120 | desc.pixels = pixels[0]; | ||
121 | break; | ||
122 | case LoadCubemap: | ||
123 | for (int i = 0; i < 6; ++i) { | ||
124 | *(&desc.cubemap.pixels_pos_x + i) = pixels[i]; | ||
125 | } | ||
126 | break; | ||
127 | } | ||
128 | |||
129 | Texture* texture = gfx_make_texture(render_backend, &desc); | ||
130 | for (int i = 0; i < 6; ++i) { | ||
131 | if (pixels[i]) { | ||
132 | stbi_image_free(pixels[i]); | ||
133 | } | ||
134 | } | ||
135 | return texture; | ||
136 | } | ||
diff --git a/gltfview/CMakeLists.txt b/gltfview/CMakeLists.txt new file mode 100644 index 0000000..19ea0e5 --- /dev/null +++ b/gltfview/CMakeLists.txt | |||
@@ -0,0 +1,17 @@ | |||
1 | cmake_minimum_required(VERSION 3.0) | ||
2 | |||
3 | project(gltfview) | ||
4 | |||
5 | add_executable(gltfview | ||
6 | src/game.c | ||
7 | src/main.c) | ||
8 | |||
9 | target_include_directories(gltfview PRIVATE | ||
10 | src/) | ||
11 | |||
12 | target_link_libraries(gltfview PRIVATE | ||
13 | gfx | ||
14 | gfx-app | ||
15 | log | ||
16 | math | ||
17 | mempool) | ||
diff --git a/gltfview/src/game.c b/gltfview/src/game.c new file mode 100644 index 0000000..d7352d4 --- /dev/null +++ b/gltfview/src/game.c | |||
@@ -0,0 +1,295 @@ | |||
1 | #include "game.h" | ||
2 | |||
3 | #include <gfx/error.h> | ||
4 | #include <gfx/render_backend.h> | ||
5 | #include <gfx/scene/light.h> | ||
6 | #include <gfx/scene/material.h> | ||
7 | #include <gfx/scene/mesh.h> | ||
8 | #include <gfx/scene/node.h> | ||
9 | #include <gfx/scene/object.h> | ||
10 | #include <gfx/util/geometry.h> | ||
11 | #include <gfx/util/ibl.h> | ||
12 | #include <gfx/util/scene.h> | ||
13 | #include <gfx/util/shader.h> | ||
14 | #include <gfx/util/skyquad.h> | ||
15 | #include <gfx/util/texture.h> | ||
16 | |||
17 | #include <log/log.h> | ||
18 | #include <math/camera.h> | ||
19 | |||
20 | #include <assert.h> | ||
21 | #include <stdbool.h> | ||
22 | #include <stdio.h> | ||
23 | #include <string.h> | ||
24 | #include <unistd.h> // usleep; TODO Remove. | ||
25 | |||
26 | // Paths to various scene files. | ||
27 | static const char* BOX = "/assets/models/box.gltf"; | ||
28 | static const char* SUZANNE = "/assets/models/suzanne.gltf"; | ||
29 | static const char* SPONZA = | ||
30 | "/assets/glTF-Sample-Models/2.0/Sponza/glTF/Sponza.gltf"; | ||
31 | static const char* FLIGHT_HELMET = | ||
32 | "/assets/glTF-Sample-Models/2.0/FlightHelmet/glTF/FlightHelmet.gltf"; | ||
33 | static const char* DAMAGED_HELMET = | ||
34 | "/assets/glTF-Sample-Models/2.0/DamagedHelmet/glTF/DamagedHelmet.gltf"; | ||
35 | |||
36 | #define DEFAULT_SCENE_FILE DAMAGED_HELMET | ||
37 | |||
38 | static const char* CLOUDS1_TEXTURE = "/assets/skybox/clouds1/clouds1_west.bmp"; | ||
39 | |||
40 | static ShaderProgram* load_shader(RenderBackend* render_backend, | ||
41 | const char* view_mode) { | ||
42 | ShaderProgram* shader = 0; | ||
43 | if (strcmp(view_mode, "debug") == 0) { | ||
44 | shader = gfx_make_debug3d_shader(render_backend); | ||
45 | } else if (strcmp(view_mode, "normals") == 0) { | ||
46 | shader = gfx_make_view_normals_shader(render_backend); | ||
47 | } else if (strcmp(view_mode, "normal_mapped_normals") == 0) { | ||
48 | shader = gfx_make_view_normal_mapped_normals_shader(render_backend); | ||
49 | } else if (strcmp(view_mode, "tangents") == 0) { | ||
50 | shader = gfx_make_view_tangents_shader(render_backend); | ||
51 | } else { | ||
52 | shader = gfx_make_cook_torrance_shader(render_backend); | ||
53 | } | ||
54 | return shader; | ||
55 | } | ||
56 | |||
57 | /// Loads the skyquad texture. | ||
58 | static Texture* load_environment_map(RenderBackend* render_backend) { | ||
59 | return gfx_load_texture( | ||
60 | render_backend, | ||
61 | &(LoadTextureCmd){ | ||
62 | .origin = TextureFromFile, | ||
63 | .type = LoadCubemap, | ||
64 | .colour_space = sRGB, | ||
65 | .filtering = NearestFiltering, | ||
66 | .mipmaps = false, | ||
67 | .data.cubemap.filepaths = { | ||
68 | mstring_make("/assets/skybox/clouds1/clouds1_east.bmp"), | ||
69 | mstring_make("/assets/skybox/clouds1/clouds1_west.bmp"), | ||
70 | mstring_make("/assets/skybox/clouds1/clouds1_up.bmp"), | ||
71 | mstring_make("/assets/skybox/clouds1/clouds1_down.bmp"), | ||
72 | mstring_make("/assets/skybox/clouds1/clouds1_north.bmp"), | ||
73 | mstring_make("/assets/skybox/clouds1/clouds1_south.bmp")}}); | ||
74 | } | ||
75 | |||
76 | /// Creates an object to render the skyquad in the background. | ||
77 | static SceneNode* make_skyquad_object_node(Game* game, | ||
78 | const Texture* environment_map) { | ||
79 | assert(game); | ||
80 | |||
81 | SceneObject* skyquad_object = | ||
82 | gfx_make_skyquad(game->gfx, game->scene, environment_map); | ||
83 | if (!skyquad_object) { | ||
84 | return 0; | ||
85 | } | ||
86 | SceneNode* skyquad_node = gfx_make_object_node(skyquad_object); | ||
87 | if (!skyquad_node) { | ||
88 | return 0; | ||
89 | } | ||
90 | gfx_set_node_parent(skyquad_node, gfx_get_scene_root(game->scene)); | ||
91 | return skyquad_node; | ||
92 | } | ||
93 | |||
94 | /// Creates an environment light. | ||
95 | static SceneNode* make_environment_light(Game* game, | ||
96 | const Texture* environment_light) { | ||
97 | assert(game); | ||
98 | |||
99 | Light* light = gfx_make_light(&(LightDesc){ | ||
100 | .type = EnvironmentLightType, | ||
101 | .light = (EnvironmentLightDesc){.environment_map = environment_light}}); | ||
102 | if (!light) { | ||
103 | return 0; | ||
104 | } | ||
105 | SceneNode* light_node = gfx_make_light_node(light); | ||
106 | if (!light_node) { | ||
107 | return 0; | ||
108 | } | ||
109 | gfx_set_node_parent(light_node, gfx_get_scene_root(game->scene)); | ||
110 | return light_node; | ||
111 | } | ||
112 | |||
113 | /// Loads the skyquad and returns the SceneNode with the environment light. | ||
114 | static bool load_skyquad(Game* game, SceneNode** node) { | ||
115 | assert(game); | ||
116 | assert(node); | ||
117 | |||
118 | Texture* environment_map = load_environment_map(game->render_backend); | ||
119 | if (!environment_map) { | ||
120 | return false; | ||
121 | } | ||
122 | |||
123 | make_skyquad_object_node(game, environment_map); | ||
124 | *node = make_environment_light(game, environment_map); | ||
125 | |||
126 | return true; | ||
127 | } | ||
128 | |||
129 | /// Loads the 3D scene. | ||
130 | static bool load_scene(Game* game, const char* scene_filepath, | ||
131 | const char* view_mode) { | ||
132 | assert(game); | ||
133 | |||
134 | game->camera = gfx_make_camera(); | ||
135 | if (!game->camera) { | ||
136 | return false; | ||
137 | } | ||
138 | Camera* camera = gfx_get_camera_camera(game->camera); | ||
139 | // Sponza. | ||
140 | // spatial3_set_position(&camera->spatial, vec3_make(0, 100, 50)); | ||
141 | // Damaged helmet. | ||
142 | spatial3_set_position(&camera->spatial, vec3_make(0, 0, 2)); | ||
143 | |||
144 | SceneNode* sky_node = 0; | ||
145 | if (!load_skyquad(game, &sky_node) || !sky_node) { | ||
146 | return false; | ||
147 | } | ||
148 | |||
149 | ShaderProgram* shader = load_shader(game->render_backend, view_mode); | ||
150 | if (!shader) { | ||
151 | return false; | ||
152 | } | ||
153 | |||
154 | if (!gfx_load_scene(game->gfx, sky_node, shader, | ||
155 | &(LoadSceneCmd){.origin = SceneFromFile, | ||
156 | .filepath = scene_filepath})) { | ||
157 | return false; | ||
158 | } | ||
159 | |||
160 | return true; | ||
161 | } | ||
162 | |||
163 | /// Loads a scene for debugging textures. | ||
164 | static bool load_texture_debugger_scene(Game* game) { | ||
165 | assert(game); | ||
166 | |||
167 | Texture* texture = | ||
168 | gfx_load_texture(game->render_backend, | ||
169 | &(LoadTextureCmd){.origin = TextureFromFile, | ||
170 | .type = LoadTexture, | ||
171 | .filtering = LinearFiltering, | ||
172 | .mipmaps = false, | ||
173 | .data.texture.filepath = | ||
174 | mstring_make(CLOUDS1_TEXTURE)}); | ||
175 | |||
176 | game->camera = gfx_make_camera(); | ||
177 | if (!game->camera) { | ||
178 | return false; | ||
179 | } | ||
180 | Camera* camera = gfx_get_camera_camera(game->camera); | ||
181 | spatial3_set_position(&camera->spatial, vec3_make(0, 0, 1)); | ||
182 | |||
183 | ShaderProgram* shader = gfx_make_view_texture_shader(game->render_backend); | ||
184 | if (!shader) { | ||
185 | return false; | ||
186 | } | ||
187 | |||
188 | Geometry* geometry = gfx_make_quad_11(game->render_backend); | ||
189 | if (!geometry) { | ||
190 | return false; | ||
191 | } | ||
192 | |||
193 | MaterialDesc material_desc = (MaterialDesc){0}; | ||
194 | material_desc.shader = shader; | ||
195 | material_desc.uniforms[0] = (ShaderUniform){.type = UniformTexture, | ||
196 | .value.texture = texture, | ||
197 | .name = sstring_make("Texture")}; | ||
198 | material_desc.num_uniforms = 1; | ||
199 | Material* material = gfx_make_material(&material_desc); | ||
200 | if (!material) { | ||
201 | return false; | ||
202 | } | ||
203 | |||
204 | MeshDesc mesh_desc = (MeshDesc){0}; | ||
205 | mesh_desc.geometry = geometry; | ||
206 | mesh_desc.material = material; | ||
207 | Mesh* mesh = gfx_make_mesh(&mesh_desc); | ||
208 | if (!mesh) { | ||
209 | return false; | ||
210 | } | ||
211 | |||
212 | SceneObject* object = gfx_make_object(); | ||
213 | if (!object) { | ||
214 | return false; | ||
215 | } | ||
216 | gfx_add_object_mesh(object, mesh); | ||
217 | |||
218 | SceneNode* node = gfx_make_object_node(object); | ||
219 | SceneNode* root = gfx_get_scene_root(game->scene); | ||
220 | gfx_set_node_parent(node, root); | ||
221 | |||
222 | return true; | ||
223 | } | ||
224 | |||
225 | bool game_new(Game* game, int argc, const char** argv) { | ||
226 | // TODO: getopt() to implement proper argument parsing. | ||
227 | const char* view_mode = argc > 1 ? argv[1] : ""; | ||
228 | const char* scene_filepath = argc > 2 ? argv[2] : DEFAULT_SCENE_FILE; | ||
229 | |||
230 | game->gfx = gfx_init(); | ||
231 | if (!game->gfx) { | ||
232 | goto cleanup; | ||
233 | } | ||
234 | |||
235 | game->render_backend = gfx_get_render_backend(game->gfx); | ||
236 | game->renderer = gfx_get_renderer(game->gfx); | ||
237 | |||
238 | game->scene = gfx_make_scene(game->gfx); | ||
239 | if (!game->scene) { | ||
240 | goto cleanup; | ||
241 | } | ||
242 | |||
243 | if (!load_scene(game, scene_filepath, view_mode)) { | ||
244 | goto cleanup; | ||
245 | } | ||
246 | /*if (!load_texture_debugger_scene(game)) { | ||
247 | goto cleanup; | ||
248 | }*/ | ||
249 | |||
250 | return true; | ||
251 | |||
252 | cleanup: | ||
253 | LOGE("Gfx error: %s", gfx_get_error()); | ||
254 | if (game->scene) { | ||
255 | gfx_destroy_scene(game->gfx, &game->scene); | ||
256 | } | ||
257 | if (game->gfx) { | ||
258 | gfx_destroy(&game->gfx); | ||
259 | } | ||
260 | return false; | ||
261 | } | ||
262 | |||
263 | void game_end(Game* game) { gfx_destroy(&game->gfx); } | ||
264 | |||
265 | void game_update(Game* game, double t, double dt) { | ||
266 | game->elapsed += dt; | ||
267 | while (game->elapsed >= 1.0) { | ||
268 | // LOGD("Tick"); | ||
269 | usleep(1000); | ||
270 | game->elapsed -= 1.0; | ||
271 | } | ||
272 | Camera* camera = gfx_get_camera_camera(game->camera); | ||
273 | spatial3_orbit(&camera->spatial, vec3_make(0, 0, 0), | ||
274 | /*radius=*/2, | ||
275 | /*azimuth=*/t * 0.5, /*zenith=*/0); | ||
276 | spatial3_lookat(&camera->spatial, vec3_make(0, 0, 0)); | ||
277 | } | ||
278 | |||
279 | void game_render(const Game* game) { | ||
280 | gfx_render_scene(game->renderer, game->render_backend, game->scene, | ||
281 | game->camera); | ||
282 | } | ||
283 | |||
284 | void game_set_viewport(Game* game, int width, int height) { | ||
285 | gfx_set_viewport(game->render_backend, width, height); | ||
286 | |||
287 | const R fovy = 90 * TO_RAD; | ||
288 | const R aspect = (R)width / (R)height; | ||
289 | const R near = 0.1; | ||
290 | const R far = 1000; | ||
291 | const mat4 projection = mat4_perspective(fovy, aspect, near, far); | ||
292 | |||
293 | Camera* camera = gfx_get_camera_camera(game->camera); | ||
294 | camera->projection = projection; | ||
295 | } | ||
diff --git a/gltfview/src/game.h b/gltfview/src/game.h new file mode 100644 index 0000000..92c0885 --- /dev/null +++ b/gltfview/src/game.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <gfx/gfx.h> | ||
4 | #include <gfx/render_backend.h> | ||
5 | #include <gfx/renderer.h> | ||
6 | #include <gfx/scene/camera.h> | ||
7 | #include <gfx/scene/scene.h> | ||
8 | |||
9 | #include <stdbool.h> | ||
10 | |||
11 | /// The delta time the game should be updated with. | ||
12 | static const double game_dt = 1.0 / 60.0; | ||
13 | |||
14 | /// Game state. | ||
15 | typedef struct { | ||
16 | Gfx* gfx; | ||
17 | RenderBackend* render_backend; | ||
18 | Renderer* renderer; | ||
19 | Scene* scene; | ||
20 | SceneCamera* camera; | ||
21 | double elapsed; | ||
22 | } Game; | ||
23 | |||
24 | bool game_new(Game*, int argc, const char** argv); | ||
25 | |||
26 | void game_end(Game*); | ||
27 | |||
28 | void game_update(Game*, double t, double dt); | ||
29 | |||
30 | void game_render(const Game*); | ||
31 | |||
32 | void game_set_viewport(Game*, int width, int height); | ||
diff --git a/gltfview/src/main.c b/gltfview/src/main.c new file mode 100644 index 0000000..f7c372c --- /dev/null +++ b/gltfview/src/main.c | |||
@@ -0,0 +1,65 @@ | |||
1 | #include "game.h" | ||
2 | |||
3 | #include <gfx/gfx_app.h> | ||
4 | #include <log/log.h> | ||
5 | |||
6 | #include <stdlib.h> | ||
7 | |||
8 | static bool init(const GfxAppDesc* desc, void** app_state) { | ||
9 | Game* game = calloc(1, sizeof(Game)); | ||
10 | if (!game) { | ||
11 | LOGE("Failed to allocate game state"); | ||
12 | return false; | ||
13 | } | ||
14 | if (!game_new(game, desc->argc, desc->argv)) { | ||
15 | LOGE("Failed to initialize game\n"); | ||
16 | return false; | ||
17 | } | ||
18 | *app_state = game; | ||
19 | return true; | ||
20 | } | ||
21 | |||
22 | static void shutdown(void* app_state) { | ||
23 | assert(app_state); | ||
24 | Game* game = (Game*)(app_state); | ||
25 | game_end(game); | ||
26 | } | ||
27 | |||
28 | static void update(void* app_state, double t, double dt) { | ||
29 | assert(app_state); | ||
30 | Game* game = (Game*)(app_state); | ||
31 | game_update(game, t, dt); | ||
32 | } | ||
33 | |||
34 | static void render(void* app_state) { | ||
35 | assert(app_state); | ||
36 | Game* game = (Game*)(app_state); | ||
37 | game_render(game); | ||
38 | } | ||
39 | |||
40 | static void resize(void* app_state, int width, int height) { | ||
41 | assert(app_state); | ||
42 | Game* game = (Game*)(app_state); | ||
43 | game_set_viewport(game, width, height); | ||
44 | } | ||
45 | |||
46 | int main(int argc, const char** argv) { | ||
47 | const int initial_width = 1350; | ||
48 | const int initial_height = 900; | ||
49 | const int max_fps = 60; | ||
50 | |||
51 | gfx_app_run(&(GfxAppDesc){.argc = argc, | ||
52 | .argv = argv, | ||
53 | .width = initial_width, | ||
54 | .height = initial_height, | ||
55 | .max_fps = max_fps, | ||
56 | .update_delta_time = | ||
57 | max_fps > 0 ? 1.0 / (double)max_fps : 0.0}, | ||
58 | &(GfxAppCallbacks){.init = init, | ||
59 | .update = update, | ||
60 | .render = render, | ||
61 | .resize = resize, | ||
62 | .shutdown = shutdown}); | ||
63 | |||
64 | return 0; | ||
65 | } | ||