diff options
author | Jordan Justen <[email protected]> | 2017-11-04 16:53:15 -0700 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-12-08 17:00:57 +1100 |
commit | b4c37ce2140c0195005d865b7a4de903ef50a097 (patch) | |
tree | 8e5cd34e9a1aadb80222e47e6a95c84460b8edb0 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | c1ff99fd70cd2ceb2cac4723e4fd5efc93834746 (diff) |
i965: Add ARB_get_program_binary support using nir_serialization
This resolves an apparent game bug described in 85564. The game
doesn't properly handle ARB_get_program_binary with 0 supported
formats.
V2 (Timothy Arceri):
- less driver code as more has been moved into the common helpers.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85564
Signed-off-by: Timothy Arceri <[email protected]>
Signed-off-by: Jordan Justen <[email protected]> (v1)
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 5599f0a4b1e..d928f71b431 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -38,6 +38,7 @@ i965_FILES = \ brw_performance_query.c \ brw_program.c \ brw_program.h \ + brw_program_binary.c \ brw_program_cache.c \ brw_primitive_restart.c \ brw_queryobj.c \ |