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

Issue 1451683002: Initial version of external_oes texture support and unit test (Closed)

Created:
5 years, 1 month ago by bsalomon
Modified:
5 years, 1 month ago
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@target
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : more #

Patch Set 3 : more #

Patch Set 4 : rebase #

Patch Set 5 : more #

Patch Set 6 : hook up shaders #

Patch Set 7 : more #

Patch Set 8 : more #

Patch Set 9 : update #

Patch Set 10 : angle cleanup #

Total comments: 23

Patch Set 11 : init copy program ids to zero #

Patch Set 12 : update #

Total comments: 4

Patch Set 13 : A RT! #

Patch Set 14 : address comments #

Patch Set 15 : fix test for es3, allow more bits for texture keys #

Patch Set 16 : fix version check #

Patch Set 17 : again #

Unified diffs Side-by-side diffs Delta from patch set Stats (+627 lines, -158 lines) Patch
M include/gpu/GrTypesPriv.h View 1 2 3 4 5 4 chunks +6 lines, -3 lines 0 comments Download
M include/gpu/gl/GrGLFunctions.h View 1 2 3 4 5 6 7 2 chunks +3 lines, -2 lines 0 comments Download
M include/gpu/gl/GrGLInterface.h View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M include/gpu/gl/GrGLTypes.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M include/gpu/gl/SkGLContext.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +18 lines, -1 line 0 comments Download
M include/gpu/gl/angle/SkANGLEGLContext.h View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -0 lines 0 comments Download
M src/gpu/GrResourceProvider.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/gl/GrGLAssembleInterface.cpp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/gl/GrGLCaps.h View 1 2 3 4 5 6 7 2 chunks +4 lines, -0 lines 0 comments Download
M src/gpu/gl/GrGLCaps.cpp View 1 2 3 4 5 6 7 3 chunks +20 lines, -1 line 0 comments Download
M src/gpu/gl/GrGLDefines.h View 1 2 1 chunk +10 lines, -0 lines 0 comments Download
M src/gpu/gl/GrGLGpu.h View 1 2 3 4 5 2 chunks +12 lines, -3 lines 0 comments Download
M src/gpu/gl/GrGLGpu.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 15 chunks +170 lines, -102 lines 0 comments Download
M src/gpu/gl/GrGLInterface.cpp View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M src/gpu/gl/GrGLProgramDataManager.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/gl/GrGLProgramDesc.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 6 chunks +19 lines, -22 lines 0 comments Download
M src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp View 1 2 2 chunks +24 lines, -9 lines 0 comments Download
M src/gpu/gl/angle/SkANGLEGLContext.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +62 lines, -4 lines 0 comments Download
M src/gpu/gl/builders/GrGLProgramBuilder.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +19 lines, -1 line 0 comments Download
M src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp View 1 2 1 chunk +9 lines, -1 line 0 comments Download
M src/gpu/gl/egl/SkCreatePlatformGLContext_egl.cpp View 1 2 3 4 5 6 3 chunks +59 lines, -0 lines 0 comments Download
M src/gpu/glsl/GrGLSL.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M src/gpu/glsl/GrGLSLCaps.h View 1 2 3 4 5 2 chunks +5 lines, -0 lines 0 comments Download
M src/gpu/glsl/GrGLSLCaps.cpp View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/gpu/glsl/GrGLSLFragmentShaderBuilder.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
A tests/EGLImageTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +169 lines, -0 lines 0 comments Download

Messages

Total messages: 23 (9 generated)
bsalomon
https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/GrGLInterface.h File include/gpu/gl/GrGLInterface.h (right): https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/GrGLInterface.h#newcode501 include/gpu/gl/GrGLInterface.h:501: GLPtr<GrEGLCreateImageProc> fEGLCreateImage; Decided egl funcs should be prefixed since ...
5 years, 1 month ago (2015-11-20 19:04:25 UTC) #3
egdaniel
havne't gone through test yet, but some initial comments https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/SkGLContext.h File include/gpu/gl/SkGLContext.h (right): https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/SkGLContext.h#newcode76 include/gpu/gl/SkGLContext.h:76: ...
5 years, 1 month ago (2015-11-20 21:57:43 UTC) #5
joshualitt
some nits and comments, feel free to ignore. Looks sensible. https://codereview.chromium.org/1451683002/diff/180001/src/gpu/gl/GrGLGpu.cpp File src/gpu/gl/GrGLGpu.cpp (right): https://codereview.chromium.org/1451683002/diff/180001/src/gpu/gl/GrGLGpu.cpp#newcode2781 ...
5 years, 1 month ago (2015-11-20 21:58:39 UTC) #6
bsalomon
https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/SkGLContext.h File include/gpu/gl/SkGLContext.h (right): https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/SkGLContext.h#newcode76 include/gpu/gl/SkGLContext.h:76: virtual SkGLContext* createNew() const { return nullptr; } On ...
5 years, 1 month ago (2015-11-20 22:43:55 UTC) #7
joshualitt
On 2015/11/20 22:43:55, bsalomon wrote: > https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/SkGLContext.h > File include/gpu/gl/SkGLContext.h (right): > > https://codereview.chromium.org/1451683002/diff/180001/include/gpu/gl/SkGLContext.h#newcode76 > ...
5 years, 1 month ago (2015-11-20 22:47:10 UTC) #8
robertphillips
lgtm + nits https://codereview.chromium.org/1451683002/diff/220001/src/gpu/gl/GrGLGpu.cpp File src/gpu/gl/GrGLGpu.cpp (right): https://codereview.chromium.org/1451683002/diff/220001/src/gpu/gl/GrGLGpu.cpp#newcode447 src/gpu/gl/GrGLGpu.cpp:447: #endif yodify ? https://codereview.chromium.org/1451683002/diff/220001/src/gpu/gl/angle/SkANGLEGLContext.cpp File src/gpu/gl/angle/SkANGLEGLContext.cpp ...
5 years, 1 month ago (2015-11-20 23:09:02 UTC) #10
egdaniel
one more nit then lgtm https://codereview.chromium.org/1451683002/diff/180001/src/gpu/gl/angle/SkANGLEGLContext.cpp File src/gpu/gl/angle/SkANGLEGLContext.cpp (right): https://codereview.chromium.org/1451683002/diff/180001/src/gpu/gl/angle/SkANGLEGLContext.cpp#newcode183 src/gpu/gl/angle/SkANGLEGLContext.cpp:183: return SkANGLEGLContext::Create(this->gl()->fStandard, fIsGLBackend); On ...
5 years, 1 month ago (2015-11-21 01:09:34 UTC) #11
egdaniel
one more nit then lgtm
5 years, 1 month ago (2015-11-21 01:09:34 UTC) #12
bsalomon
https://codereview.chromium.org/1451683002/diff/180001/src/gpu/gl/angle/SkANGLEGLContext.cpp File src/gpu/gl/angle/SkANGLEGLContext.cpp (right): https://codereview.chromium.org/1451683002/diff/180001/src/gpu/gl/angle/SkANGLEGLContext.cpp#newcode183 src/gpu/gl/angle/SkANGLEGLContext.cpp:183: return SkANGLEGLContext::Create(this->gl()->fStandard, fIsGLBackend); On 2015/11/21 01:09:34, egdaniel wrote: > ...
5 years, 1 month ago (2015-11-21 01:50:32 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1451683002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1451683002/260001
5 years, 1 month ago (2015-11-21 02:00:50 UTC) #16
commit-bot: I haz the power
Committed patchset #14 (id:260001) as https://skia.googlesource.com/skia/+/27a048700778d4cebfc23301d1780649791b0e03
5 years, 1 month ago (2015-11-21 03:34:40 UTC) #17
bsalomon
A revert of this CL (patchset #14 id:260001) has been created in https://codereview.chromium.org/1459323004/ by bsalomon@google.com. ...
5 years, 1 month ago (2015-11-21 04:24:14 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1451683002/320001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1451683002/320001
5 years, 1 month ago (2015-11-22 22:38:51 UTC) #22
commit-bot: I haz the power
5 years, 1 month ago (2015-11-22 22:51:03 UTC) #23
Message was sent while issue was closed.
Committed patchset #17 (id:320001) as
https://skia.googlesource.com/skia/+/7ea33f5e1ae9eb1fb1e7377d6edf6acdcf71d103

Powered by Google App Engine
This is Rietveld 408576698