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

Side by Side Diff: src/gpu/gl/GrGLGpu.h

Issue 1789663002: sRGB support in Ganesh. Several pieces: (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Workaround for bug in clang warning. Created 4 years, 9 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/gpu/gl/GrGLDefines.h ('k') | src/gpu/gl/GrGLGpu.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 2011 Google Inc. 2 * Copyright 2011 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 GrGLGpu_DEFINED 8 #ifndef GrGLGpu_DEFINED
9 #define GrGLGpu_DEFINED 9 #define GrGLGpu_DEFINED
10 10
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 const GrGLCaps& glCaps() const { return *fGLContext->caps(); } 52 const GrGLCaps& glCaps() const { return *fGLContext->caps(); }
53 53
54 GrGLPathRendering* glPathRendering() { 54 GrGLPathRendering* glPathRendering() {
55 SkASSERT(glCaps().shaderCaps()->pathRenderingSupport()); 55 SkASSERT(glCaps().shaderCaps()->pathRenderingSupport());
56 return static_cast<GrGLPathRendering*>(pathRendering()); 56 return static_cast<GrGLPathRendering*>(pathRendering());
57 } 57 }
58 58
59 void discard(GrRenderTarget*) override; 59 void discard(GrRenderTarget*) override;
60 60
61 // Used by GrGLProgram to configure OpenGL state. 61 // Used by GrGLProgram to configure OpenGL state.
62 void bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* te xture); 62 void bindTexture(int unitIdx, const GrTextureParams& params, bool allowSRGB,
bsalomon 2016/03/17 18:51:18 Should we make the param name clearly associated w
63 GrGLTexture* texture);
63 64
64 bool onGetReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeigh t, size_t rowBytes, 65 bool onGetReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeigh t, size_t rowBytes,
65 GrPixelConfig readConfig, DrawPreference*, 66 GrPixelConfig readConfig, DrawPreference*,
66 ReadPixelTempDrawInfo*) override; 67 ReadPixelTempDrawInfo*) override;
67 68
68 bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height, 69 bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height,
69 GrPixelConfig srcConfig, DrawPreference*, 70 GrPixelConfig srcConfig, DrawPreference*,
70 WritePixelTempDrawInfo*) override; 71 WritePixelTempDrawInfo*) override;
71 72
72 bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const override; 73 bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const override;
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 } fPLSSetupProgram; 619 } fPLSSetupProgram;
619 620
620 bool fHWPLSEnabled; 621 bool fHWPLSEnabled;
621 bool fPLSHasBeenUsed; 622 bool fPLSHasBeenUsed;
622 623
623 typedef GrGpu INHERITED; 624 typedef GrGpu INHERITED;
624 friend class GrGLPathRendering; // For accessing setTextureUnit. 625 friend class GrGLPathRendering; // For accessing setTextureUnit.
625 }; 626 };
626 627
627 #endif 628 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLDefines.h ('k') | src/gpu/gl/GrGLGpu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698