https://github.com/shader-slang/slang
Raw File
Tip revision: b68516e2c2e39af79dda2ec7871fe4d821ef67c4 authored by Yong He on 03 April 2023, 22:54:16 UTC
Emit simpler vector element access code. (#2770)
Tip revision: b68516e
slang-lookup-spirv.h
#include "../core/slang-string.h"

#include "spirv/unified1/spirv.h"
#include "spirv/unified1/GLSL.std.450.h"

namespace Slang
{
bool lookupSpvOp(const UnownedStringSlice& str, SpvOp& value);
bool lookupGLSLstd450(const UnownedStringSlice& str, GLSLstd450& value);
}
back to top