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

Issue 596053002: Make "priv" classes for GrTexure and GrSurface. (Closed)

Created:
6 years, 2 months ago by bsalomon
Modified:
6 years, 2 months ago
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Visibility:
Public.

Description

Make "priv" classes for GrTexure and GrSurface. Committed: https://skia.googlesource.com/skia/+/afbf2d6273cd22c683f20a7e5773843876af3085

Patch Set 1 : update #

Patch Set 2 : move some includes around #

Patch Set 3 : rebase #

Total comments: 25

Patch Set 4 : address comments #

Total comments: 8

Patch Set 5 : Address comments #

Total comments: 2

Patch Set 6 : remove unneeded GrTexture::s #

Patch Set 7 : rebase #

Patch Set 8 : address copy cons bug #

Patch Set 9 : remove inheritance #

Patch Set 10 : Add SK_API #

Unified diffs Side-by-side diffs Delta from patch set Stats (+300 lines, -187 lines) Patch
M bench/GrResourceCacheBench.cpp View 2 chunks +2 lines, -1 line 0 comments Download
M gyp/gpu.gypi View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M include/gpu/GrContext.h View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -19 lines 0 comments Download
M include/gpu/GrSurface.h View 1 5 chunks +15 lines, -27 lines 0 comments Download
M include/gpu/GrTexture.h View 1 2 3 4 5 chunks +14 lines, -71 lines 0 comments Download
M src/gpu/GrBitmapTextContext.cpp View 1 2 2 chunks +9 lines, -8 lines 0 comments Download
M src/gpu/GrContext.cpp View 1 2 3 4 5 6 10 chunks +31 lines, -10 lines 0 comments Download
M src/gpu/GrDistanceFieldTextContext.cpp View 1 2 3 4 2 chunks +8 lines, -6 lines 0 comments Download
M src/gpu/GrDrawTarget.cpp View 2 chunks +2 lines, -1 line 0 comments Download
M src/gpu/GrSurface.cpp View 1 2 3 3 chunks +16 lines, -2 lines 0 comments Download
A src/gpu/GrSurfacePriv.h View 1 2 3 4 5 6 7 1 chunk +63 lines, -0 lines 0 comments Download
M src/gpu/GrTextStrike.cpp View 2 chunks +2 lines, -1 line 0 comments Download
M src/gpu/GrTexture.cpp View 1 2 3 4 5 8 chunks +20 lines, -16 lines 0 comments Download
A src/gpu/GrTexturePriv.h View 1 2 3 4 5 6 7 8 1 chunk +82 lines, -0 lines 0 comments Download
M src/gpu/SkGpuDevice.h View 1 2 2 chunks +2 lines, -1 line 0 comments Download
M src/gpu/SkGpuDevice.cpp View 1 2 3 2 chunks +4 lines, -3 lines 0 comments Download
M src/gpu/gl/GrGLTexture.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/gpu/gl/GrGpuGL.cpp View 1 2 6 chunks +8 lines, -6 lines 0 comments Download
M tests/GrSurfaceTest.cpp View 3 chunks +16 lines, -13 lines 0 comments Download

Messages

Total messages: 33 (15 generated)
bsalomon
This is related to our discussion on Wednesday. This adds friend wrappers for texture and ...
6 years, 2 months ago (2014-09-26 17:51:10 UTC) #2
robertphillips
Mainly questions https://codereview.chromium.org/596053002/diff/140001/include/gpu/GrTexture.h File include/gpu/GrTexture.h (right): https://codereview.chromium.org/596053002/diff/140001/include/gpu/GrTexture.h#newcode110 include/gpu/GrTexture.h:110: MipMapsStatus fMipMapsStatus; Preserve old comment if these ...
6 years, 2 months ago (2014-09-29 13:34:28 UTC) #8
joshua.litt
https://codereview.chromium.org/596053002/diff/140001/src/gpu/GrSurface.cpp File src/gpu/GrSurface.cpp (right): https://codereview.chromium.org/596053002/diff/140001/src/gpu/GrSurface.cpp#newcode84 src/gpu/GrSurface.cpp:84: On 2014/09/29 13:34:27, robertphillips wrote: > It looks like ...
6 years, 2 months ago (2014-09-29 13:58:09 UTC) #10
bsalomon
updated https://codereview.chromium.org/596053002/diff/140001/include/gpu/GrTexture.h File include/gpu/GrTexture.h (right): https://codereview.chromium.org/596053002/diff/140001/include/gpu/GrTexture.h#newcode110 include/gpu/GrTexture.h:110: MipMapsStatus fMipMapsStatus; On 2014/09/29 13:34:27, robertphillips wrote: > ...
6 years, 2 months ago (2014-09-29 18:42:11 UTC) #11
robertphillips
https://codereview.chromium.org/596053002/diff/160001/src/gpu/GrDistanceFieldTextContext.cpp File src/gpu/GrDistanceFieldTextContext.cpp (right): https://codereview.chromium.org/596053002/diff/160001/src/gpu/GrDistanceFieldTextContext.cpp#newcode20 src/gpu/GrDistanceFieldTextContext.cpp:20: #include "SkDistanceFieldGen.h" out of order ? https://codereview.chromium.org/596053002/diff/160001/src/gpu/GrSurfacePriv.h File src/gpu/GrSurfacePriv.h ...
6 years, 2 months ago (2014-09-29 19:22:00 UTC) #12
bsalomon
https://codereview.chromium.org/596053002/diff/160001/src/gpu/GrDistanceFieldTextContext.cpp File src/gpu/GrDistanceFieldTextContext.cpp (right): https://codereview.chromium.org/596053002/diff/160001/src/gpu/GrDistanceFieldTextContext.cpp#newcode20 src/gpu/GrDistanceFieldTextContext.cpp:20: #include "SkDistanceFieldGen.h" On 2014/09/29 19:21:59, robertphillips wrote: > out ...
6 years, 2 months ago (2014-09-29 19:46:29 UTC) #13
robertphillips
lgtm + a nit https://codereview.chromium.org/596053002/diff/180001/src/gpu/GrTexture.cpp File src/gpu/GrTexture.cpp (right): https://codereview.chromium.org/596053002/diff/180001/src/gpu/GrTexture.cpp#newcode47 src/gpu/GrTexture.cpp:47: if (kValid_MipMapsStatus == fMipMapsStatus) { ...
6 years, 2 months ago (2014-09-29 20:01:35 UTC) #14
bsalomon
https://codereview.chromium.org/596053002/diff/180001/src/gpu/GrTexture.cpp File src/gpu/GrTexture.cpp (right): https://codereview.chromium.org/596053002/diff/180001/src/gpu/GrTexture.cpp#newcode47 src/gpu/GrTexture.cpp:47: if (kValid_MipMapsStatus == fMipMapsStatus) { On 2014/09/29 20:01:34, robertphillips ...
6 years, 2 months ago (2014-09-29 20:03:05 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/596053002/200001
6 years, 2 months ago (2014-09-29 20:08:54 UTC) #17
commit-bot: I haz the power
Failed to apply patch for src/gpu/GrContext.cpp: While running git apply --index -3 -p1; error: patch ...
6 years, 2 months ago (2014-09-29 20:09:03 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/596053002/220001
6 years, 2 months ago (2014-09-29 20:15:05 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Android-Trybot on tryserver.skia (http://108.170.220.76:10117/builders/Build-Ubuntu13.10-GCC4.8-Arm7-Debug-Android-Trybot/builds/1625)
6 years, 2 months ago (2014-09-29 20:18:26 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/596053002/240001
6 years, 2 months ago (2014-09-29 21:07:06 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/596053002/260001
6 years, 2 months ago (2014-09-29 21:12:07 UTC) #28
commit-bot: I haz the power
Committed patchset #9 (id:260001) as c0eb9b9818462471f5fc1c47fa549c6052d8bbae
6 years, 2 months ago (2014-09-29 21:20:15 UTC) #29
robertphillips
A revert of this CL (patchset #9 id:260001) has been created in https://codereview.chromium.org/618733002/ by robertphillips@google.com. ...
6 years, 2 months ago (2014-09-30 13:57:11 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/596053002/280001
6 years, 2 months ago (2014-09-30 19:05:25 UTC) #32
commit-bot: I haz the power
6 years, 2 months ago (2014-09-30 19:18:48 UTC) #33
Message was sent while issue was closed.
Committed patchset #10 (id:280001) as afbf2d6273cd22c683f20a7e5773843876af3085

Powered by Google App Engine
This is Rietveld 408576698