intel/vk/grl: genX-ify genX_grl_uuid.cpp
authorJordan Justen <jordan.l.justen@intel.com>
Tue, 31 Jan 2023 23:10:17 +0000 (15:10 -0800)
committerMarge Bot <emma+marge@anholt.net>
Fri, 3 Mar 2023 21:37:19 +0000 (21:37 +0000)
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21670>

src/intel/vulkan/grl/genX_grl_uuid.cpp

index 9f43358..cf6b425 100644 (file)
 #include <assert.h>
 #include <string.h>
 
+#include "genX_grl.h"
 #include "include/GRLGen12.h"
 
 #include "vulkan/vulkan_core.h"
 
 extern "C" void
-gfx125_grl_load_rt_uuid(uint8_t *out_uuid);
+genX(grl_load_rt_uuid)(uint8_t *out_uuid);
 
 extern "C" void
-gfx125_grl_load_rt_uuid(uint8_t *out_uuid)
+genX(grl_load_rt_uuid)(uint8_t *out_uuid)
 {
    assert(sizeof(GRL::RTAS::GEN12::BVH_MAGIC) == VK_UUID_SIZE);
    memcpy(out_uuid, GRL::RTAS::GEN12::BVH_MAGIC, VK_UUID_SIZE);