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

Side by Side Diff: src/sksl/SkSLUtil.h

Issue 2408193002: Revert of Turned on SkSL->GLSL compiler (Closed)
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « src/sksl/SkSLToken.h ('k') | src/sksl/SkSLUtil.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SKSL_UTIL 8 #ifndef SKSL_UTIL
9 #define SKSL_UTIL 9 #define SKSL_UTIL
10 10
11 #include <iomanip> 11 #include <iomanip>
12 #include <string> 12 #include <string>
13 #include <sstream> 13 #include <sstream>
14 #include "stdlib.h" 14 #include "stdlib.h"
15 #include "assert.h" 15 #include "assert.h"
16 #include "SkTypes.h" 16 #include "SkTypes.h"
17 17
18 namespace SkSL { 18 namespace SkSL {
19 19
20 // our own definitions of certain std:: functions, because they are not always p resent on Android 20 // our own definitions of certain std:: functions, because they are not always p resent on Android
21 21
22 std::string to_string(double value); 22 template <typename T> std::string to_string(T value) {
23 23 std::stringstream buffer;
24 std::string to_string(int32_t value); 24 buffer << std::setprecision(std::numeric_limits<T>::digits10) << value;
25 25 return buffer.str();
26 std::string to_string(uint32_t value); 26 }
27
28 std::string to_string(int64_t value);
29
30 std::string to_string(uint64_t value);
31 27
32 #if _MSC_VER 28 #if _MSC_VER
33 #define NORETURN __declspec(noreturn) 29 #define NORETURN __declspec(noreturn)
34 #else 30 #else
35 #define NORETURN __attribute__((__noreturn__)) 31 #define NORETURN __attribute__((__noreturn__))
36 #endif 32 #endif
37 int stoi(std::string s); 33 int stoi(std::string s);
38 34
39 double stod(std::string s); 35 double stod(std::string s);
40 36
(...skipping 11 matching lines...) Expand all
52 #define ASSERT_RESULT(x) x 48 #define ASSERT_RESULT(x) x
53 #endif 49 #endif
54 50
55 #ifdef SKIA 51 #ifdef SKIA
56 #define ABORT(...) { SkDebugf(__VA_ARGS__); sksl_abort(); } 52 #define ABORT(...) { SkDebugf(__VA_ARGS__); sksl_abort(); }
57 #else 53 #else
58 #define ABORT(...) { sksl_abort(); } 54 #define ABORT(...) { sksl_abort(); }
59 #endif 55 #endif
60 56
61 #endif 57 #endif
OLDNEW
« no previous file with comments | « src/sksl/SkSLToken.h ('k') | src/sksl/SkSLUtil.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698