From f3d70425fa339a0d8f39b920235c98280d250bbb Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Fri, 29 May 2020 08:36:10 -0400 Subject: Feature/ast syntax standard (#1360) * Small improvements to documentation and code around DiagnosticSink * Made methods/functions in slang-syntax.h be lowerCamel Removed some commented out source (was placed elsewhere in code) * Making AST related methods and function lowerCamel. Made IsLeftValue -> isLeftValue. --- source/slang/slang-emit-hlsl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/slang/slang-emit-hlsl.cpp') diff --git a/source/slang/slang-emit-hlsl.cpp b/source/slang/slang-emit-hlsl.cpp index 338e99e68..5ebd7e9fc 100644 --- a/source/slang/slang-emit-hlsl.cpp +++ b/source/slang/slang-emit-hlsl.cpp @@ -27,7 +27,7 @@ void HLSLSourceEmitter::_emitHLSLDecorationSingleInt(const char* name, IRFunc* e SLANG_UNUSED(entryPoint); SLANG_ASSERT(val); - auto intVal = GetIntVal(val); + auto intVal = getIntVal(val); m_writer->emit("["); m_writer->emit(name); @@ -326,7 +326,7 @@ void HLSLSourceEmitter::emitEntryPointAttributesImpl(IRFunc* irFunc, IREntryPoin { if (auto decor = irFunc->findDecoration()) { - auto count = GetIntVal(decor->getCount()); + auto count = getIntVal(decor->getCount()); m_writer->emit("[maxvertexcount("); m_writer->emit(Int(count)); m_writer->emit(")]\n"); @@ -334,7 +334,7 @@ void HLSLSourceEmitter::emitEntryPointAttributesImpl(IRFunc* irFunc, IREntryPoin if (auto decor = irFunc->findDecoration()) { - auto count = GetIntVal(decor->getCount()); + auto count = getIntVal(decor->getCount()); m_writer->emit("[instance("); m_writer->emit(Int(count)); m_writer->emit(")]\n"); @@ -743,7 +743,7 @@ void HLSLSourceEmitter::emitSimpleTypeImpl(IRType* type) case kIROp_VectorType: { auto vecType = (IRVectorType*)type; - emitVectorTypeNameImpl(vecType->getElementType(), GetIntVal(vecType->getElementCount())); + emitVectorTypeNameImpl(vecType->getElementType(), getIntVal(vecType->getElementCount())); return; } case kIROp_MatrixType: -- cgit v1.2.3