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/Makefile.sources | |
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/Makefile.sources')
-rw-r--r-- | src/mesa/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/Makefile.sources b/src/mesa/Makefile.sources index 6a8a045fb09..3cdcae21368 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -49,6 +49,7 @@ MAIN_FILES = \ $(SRCDIR)main/format_unpack.c \ $(SRCDIR)main/framebuffer.c \ $(SRCDIR)main/get.c \ + $(SRCDIR)main/genmipmap.c \ $(SRCDIR)main/getstring.c \ $(SRCDIR)main/glformats.c \ $(SRCDIR)main/hash.c \ |