diff options
author | Jason Ekstrand <[email protected]> | 2015-01-05 18:17:04 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-22 10:36:24 -0800 |
commit | 7f396189f073d626c5f7a2c232dac92b65f5a23f (patch) | |
tree | 313b3463cd09b4db9a48f4b6d4c04195f470dc70 /src/mesa/Makefile.sources | |
parent | e24d17e08cb19bbecadb22ed43b25eeec26cde27 (diff) |
meta: Add a BlitFramebuffers-based implementation of TexSubImage
This meta path, designed for use with PBO's, creates a temporary texture
out of the PBO and uses BlitFramebuffers to do the actual texture upload.
v2 Jason Ekstrand <[email protected]>:
- Add support for handling simple packing options
v3 Jason Ekstrand <[email protected]>:
- Refactor to split out the texture-from-pbo code
- Rename to _mesa_meta_pbo_TexSubImage
Reviewed-by: Neil Roberts <[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 a91f78cc34e..42035632544 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -583,6 +583,7 @@ COMMON_DRIVER_FILES = \ $(SRCDIR)drivers/common/meta_blit.c \ $(SRCDIR)drivers/common/meta_copy_image.c \ $(SRCDIR)drivers/common/meta_generate_mipmap.c \ + $(SRCDIR)drivers/common/meta_tex_subimage.c \ $(SRCDIR)drivers/common/meta.c \ $(SRCDIR)drivers/common/meta.h |