diff options
author | Neil Roberts <[email protected]> | 2014-07-17 14:30:29 +0100 |
---|---|---|
committer | Neil Roberts <[email protected]> | 2014-08-12 18:23:50 +0100 |
commit | 442bcd7fd373b2a55c0db9ee806f6f4be64b0285 (patch) | |
tree | 232ffd0d08e78c8d73fe4a13f9cedeba055d21a3 /src/mesa/Makefile.sources | |
parent | 7e78033c11858b34e274be91586fdfa750c1db11 (diff) |
mesa: Add texel fetch functions for BPTC-compressed textures
Adds functions to fetch from any of the four BPTC-compressed formats.
v2: Set the alpha component to 1.0 when fetching from the half-float formats
instead of leaving it uninitialised. Don't linearize the alpha component
when fetching from sRGB.
Reviewed-by: Ian Romanick <[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 59456577178..12336c074ab 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -97,6 +97,7 @@ MAIN_FILES = \ $(SRCDIR)main/stencil.c \ $(SRCDIR)main/syncobj.c \ $(SRCDIR)main/texcompress.c \ + $(SRCDIR)main/texcompress_bptc.c \ $(SRCDIR)main/texcompress_cpal.c \ $(SRCDIR)main/texcompress_rgtc.c \ $(SRCDIR)main/texcompress_s3tc.c \ |