mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-21 21:05:50 +12:00
Add Vulkan Host-Shader compilation
Compiles Vulkan Host shaders into spirv binary files and embeds them into the application's virtual file-system.
This commit is contained in:
parent
f62f1bf9b2
commit
97b6b7f122
3 changed files with 51 additions and 1 deletions
7
src/host_shaders/vulkan_display.frag
Normal file
7
src/host_shaders/vulkan_display.frag
Normal file
|
@ -0,0 +1,7 @@
|
|||
#version 460 core
|
||||
layout(location = 0) in vec2 UV;
|
||||
layout(location = 0) out vec4 FragColor;
|
||||
|
||||
layout(binding = 0) uniform sampler2D u_texture;
|
||||
|
||||
void main() { FragColor = texture(u_texture, UV); }
|
Loading…
Add table
Add a link
Reference in a new issue