Added backgdrop, object and more text to text overlay example

This commit is contained in:
saschawillems 2016-05-07 12:37:12 +02:00
parent 99ad677339
commit b39d589c86
13 changed files with 243 additions and 62 deletions

View file

@ -0,0 +1,15 @@
#version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_420pack : enable
layout (binding = 1) uniform sampler2D samplerColorMap;
layout (location = 0) in vec2 inUV;
layout (location = 0) out vec4 outFragColor;
void main()
{
outFragColor = texture(samplerColorMap, inUV);
}