yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

master
551 B22 linesraw
1#ifndef TEST_SERVER_DIAGNOSTICS_H
2#define TEST_SERVER_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
9namespace TestServer
10{
11using namespace Slang;
12
13namespace ServerDiagnostics
14{
15
16#define DIAGNOSTIC(id, severity, name, messageFormat) extern const DiagnosticInfo name;
17#include "test-server-diagnostic-defs.h"
18
19} // namespace ServerDiagnostics
20} // namespace TestServer
21
22#endif