File tree Expand file tree Collapse file tree 7 files changed +1
-194
lines changed
AdaptorCommon/RayTracing/API Expand file tree Collapse file tree 7 files changed +1
-194
lines changed Original file line number Diff line number Diff line change @@ -198,9 +198,6 @@ template <typename T> class Array {
198
198
inline typename iterator::pointer allocate (size_t NumElts) {
199
199
return static_cast <typename iterator::pointer>(::operator new (NumElts * sizeof (typename iterator::value_type)));
200
200
}
201
-
202
- template <typename A, typename B> friend class UnorderedMap ;
203
201
};
204
202
205
-
206
203
} // namespace Interface
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ SPDX-License-Identifier: MIT
11
11
#include "common/EmUtils.h"
12
12
13
13
#include "ADT/Array.h"
14
- #include "ADT/UnorderedMap.h"
15
14
#include "ADT/Optional.h"
16
15
17
16
#include "BVHInfo.h"
Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ class CDriverInfo {
390
390
virtual bool supportsVRT () const { return true ; }
391
391
392
392
virtual bool supportsUniformPrivateMemorySpace () const { return false ; }
393
-
393
+ virtual uint32_t maxNumCoherenceHintBitsForReorderThread () const { return 0 ; }
394
394
395
395
virtual bool UseNewTraceRayInlineLoweringInRaytracingShaders () const {
396
396
return (IGC_GET_FLAG_VALUE (UseNewInlineRaytracing) & static_cast <uint32_t >(NewInlineRaytracingMask::RTShaders)) !=
Original file line number Diff line number Diff line change @@ -486,10 +486,6 @@ struct SBindlessProgram : SKernelProgram {
486
486
// a collection of other names that they go by.
487
487
std::vector<std::string> Aliases;
488
488
489
- // if the shader was created by cloning another shader
490
- // this will contain the name of the original shader
491
- std::string OriginatingShaderName;
492
-
493
489
// We maintain this information to provide to GTPin. These are all
494
490
// offsets in bytes from the base of GRF.
495
491
uint32_t GlobalPtrOffset = 0 ; // pointer to RTGlobals
Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ set(IGC_BUILD__HDR__DriverInterface
115
115
)
116
116
set (IGC_BUILD__HDR__RAYTRACING_API__ADT
117
117
"${CMAKE_CURRENT_SOURCE_DIR} /../AdaptorCommon/RayTracing/API/ADT/Array.h"
118
- "${CMAKE_CURRENT_SOURCE_DIR} /../AdaptorCommon/RayTracing/API/ADT/UnorderedMap.h"
119
118
"${CMAKE_CURRENT_SOURCE_DIR} /../AdaptorCommon/RayTracing/API/ADT/Optional.h"
120
119
)
121
120
Original file line number Diff line number Diff line change @@ -324,10 +324,6 @@ enum class ShaderTypeMD
324
324
325
325
// for continuations used in ReorderThread, this field indicates the maximum value of the coherence hint
326
326
uint32_t NumCoherenceHintBits = 0 ;
327
-
328
- // if the function was created by cloning another function
329
- // this will contain the name of the original shader
330
- std::string OriginatingShaderName;
331
327
};
332
328
333
329
struct ConstantAddress
You can’t perform that action at this time.
0 commit comments