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

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: Rebase 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::ContextType type, 33 sk_gpu_test::GrContextFactory::ContextType type,
34 sk_gpu_test::GrContextFactory::ContextOptions options, 34 sk_gpu_test::GrContextFactory::ContextOptions 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 int, 105 int,
103 bool) { 106 bool) {
104 return nullptr; 107 return nullptr;
105 } 108 }
106 109
107 } // namespace DM 110 } // namespace DM
108 111
109 #endif//SK_SUPPORT_GPU 112 #endif//SK_SUPPORT_GPU
110 113
111 #endif//DMGpuSupport_DEFINED 114 #endif//DMGpuSupport_DEFINED
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | gm/constcolorprocessor.cpp » ('j') | src/effects/SkImageSource.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698