From fd73d0ad2c3b54850baf3c467954c92bd40ed010 Mon Sep 17 00:00:00 2001 From: rom Date: Sat, 24 Apr 2021 00:36:05 +0200 Subject: shader support --- txtgameengine/shaders/integrated.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 txtgameengine/shaders/integrated.py (limited to 'txtgameengine/shaders/integrated.py') diff --git a/txtgameengine/shaders/integrated.py b/txtgameengine/shaders/integrated.py new file mode 100644 index 0000000..dfa1033 --- /dev/null +++ b/txtgameengine/shaders/integrated.py @@ -0,0 +1,16 @@ +from .shader import Shader +from ..app import base_path + +shader_base_path = base_path / 'builtin_shaders' + + +class BasicShader(Shader): + UNIFORMS = dict() + VERTEX_PATH = shader_base_path / 'basic/vertex.glsl' + FRAGMENT_PATH = shader_base_path / 'basic/fragment.glsl' + + +class TextureShader(Shader): + UNIFORMS = dict(textureSampler="textureSampler") + VERTEX_PATH = shader_base_path / 'texture/vertex.glsl' + FRAGMENT_PATH = shader_base_path / 'texture/fragment.glsl' -- cgit