| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 #include "../include/core/SkCanvas.h" | 8 #include "../include/core/SkCanvas.h" |
| 9 #include "../include/core/SkData.h" | 9 #include "../include/core/SkData.h" |
| 10 #include "../include/core/SkSurface.h" | 10 #include "../include/core/SkSurface.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 static std::shared_ptr<SkSurface> create_opengl_surface(int w, int h) { | 53 static std::shared_ptr<SkSurface> create_opengl_surface(int w, int h) { |
| 54 std::cout << "Using opengl surface" << std::endl; | 54 std::cout << "Using opengl surface" << std::endl; |
| 55 std::shared_ptr<GrContext> grContext = adopt(GrContext::Create(kOpenGL_GrBac
kend, 0)); | 55 std::shared_ptr<GrContext> grContext = adopt(GrContext::Create(kOpenGL_GrBac
kend, 0)); |
| 56 return adopt(SkSurface::MakeRenderTarget(grContext.get(), | 56 return adopt(SkSurface::MakeRenderTarget(grContext.get(), |
| 57 SkBudgeted::kNo, | 57 SkBudgeted::kNo, |
| 58 SkImageInfo::MakeN32Premul(w,h)).rel
ease()); | 58 SkImageInfo::MakeN32Premul(w,h)).rel
ease()); |
| 59 } | 59 } |
| 60 | 60 |
| 61 int main(int, char**) { | 61 int main(int, char**) { |
| 62 bool gl_ok = setup_gl_context(); | 62 bool gl_ok = setup_gl_context(); |
| 63 srand(time(nullptr)); | 63 srand((unsigned)time(nullptr)); |
| 64 std::shared_ptr<SkSurface> surface = (gl_ok && rand() % 2) ? create_opengl_s
urface(320, 240) | 64 std::shared_ptr<SkSurface> surface = (gl_ok && rand() % 2) ? create_opengl_s
urface(320, 240) |
| 65 : create_raster_s
urface(320, 240); | 65 : create_raster_s
urface(320, 240); |
| 66 | 66 |
| 67 // Create a left-to-right green-to-purple gradient shader. | 67 // Create a left-to-right green-to-purple gradient shader. |
| 68 SkPoint pts[] = { {0,0}, {320,240} }; | 68 SkPoint pts[] = { {0,0}, {320,240} }; |
| 69 SkColor colors[] = { 0xFF00FF00, 0xFFFF00FF }; | 69 SkColor colors[] = { 0xFF00FF00, 0xFFFF00FF }; |
| 70 // Our text will draw with this paint: size 24, antialiased, with the shader
. | 70 // Our text will draw with this paint: size 24, antialiased, with the shader
. |
| 71 SkPaint paint; | 71 SkPaint paint; |
| 72 paint.setTextSize(24); | 72 paint.setTextSize(24); |
| 73 paint.setAntiAlias(true); | 73 paint.setAntiAlias(true); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 85 std::shared_ptr<SkData> png = adopt(image->encode(SkImageEncoder::kPNG_Type,
100)); | 85 std::shared_ptr<SkData> png = adopt(image->encode(SkImageEncoder::kPNG_Type,
100)); |
| 86 | 86 |
| 87 // This code is no longer Skia-specific. We just dump the .png to disk. An
y way works. | 87 // This code is no longer Skia-specific. We just dump the .png to disk. An
y way works. |
| 88 static const char* path = "example.png"; | 88 static const char* path = "example.png"; |
| 89 std::ofstream(path, std::ios::out | std::ios::binary) | 89 std::ofstream(path, std::ios::out | std::ios::binary) |
| 90 .write((const char*)png->data(), png->size()); | 90 .write((const char*)png->data(), png->size()); |
| 91 std::cout << "Wrote " << path << std::endl; | 91 std::cout << "Wrote " << path << std::endl; |
| 92 | 92 |
| 93 return 0; | 93 return 0; |
| 94 } | 94 } |
| OLD | NEW |