mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
Add standalone testbed
This commit is contained in:
parent
5ddf473450
commit
b8ce2d4001
21 changed files with 948 additions and 2 deletions
13
imgui/StandaloneImGuiTestbed/Shaders/GLSL/imgui-frag.glsl
Normal file
13
imgui/StandaloneImGuiTestbed/Shaders/GLSL/imgui-frag.glsl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#version 330 core
|
||||
|
||||
uniform sampler2D FontTexture;
|
||||
|
||||
in vec4 color;
|
||||
in vec2 texCoord;
|
||||
|
||||
out vec4 outputColor;
|
||||
|
||||
void main()
|
||||
{
|
||||
outputColor = color * texture(FontTexture, texCoord);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue