blob: 5c32c4a3686551864a04ac5a8c8f230033bb01cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef RASTER_RENDERER_SYNTAX_PRINTER_H
#define RASTER_RENDERER_SYNTAX_PRINTER_H
#include "diagnostics.h"
#include "syntax.h"
namespace Slang
{
class CompileRequest;
class ShaderCompiler;
class ShaderLinkInfo;
class ShaderSymbol;
class TranslationUnitRequest;
void checkTranslationUnit(
TranslationUnitRequest* translationUnit);
// Look for a module that matches the given name:
// either one we've loaded already, or one we
// can find vai the search paths available to us.
//
// Needed by import declaration checking.
//
// TODO: need a better location to declare this.
RefPtr<ModuleDecl> findOrImportModule(
CompileRequest* request,
Name* name,
SourceLoc const& loc);
}
#endif
|