intel/vk/grl: genX-ify genX_grl_uuid.cpp

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>
This commit is contained in:
Jordan Justen
2023-01-31 15:10:17 -08:00
committed by Marge Bot
parent 14007a525b
commit d68c9e0dcf
+3 -2
View File
@@ -24,15 +24,16 @@
#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);