SpiecsEngine
 
Loading...
Searching...
No Matches

◆ operator<() [2/3]

bool operator< ( const GFSDK_Aftermath_ShaderDebugInfoIdentifier & lhs,
const GFSDK_Aftermath_ShaderDebugInfoIdentifier & rhs )
inline

Helper for comparing GFSDK_Aftermath_ShaderDebugInfoIdentifier.

Parameters
[in]lhsGFSDK_Aftermath_ShaderDebugInfoIdentifier.
[in]rhsGFSDK_Aftermath_ShaderDebugInfoIdentifier.
Returns
Returns true if less.

Definition at line 71 of file NsightAftermathHelpers.h.

72{
73 if (lhs.id[0] == rhs.id[0])
74 {
75 return lhs.id[1] < rhs.id[1];
76 }
77 return lhs.id[0] < rhs.id[0];
78}