Revert "anv: Disable Ray Tracing on xe2 until our compiler supports Xe2 RT"

This reverts commit 65684b0c7f.

Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29273>
This commit is contained in:
Jordan Justen
2023-01-09 17:31:47 -08:00
committed by Marge Bot
parent f1b502f8c7
commit 410ca6a3e9
3 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@
#include "ds/intel_tracepoints.h"
#if GFX_VERx10 == 125
#if GFX_VERx10 >= 125
#include "grl/grl_structs.h"
/* Wait for the previous dispatches to finish and flush their data port

View File

@@ -31,7 +31,7 @@
#include "vk_standard_sample_locations.h"
#if GFX_VERx10 == 125 && ANV_SUPPORT_RT
#if GFX_VERx10 >= 125 && ANV_SUPPORT_RT
#include "grl/genX_grl.h"
#endif
@@ -764,7 +764,7 @@ void
genX(init_physical_device_state)(ASSERTED struct anv_physical_device *pdevice)
{
assert(pdevice->info.verx10 == GFX_VERx10);
#if GFX_VERx10 == 125 && ANV_SUPPORT_RT
#if GFX_VERx10 >= 125 && ANV_SUPPORT_RT
genX(grl_load_rt_uuid)(pdevice->rt_uuid);
pdevice->max_grl_scratch_size = genX(grl_max_scratch_size)();
#endif

View File

@@ -1875,7 +1875,7 @@ void genX(CmdCopyQueryPoolResults)(
}
}
#if GFX_VERx10 == 125 && ANV_SUPPORT_RT
#if GFX_VERx10 >= 125 && ANV_SUPPORT_RT
#include "grl/include/GRLRTASCommon.h"
#include "grl/grl_metakernel_postbuild_info.h"