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

Unified Diff: src/sksl/ast/SkSLASTPrecision.h

Issue 2288033003: Turned on SkSL->GLSL compiler (Closed)
Patch Set: changed <iostream> to <ostream> Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/sksl/ast/SkSLASTModifiersDeclaration.h ('k') | src/sksl/ir/SkSLIndexExpression.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/sksl/ast/SkSLASTPrecision.h
diff --git a/src/sksl/ast/SkSLASTPrecision.h b/src/sksl/ast/SkSLASTPrecision.h
new file mode 100644
index 0000000000000000000000000000000000000000..a7df57948efc6989feea927fb3f109a022779737
--- /dev/null
+++ b/src/sksl/ast/SkSLASTPrecision.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SKSL_ASTPRECISION
+#define SKSL_ASTPRECISION
+
+#include "SkSLASTDeclaration.h"
+#include "../ir/SkSLModifiers.h"
+
+namespace SkSL {
+
+/**
+ * Represents a precision declaration (e.g. 'precision mediump float;').
+ */
+struct ASTPrecision : public ASTDeclaration {
+ // FIXME handle the type
+ ASTPrecision(Position position, Modifiers::Flag precision)
+ : INHERITED(position, kPrecision_Kind)
+ , fPrecision(precision) {}
+
+ std::string description() const {
+ switch (fPrecision) {
+ case Modifiers::kLowp_Flag: return "precision lowp float;";
+ case Modifiers::kMediump_Flag: return "precision mediump float;";
+ case Modifiers::kHighp_Flag: return "precision highp float;";
+ default:
+ ASSERT(false);
+ return "<error>";
+ }
+ ASSERT(false);
+ return "<error>";
+ }
+
+ const Modifiers::Flag fPrecision;
+
+ typedef ASTDeclaration INHERITED;
+};
+
+} // namespace
+
+#endif
« no previous file with comments | « src/sksl/ast/SkSLASTModifiersDeclaration.h ('k') | src/sksl/ir/SkSLIndexExpression.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698