diff options
author | Samuel Pitoiset <[email protected]> | 2017-09-01 11:41:18 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-09-08 17:17:40 +0200 |
commit | d4d777317b90637cbf3a1c1bba4aa9c9e82ca47b (patch) | |
tree | 67c17187ab79fb38e28cc0c71a1f21028e2b9cf2 /src/amd/vulkan/radv_device.c | |
parent | 988d792375051d3745471746028eb05364a41009 (diff) |
radv: move shaders related code to radv_shader.c
Reduce size of radv_pipeline.c and improve code isolation. More
code can probably moved but it's a start.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index ae0a76137e7..d220eb596d6 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -31,6 +31,7 @@ #include <fcntl.h> #include "radv_debug.h" #include "radv_private.h" +#include "radv_shader.h" #include "radv_cs.h" #include "util/disk_cache.h" #include "util/strtod.h" |