yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
578 B23 linesraw
1#ifndef SLANG_CORE_DIAGNOSTICS_H
2#define SLANG_CORE_DIAGNOSTICS_H
3
4#include "../../source/compiler-core/slang-diagnostic-sink.h"
5#include "../../source/compiler-core/slang-source-loc.h"
6#include "../../source/core/slang-basic.h"
7#include "../../source/core/slang-writer.h"
8#include "slang.h"
9
10namespace Slang
11{
12
13DiagnosticsLookup* getCoreDiagnosticsLookup();
14
15namespace RenderTestDiagnostics
16{
17#define DIAGNOSTIC(id, severity, name, messageFormat) extern const DiagnosticInfo name;
18#include "diagnostic-defs.h"
19} // namespace RenderTestDiagnostics
20
21} // namespace Slang
22
23#endif