Home
last modified time | relevance | path

Searched refs:CompFunc (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/
H A DHLSLRootSignature.cpp101 const dxbc::ComparisonFunc &CompFunc) { in operator <<() argument
102 printEnum(OS, CompFunc, dxbc::getComparisonFuncs()); in operator <<()
198 << ", comparisonFunc = " << Sampler.CompFunc in operator <<()
H A DRootSignatureMetadata.cpp177 Builder.getInt32(llvm::to_underlying(Sampler.CompFunc))), in BuildStaticSampler()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSLRootSignature.cpp459 if (Params->CompFunc.has_value()) in parseStaticSampler()
460 Sampler.CompFunc = Params->CompFunc.value(); in parseStaticSampler()
836 if (Params.CompFunc.has_value()) { in parseStaticSamplerParams()
844 auto CompFunc = parseComparisonFunc(TokenKind::kw_comparisonFunc); in parseStaticSamplerParams() local
845 if (!CompFunc.has_value()) in parseStaticSamplerParams()
847 Params.CompFunc = CompFunc; in parseStaticSamplerParams()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/HLSL/
H A DHLSLRootSignature.h127 dxbc::ComparisonFunc CompFunc = dxbc::ComparisonFunc::LessEqual; member
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParseHLSLRootSignature.h125 std::optional<llvm::dxbc::ComparisonFunc> CompFunc; member