summaryrefslogtreecommitdiff
path: root/text_rendering/bounds.frag
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-08-04 01:19:01 +0500
committerpryazha <pryadeiniv@mail.ru>2025-08-04 01:19:01 +0500
commit99337878eca2807436bcf11d36946b90db44a2d3 (patch)
treecc1acfb8ec79abcc8d5323680dfd574fc5436f03 /text_rendering/bounds.frag
parent2e64d3c5d6eb1eb04168d39d5eb5f2d89af1a8b0 (diff)
text rendering chapterHEADmaster
Diffstat (limited to 'text_rendering/bounds.frag')
-rw-r--r--text_rendering/bounds.frag8
1 files changed, 8 insertions, 0 deletions
diff --git a/text_rendering/bounds.frag b/text_rendering/bounds.frag
new file mode 100644
index 0000000..34646c6
--- /dev/null
+++ b/text_rendering/bounds.frag
@@ -0,0 +1,8 @@
+#version 330 core
+
+out vec4 frag_color;
+
+void main()
+{
+ frag_color = vec4(1.0);
+}