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

Side by Side Diff: dm/DMGpuSupport.h

Issue 1845283003: Gamma-correctness pushed into Skia, top-down. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Undo odd change to GrBlurUtils - no longer needed Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 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 DMGpuSupport_DEFINED 8 #ifndef DMGpuSupport_DEFINED
9 #define DMGpuSupport_DEFINED 9 #define DMGpuSupport_DEFINED
10 10
(...skipping 18 matching lines...) Expand all
29 static const bool kGPUDisabled = false; 29 static const bool kGPUDisabled = false;
30 30
31 static inline sk_sp<SkSurface> NewGpuSurface( 31 static inline sk_sp<SkSurface> NewGpuSurface(
32 sk_gpu_test::GrContextFactory* grFactory, 32 sk_gpu_test::GrContextFactory* grFactory,
33 sk_gpu_test::GrContextFactory::GLContextType type, 33 sk_gpu_test::GrContextFactory::GLContextType type,
34 sk_gpu_test::GrContextFactory::GLContextOptions options, 34 sk_gpu_test::GrContextFactory::GLContextOptions options,
35 SkImageInfo info, 35 SkImageInfo info,
36 int samples, 36 int samples,
37 bool useDIText) { 37 bool useDIText) {
38 uint32_t flags = useDIText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag : 0; 38 uint32_t flags = useDIText ? SkSurfaceProps::kUseDeviceIndependentFonts_Flag : 0;
39 if (SkImageInfoIsGammaCorrect(info)) {
40 flags |= SkSurfaceProps::kAllowSRGBInputs_Flag;
41 }
39 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType); 42 SkSurfaceProps props(flags, SkSurfaceProps::kLegacyFontHost_InitType);
40 return SkSurface::MakeRenderTarget(grFactory->get(type, options), SkBudgeted ::kNo, 43 return SkSurface::MakeRenderTarget(grFactory->get(type, options), SkBudgeted ::kNo,
41 info, samples, &props); 44 info, samples, &props);
42 } 45 }
43 46
44 } // namespace DM 47 } // namespace DM
45 48
46 #else// !SK_SUPPORT_GPU 49 #else// !SK_SUPPORT_GPU
47 50
48 // Ganesh is not available. Fake it. 51 // Ganesh is not available. Fake it.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 int, 103 int,
101 bool) { 104 bool) {
102 return nullptr; 105 return nullptr;
103 } 106 }
104 107
105 } // namespace DM 108 } // namespace DM
106 109
107 #endif//SK_SUPPORT_GPU 110 #endif//SK_SUPPORT_GPU
108 111
109 #endif//DMGpuSupport_DEFINED 112 #endif//DMGpuSupport_DEFINED
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | gm/constcolorprocessor.cpp » ('j') | include/core/SkCanvas.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698