diff options
author | Jordan Justen <[email protected]> | 2017-11-04 16:52:14 -0700 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-12-08 16:59:25 +1100 |
commit | c20fd744fef1ffb938f74dbafbe375c863fecc65 (patch) | |
tree | 062bbbeeee93738a7bd51821a7dc3dbdc8b78534 /src/mesa/Makefile.sources | |
parent | 90d4abdd872b62943b33d62c9368fe7855b1c4fc (diff) |
mesa: Add Mesa ARB_get_program_binary helper functions
V2 (Timothy Arceri):
- add extra code comment
- stop passing around void *binary and just pass
program_binary_header *hdr instead.
- move to src/mesa/main rather than src/util
V3 (Timothy Arceri):
- Move more code out of the backend and into the common
helpers.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mesa/Makefile.sources')
-rw-r--r-- | src/mesa/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/Makefile.sources b/src/mesa/Makefile.sources index 6da1e3fef9d..d8b1eb1f995 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -173,6 +173,8 @@ MAIN_FILES = \ main/points.h \ main/polygon.c \ main/polygon.h \ + main/program_binary.c \ + main/program_binary.h \ main/program_resource.c \ main/program_resource.h \ main/querymatrix.c \ |