Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
glsl_p.h
Go to the documentation of this file.
1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#ifndef QSSG_GLSL_H
5#define QSSG_GLSL_H
6
7#include <QtQuick3DGlslParser/qtquick3dglslparserexports.h>
8
9//
10// W A R N I N G
11// -------------
12//
13// This file is not part of the Qt API. It exists purely as an
14// implementation detail. This header file may change from version to
15// version without notice, or even be removed.
16//
17// We mean it.
18//
19
21
22namespace GLSL {
23class Engine;
24class Lexer;
25class Parser;
26class MemoryPool;
27
28// types
29class Type;
30class UndefinedType;
31class VoidType;
32class ScalarType;
33class BoolType;
34class IntType;
35class UIntType;
36class FloatType;
37class DoubleType;
38class IndexType;
39class VectorType;
40class MatrixType;
41class ArrayType;
42class SamplerType;
43
44// symbols
45class Symbol;
46class Scope;
47class Struct;
48class Function;
49class Argument;
50class Block;
51class Variable;
52class OverloadSet;
53class Namespace;
54
55class AST;
57template <typename T> class List;
58}
59
61
62#endif // QSSG_GLSL_H
Definition glsl_p.h:22
Combined button and popup list for selecting options.