Switch to using glad instead of glew

This commit is contained in:
Kovid Goyal
2017-11-08 15:15:25 +05:30
parent ff528604dd
commit 6362499fc2
14 changed files with 7917 additions and 45 deletions

View File

@@ -221,7 +221,6 @@ def run_tool(cmd):
SPECIAL_SOURCES = {
'kitty/parser_dump.c': ('kitty/parser.c', ['DUMP_COMMANDS']),
'kitty/shaders_debug.c': ('kitty/shaders.c', ['ENABLE_DEBUG_GL']),
}
@@ -342,7 +341,6 @@ def find_c_files():
key=lambda x: os.path.getmtime(os.path.join(base, x)), reverse=True
)
ans.append('kitty/parser_dump.c')
ans.append('kitty/shaders_debug.c')
return tuple(ans), tuple(headers)