OLD | NEW |
(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_ASTLAYOUT |
| 9 #define SKSL_ASTLAYOUT |
| 10 |
| 11 #include "SkSLASTNode.h" |
| 12 #include "SkSLUtil.h" |
| 13 |
| 14 namespace SkSL { |
| 15 |
| 16 /** |
| 17 * Represents a layout block appearing before a variable declaration, as in: |
| 18 * |
| 19 * layout (location = 0) int x; |
| 20 */ |
| 21 struct ASTLayout : public ASTNode { |
| 22 // For all parameters, a -1 means no value |
| 23 ASTLayout(int location, int binding, int index, int set, int builtin) |
| 24 : fLocation(location) |
| 25 , fBinding(binding) |
| 26 , fIndex(index) |
| 27 , fSet(set) |
| 28 , fBuiltin(builtin) {} |
| 29 |
| 30 std::string description() const { |
| 31 std::string result; |
| 32 std::string separator; |
| 33 if (fLocation >= 0) { |
| 34 result += separator + "location = " + to_string(fLocation); |
| 35 separator = ", "; |
| 36 } |
| 37 if (fBinding >= 0) { |
| 38 result += separator + "binding = " + to_string(fBinding); |
| 39 separator = ", "; |
| 40 } |
| 41 if (fIndex >= 0) { |
| 42 result += separator + "index = " + to_string(fIndex); |
| 43 separator = ", "; |
| 44 } |
| 45 if (fSet >= 0) { |
| 46 result += separator + "set = " + to_string(fSet); |
| 47 separator = ", "; |
| 48 } |
| 49 if (fBuiltin >= 0) { |
| 50 result += separator + "builtin = " + to_string(fBuiltin); |
| 51 separator = ", "; |
| 52 } |
| 53 if (result.length() > 0) { |
| 54 result = "layout (" + result + ")"; |
| 55 } |
| 56 return result; |
| 57 } |
| 58 |
| 59 const int fLocation; |
| 60 const int fBinding; |
| 61 const int fIndex; |
| 62 const int fSet; |
| 63 const int fBuiltin; |
| 64 }; |
| 65 |
| 66 } // namespace |
| 67 |
| 68 #endif |
OLD | NEW |