Update imgui to latest.

This commit is contained in:
Mr_Goldberg 2022-08-05 01:34:29 -04:00
parent ba877b6e78
commit df94c38b0f
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
58 changed files with 17087 additions and 5583 deletions

View 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);
}