diff options
author | Anuj Phogat <[email protected]> | 2017-05-26 09:11:20 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2017-06-22 14:17:45 -0700 |
commit | ac6bc0e0345f933cd7d6bb6fd8354302cdfe9550 (patch) | |
tree | 1deaca7dc5f1dac94c8b6e39739dd8746064a0fe /src/intel/vulkan/anv_device.c | |
parent | c17e214a6bf1da97c78fa7a6192cb1b498b773a1 (diff) |
anv/cnl: Generate and use gen10 functions
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 2423aa3468f..5505befcfab 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1231,6 +1231,8 @@ VkResult anv_CreateDevice( break; case 9: result = gen9_init_device_state(device); + case 10: + result = gen10_init_device_state(device); break; default: /* Shouldn't get here as we don't create physical devices for any other |