Files
UnrealEngineUWP/Engine/Source/Developer/ShaderCompilerCommon/Public/ISAParser/ISAParser.h
graham wihlidal 987e25e552 Renamed NoImplicitDerivatives -> NoDerivativeOps to also handle the explicit derivative cases, and cleaned up cflag naming
#rb rune.stubbe
[FYI] dan.elksnitis

[CL 27697881 by graham wihlidal in ue5-main branch]
2023-09-07 20:30:26 -04:00

17 lines
323 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
enum class EInstructionSet : uint8
{
RDNA1,
RDNA2,
};
namespace ISAParser
{
extern SHADERCOMPILERCOMMON_API bool HasDerivativeOps(bool& bHasDerivativeOps, const char* Code, uint32 CodeLength, EInstructionSet InstructionSet);
}