diff options
author | Brian Paul <[email protected]> | 2014-02-01 08:58:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-02-02 06:52:37 -0700 |
commit | 3abd4f4d90c5827f74509c1f507ed71aa7be9a15 (patch) | |
tree | 5abb0cf06e64c65d63d1b0cbac9b82beda91c940 /src/mesa/SConscript | |
parent | bfcb9bb20451aa7c74d8769ae043fb11503e8453 (diff) |
mesa: move glGenerateMipmap() code into new genmipmap.c file
Mipmap generation has nothing to do with FBOs.
v2: update gl_genexec.py too (not api_exec.c)
Acked-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/SConscript')
-rw-r--r-- | src/mesa/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript index 4bc4de4f41a..5b3358d5bed 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -78,6 +78,7 @@ main_sources = [ 'main/format_pack.c', 'main/format_unpack.c', 'main/framebuffer.c', + 'main/genmipmap.c', 'main/getstring.c', 'main/glformats.c', 'main/hash.c', |