Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: src/sksl/ir/SkSLInterfaceBlock.h

Issue 1984363002: initial checkin of SkSL compiler (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: fixed CMake build Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/sksl/ir/SkSLIntLiteral.h ('k') | src/sksl/ir/SkSLLayout.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SKSL_INTERFACEBLOCK
9 #define SKSL_INTERFACEBLOCK
10
11 #include "SkSLProgramElement.h"
12 #include "SkSLVarDeclaration.h"
13
14 namespace SkSL {
15
16 /**
17 * An interface block, as in:
18 *
19 * out gl_PerVertex {
20 * layout(builtin=0) vec4 gl_Position;
21 * layout(builtin=1) float gl_PointSize;
22 * };
23 *
24 * At the IR level, this is represented by a single variable of struct type.
25 */
26 struct InterfaceBlock : public ProgramElement {
27 InterfaceBlock(Position position, std::shared_ptr<Variable> var)
28 : INHERITED(position, kInterfaceBlock_Kind)
29 , fVariable(std::move(var)) {
30 ASSERT(fVariable->fType->kind() == Type::kStruct_Kind);
31 }
32
33 std::string description() const override {
34 std::string result = fVariable->fModifiers.description() + fVariable->fN ame + " {\n";
35 for (size_t i = 0; i < fVariable->fType->fields().size(); i++) {
36 result += fVariable->fType->fields()[i].description() + "\n";
37 }
38 result += "};";
39 return result;
40 }
41
42 const std::shared_ptr<Variable> fVariable;
43
44 typedef ProgramElement INHERITED;
45 };
46
47 } // namespace
48
49 #endif
OLDNEW
« no previous file with comments | « src/sksl/ir/SkSLIntLiteral.h ('k') | src/sksl/ir/SkSLLayout.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698