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

Side by Side Diff: example/HelloWorld.cpp

Issue 2072813002: Revert of Lots of progress switching to SkColorSpace rather than SkColorProfileType (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 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 | « dm/DMSrcSink.cpp ('k') | include/core/SkBitmap.h » ('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 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 * 7 *
8 */ 8 */
9 9
10 #include "HelloWorld.h" 10 #include "HelloWorld.h"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 // Invalidate the window to force a redraw. Poor man's animation mechanism. 148 // Invalidate the window to force a redraw. Poor man's animation mechanism.
149 this->inval(NULL); 149 this->inval(NULL);
150 150
151 if (kRaster_DeviceType == fType) { 151 if (kRaster_DeviceType == fType) {
152 // need to send the raster bits to the (gpu) window 152 // need to send the raster bits to the (gpu) window
153 sk_sp<SkImage> snap = fSurface->makeImageSnapshot(); 153 sk_sp<SkImage> snap = fSurface->makeImageSnapshot();
154 SkPixmap pmap; 154 SkPixmap pmap;
155 if (snap->peekPixels(&pmap)) { 155 if (snap->peekPixels(&pmap)) {
156 const SkImageInfo& info = pmap.info(); 156 const SkImageInfo& info = pmap.info();
157 fRenderTarget->writePixels(0, 0, snap->width(), snap->height(), 157 fRenderTarget->writePixels(0, 0, snap->width(), snap->height(),
158 SkImageInfo2GrPixelConfig(info, *fContext ->caps()), 158 SkImageInfo2GrPixelConfig(info.color Type(),
159 pmap.addr(), pmap.rowBytes(), 159 info.alphaTy pe(),
160 GrContext::kFlushWrites_PixelOp); 160 info.profile Type(),
161 *fContext->c aps()),
162 pmap.addr(),
163 pmap.rowBytes(),
164 GrContext::kFlushWrites_PixelOp);
161 } 165 }
162 } 166 }
163 INHERITED::present(); 167 INHERITED::present();
164 } 168 }
165 169
166 void HelloWorldWindow::onSizeChange() { 170 void HelloWorldWindow::onSizeChange() {
167 setUpRenderTarget(); 171 setUpRenderTarget();
168 } 172 }
169 173
170 bool HelloWorldWindow::onHandleChar(SkUnichar unichar) { 174 bool HelloWorldWindow::onHandleChar(SkUnichar unichar) {
171 if (' ' == unichar) { 175 if (' ' == unichar) {
172 fType = fType == kRaster_DeviceType ? kGPU_DeviceType: kRaster_DeviceTyp e; 176 fType = fType == kRaster_DeviceType ? kGPU_DeviceType: kRaster_DeviceTyp e;
173 tearDownBackend(); 177 tearDownBackend();
174 setUpBackend(); 178 setUpBackend();
175 this->setTitle(); 179 this->setTitle();
176 this->inval(NULL); 180 this->inval(NULL);
177 } 181 }
178 return true; 182 return true;
179 } 183 }
180 184
181 SkOSWindow* create_sk_window(void* hwnd, int , char** ) { 185 SkOSWindow* create_sk_window(void* hwnd, int , char** ) {
182 return new HelloWorldWindow(hwnd); 186 return new HelloWorldWindow(hwnd);
183 } 187 }
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | include/core/SkBitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698