yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Lauro OyenMove c++ parsing code from slang-cpp-extractor to static library (#5675)eaa8dcfcc

master
319 B15 linesraw
1#include "diagnostics.h"
2
3namespace CppParse
4{
5
6namespace CPPDiagnostics
7{
8using namespace Slang;
9
10#define DIAGNOSTIC(id, severity, name, messageFormat) \
11    const DiagnosticInfo name = {id, Severity::severity, #name, messageFormat};
12#include "diagnostic-defs.h"
13} // namespace CPPDiagnostics
14
15} // namespace CppParse