mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 12:14:54 +01:00
Update imgui to latest.
This commit is contained in:
parent
ba877b6e78
commit
df94c38b0f
58 changed files with 17087 additions and 5583 deletions
14
ImGui/backends/vulkan/glsl_shader.frag
Normal file
14
ImGui/backends/vulkan/glsl_shader.frag
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