diff options
author | Graham Northup <grissess@nexusg.org> | 2020-07-04 18:00:25 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2020-07-04 18:00:25 -0400 |
commit | f02119a40bdeb56d18c323993d7a78e1a8440b17 (patch) | |
tree | c7ee2d725fee4abee88f5bb2d2a0cfd17cdd0b57 /render.py | |
parent | 2cbf8041bc26ca1e846772239015af4bea104754 (diff) |
Add LUTs
Diffstat (limited to 'render.py')
-rw-r--r-- | render.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -425,6 +425,10 @@ void main(void) { glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) while not glfw.window_should_close(win): + if not os.path.exists(options.map_file): + glfw.terminate() + exit() + glfw.make_context_current(win) glClear(GL_COLOR_BUFFER_BIT) |