mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-31 02:41:23 +12:00
Initial commit (I really need to remove Boost)
This commit is contained in:
commit
b5371dc66c
3226 changed files with 668081 additions and 0 deletions
third_party/imgui/backends/vulkan
14
third_party/imgui/backends/vulkan/glsl_shader.frag
vendored
Normal file
14
third_party/imgui/backends/vulkan/glsl_shader.frag
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
#version 450 core
|
||||
layout(location = 0) out vec4 fColor;
|
||||
|
||||
layout(set=0, binding=0) uniform sampler2D sTexture;
|
||||
|
||||
layout(location = 0) in struct {
|
||||
vec4 Color;
|
||||
vec2 UV;
|
||||
} In;
|
||||
|
||||
void main()
|
||||
{
|
||||
fColor = In.Color * texture(sTexture, In.UV.st);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue