Skip to content

Commit 19d3b7f

Browse files
committed
init
0 parents  commit 19d3b7f

File tree

131 files changed

+86431
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+86431
-0
lines changed

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Checks: '-modernize-use-auto'

.github/workflows/cmake_linux.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CMake Linux
2+
3+
on:
4+
push:
5+
branches: [ main, dev ]
6+
pull_request:
7+
branches: [ main, dev ]
8+
9+
env:
10+
BUILD_TYPE: Release
11+
12+
jobs:
13+
build_linux:
14+
name: build_linux
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
with:
20+
submodules: true
21+
22+
- name: Install OpenGL Library
23+
run: sudo apt-get install -y libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev libglfw3 libglfw3-dev
24+
25+
- name: Configure CMake
26+
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
27+
28+
- name: Build
29+
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
30+
31+
- name: Test
32+
run: cd ${{github.workspace}}/build && ctest

.github/workflows/cmake_macos.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CMake MacOS
2+
3+
on:
4+
push:
5+
branches: [ main, dev ]
6+
pull_request:
7+
branches: [ main, dev ]
8+
9+
env:
10+
BUILD_TYPE: Release
11+
12+
jobs:
13+
build_macOS:
14+
name: build_macOS
15+
runs-on: macos-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
with:
20+
submodules: true
21+
22+
- name: Configure CMake
23+
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
24+
25+
- name: Build
26+
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
27+
28+
- name: Test
29+
run: cd ${{github.workspace}}/build && ctest

.github/workflows/cmake_windows.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CMake Windows
2+
3+
on:
4+
push:
5+
branches: [ main, dev ]
6+
pull_request:
7+
branches: [ main, dev ]
8+
9+
env:
10+
BUILD_TYPE: Release
11+
12+
jobs:
13+
build_windows:
14+
name: build_windows
15+
runs-on: windows-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
with:
20+
submodules: true
21+
22+
- name: Configure CMake
23+
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
24+
25+
- name: Build
26+
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
27+
28+
- name: Test
29+
run: cd ${{github.workspace}}/build && ctest

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
.vscode
3+
cmake-build*/
4+
build/
5+
bin/spvm*

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "test/googletest"]
2+
path = test/googletest
3+
url = [email protected]:google/googletest.git
4+
[submodule "shadertoy/third_party/glslang"]
5+
path = shadertoy/third_party/glslang
6+
url = [email protected]:KhronosGroup/glslang.git

CMakeLists.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cmake_minimum_required(VERSION 3.3)
2+
project(spvm)
3+
4+
set(CMAKE_CXX_STANDARD 11)
5+
6+
add_subdirectory(src)
7+
add_subdirectory(shadertoy)
8+
9+
option(BUILD_TEST "Whether or not to build the tests" ON)
10+
if (${BUILD_TEST})
11+
message(STATUS "Building tests")
12+
enable_testing()
13+
add_subdirectory(test)
14+
endif ()

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 keith2018
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# SPVM
2+
Tiny [SPIR-V](https://registry.khronos.org/SPIR-V/) virtual machine (interpreter), can be used for shader debugging.
3+
4+
[![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE)
5+
[![CMake Linux](https://github.com/keith2018/spvm/actions/workflows/cmake_linux.yml/badge.svg)](https://github.com/keith2018/spvm/actions/workflows/cmake_linux.yml)
6+
[![CMake MacOS](https://github.com/keith2018/spvm/actions/workflows/cmake_macos.yml/badge.svg)](https://github.com/keith2018/spvm/actions/workflows/cmake_macos.yml)
7+
[![CMake Windows](https://github.com/keith2018/spvm/actions/workflows/cmake_windows.yml/badge.svg)](https://github.com/keith2018/spvm/actions/workflows/cmake_windows.yml)
8+
9+
![](images/awesomeface.png)
10+
11+
The project is still in progress ...
12+
13+
## Spvm-ShaderToy
14+
Spvm-ShaderToy implements [shader effects](https://www.shadertoy.com/) without GPU.
15+
16+
## Clone
17+
```bash
18+
git clone [email protected]:keith2018/spvm.git
19+
cd spvm
20+
git submodule update --init --recursive
21+
```
22+
23+
## Build
24+
```bash
25+
mkdir build
26+
cmake -B ./build -DCMAKE_BUILD_TYPE=Release
27+
cmake --build ./build --config Release
28+
```
29+
30+
## Test
31+
```bash
32+
cd build
33+
ctest
34+
```
35+
36+
## License
37+
This code is licensed under the MIT License (see [LICENSE](LICENSE)).

images/awesomeface.png

17.3 KB
Loading

shadertoy/CMakeLists.txt

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
cmake_minimum_required(VERSION 3.3)
2+
project(spvm_shadertoy)
3+
4+
set(CMAKE_CXX_STANDARD 11)
5+
set(THIRD_PARTY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/third_party")
6+
7+
include_directories(
8+
"${THIRD_PARTY_DIR}/glfw/include"
9+
"${THIRD_PARTY_DIR}/glad/include"
10+
"${THIRD_PARTY_DIR}/imgui"
11+
"${THIRD_PARTY_DIR}/stb/include"
12+
"${THIRD_PARTY_DIR}/glslang/include"
13+
"../src"
14+
)
15+
16+
set(SKIP_GLSLANG_INSTALL ON)
17+
set(ENABLE_GLSLANG_BINARIES OFF)
18+
set(ENABLE_CTEST OFF)
19+
set(BUILD_TESTING OFF)
20+
add_subdirectory("${THIRD_PARTY_DIR}/glslang")
21+
22+
# imgui src
23+
file(GLOB IMGUI_SRC
24+
${THIRD_PARTY_DIR}/imgui/imgui/*.cpp
25+
)
26+
27+
add_executable(${PROJECT_NAME}
28+
"${IMGUI_SRC}"
29+
"${THIRD_PARTY_DIR}/glad/src/glad.c"
30+
renderer.cpp
31+
compiler.cpp
32+
resourcelimits.cpp
33+
timer.cpp
34+
main.cpp
35+
)
36+
37+
set(LIBRARIES
38+
spvm_lib
39+
glslang
40+
SPIRV)
41+
42+
if (WIN32)
43+
if (MSVC)
44+
target_link_libraries(${PROJECT_NAME}
45+
${LIBRARIES}
46+
"${THIRD_PARTY_DIR}/glfw/lib-vc2022/glfw3.lib"
47+
"${THIRD_PARTY_DIR}/glfw/lib-vc2022/glfw3dll.lib"
48+
)
49+
else ()
50+
target_link_libraries(${PROJECT_NAME}
51+
${LIBRARIES}
52+
"${THIRD_PARTY_DIR}/glfw/lib-mingw-w64/libglfw3.a"
53+
"${THIRD_PARTY_DIR}/glfw/lib-mingw-w64/libglfw3dll.a"
54+
)
55+
endif ()
56+
endif ()
57+
58+
if (APPLE)
59+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -framework Cocoa -framework OpenGL -framework IOKit")
60+
add_compile_definitions(GL_SILENCE_DEPRECATION)
61+
target_link_libraries(${PROJECT_NAME}
62+
${LIBRARIES}
63+
"${THIRD_PARTY_DIR}/glfw/lib-macos-universal/libglfw3.a"
64+
)
65+
endif ()
66+
67+
if (UNIX AND NOT APPLE)
68+
find_package(OpenGL REQUIRED)
69+
target_link_libraries(${PROJECT_NAME}
70+
${LIBRARIES}
71+
glfw
72+
OpenGL::GL
73+
pthread
74+
${CMAKE_DL_LIBS}
75+
)
76+
endif ()
77+
78+
if (MSVC)
79+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++latest")
80+
else ()
81+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3")
82+
endif ()
83+
84+
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/../bin)
85+
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/../bin)
86+
87+
# copy assets
88+
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
89+
COMMAND ${CMAKE_COMMAND} -E remove_directory $<TARGET_FILE_DIR:${PROJECT_NAME}>/assets
90+
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/assets $<TARGET_FILE_DIR:${PROJECT_NAME}>/assets
91+
)
17.3 KB
Loading

shadertoy/assets/images/wood.png

328 KB
Loading

shadertoy/assets/shaders/basic.frag

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#version 450
2+
3+
layout(set = 0, binding = 0) uniform InputData
4+
{
5+
vec3 iResolution; // viewport resolution (in pixels)
6+
float iTime; // shader playback time (in seconds)
7+
float iTimeDelta; // render time (in seconds)
8+
int iFrame; // shader playback frame
9+
vec4 iMouse; // mouse pixel coords. xy: current (if MLB down), zw: click
10+
vec4 iDate; // (year, month, day, time in seconds)
11+
float iSampleRate; // sound sample rate (i.e., 44100)
12+
};
13+
14+
layout(set = 0, binding = 1) uniform sampler2D iChannel0;
15+
16+
layout (location = 0) in vec2 fragCoord;
17+
layout (location = 0) out vec4 fragColor;
18+
19+
void mainImage(out vec4 fragColor, in vec2 fragCoord)
20+
{
21+
fragColor = texture(iChannel0, fragCoord);
22+
}
23+
24+
void main()
25+
{
26+
mainImage(fragColor, fragCoord);
27+
}

shadertoy/compiler.cpp

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
/*
2+
* spvm-shadertoy
3+
* @author : [email protected]
4+
*
5+
*/
6+
7+
#include "compiler.h"
8+
#include "glslang/Include/glslang_c_interface.h"
9+
#include "glslang/Public/ShaderLang.h"
10+
#include "resourcelimits.h"
11+
#include "logger.h"
12+
13+
namespace SPVM {
14+
namespace ShaderToy {
15+
16+
static std::vector<uint32_t> compileShaderInternal(glslang_stage_t stage, const char *shaderSource) {
17+
const glslang_input_t input = {
18+
.language = GLSLANG_SOURCE_GLSL,
19+
.stage = stage,
20+
.client = GLSLANG_CLIENT_VULKAN,
21+
.client_version = GLSLANG_TARGET_VULKAN_1_2,
22+
.target_language = GLSLANG_TARGET_SPV,
23+
.target_language_version = GLSLANG_TARGET_SPV_1_5,
24+
.code = shaderSource,
25+
.default_version = 100,
26+
.default_profile = GLSLANG_NO_PROFILE,
27+
.force_default_version_and_profile = false,
28+
.forward_compatible = false,
29+
.messages = GLSLANG_MSG_DEFAULT_BIT,
30+
.resource = reinterpret_cast<const glslang_resource_t *>(&glslang::DefaultTBuiltInResource),
31+
};
32+
33+
glslang_shader_t *shader = glslang_shader_create(&input);
34+
35+
if (!glslang_shader_preprocess(shader, &input)) {
36+
LOGE("GLSL preprocessing failed:");
37+
LOGE("%s", glslang_shader_get_info_log(shader));
38+
LOGE("%s", glslang_shader_get_info_debug_log(shader));
39+
LOGE("%s", input.code);
40+
glslang_shader_delete(shader);
41+
return std::vector<uint32_t>();
42+
}
43+
44+
if (!glslang_shader_parse(shader, &input)) {
45+
LOGE("GLSL parsing failed:");
46+
LOGE("%s", glslang_shader_get_info_log(shader));
47+
LOGE("%s", glslang_shader_get_info_debug_log(shader));
48+
LOGE("%s", glslang_shader_get_preprocessed_code(shader));
49+
glslang_shader_delete(shader);
50+
return std::vector<uint32_t>();
51+
}
52+
53+
glslang_program_t *program = glslang_program_create();
54+
glslang_program_add_shader(program, shader);
55+
56+
if (!glslang_program_link(program, GLSLANG_MSG_SPV_RULES_BIT | GLSLANG_MSG_VULKAN_RULES_BIT)) {
57+
LOGE("GLSL linking failed:");
58+
LOGE("%s", glslang_program_get_info_log(program));
59+
LOGE("%s", glslang_program_get_info_debug_log(program));
60+
glslang_program_delete(program);
61+
glslang_shader_delete(shader);
62+
return std::vector<uint32_t>();
63+
}
64+
65+
glslang_program_SPIRV_generate(program, stage);
66+
67+
std::vector<uint32_t> outShaderModule(glslang_program_SPIRV_get_size(program));
68+
glslang_program_SPIRV_get(program, outShaderModule.data());
69+
70+
const char *spirv_messages = glslang_program_SPIRV_get_messages(program);
71+
if (spirv_messages) {
72+
LOGI("GLSLang: %s", spirv_messages);
73+
}
74+
75+
glslang_program_delete(program);
76+
glslang_shader_delete(shader);
77+
78+
return outShaderModule;
79+
}
80+
81+
std::vector<uint32_t> Compiler::compileShaderFragment(const char *shaderSource) {
82+
glslang::InitializeProcess();
83+
auto ret = compileShaderInternal(GLSLANG_STAGE_FRAGMENT, shaderSource);
84+
glslang::FinalizeProcess();
85+
return ret;
86+
}
87+
88+
}
89+
}

0 commit comments

Comments
 (0)