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

Issue 12533007: Use vertex array objects on core profiles. (Closed)

Created:
7 years, 9 months ago by bsalomon
Modified:
7 years, 9 months ago
CC:
skia-review_googlegroups.com
Visibility:
Public.

Description

Use vertex array objects on core profiles. Committed: https://code.google.com/p/skia/source/detail?r=8024

Patch Set 1 #

Patch Set 2 : Use vertex array objects on core profiles. Default to core profiles on Mac and Windows if available… #

Patch Set 3 : #

Total comments: 9

Patch Set 4 : #

Patch Set 5 : #

Total comments: 14

Patch Set 6 : #

Patch Set 7 : Use vertex array objects on core profiles. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+471 lines, -257 lines) Patch
M gyp/gpu.gypi View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M src/gpu/gl/GrGLBufferImpl.cpp View 1 2 3 4 5 6 1 chunk +2 lines, -3 lines 0 comments Download
M src/gpu/gl/GrGLShaderBuilder.cpp View 1 2 3 4 5 6 1 chunk +3 lines, -1 line 0 comments Download
A src/gpu/gl/GrGLVertexArray.h View 1 2 3 4 5 1 chunk +147 lines, -0 lines 0 comments Download
A src/gpu/gl/GrGLVertexArray.cpp View 1 2 3 4 5 1 chunk +123 lines, -0 lines 0 comments Download
M src/gpu/gl/GrGpuGL.h View 1 2 3 4 5 6 4 chunks +97 lines, -114 lines 2 comments Download
M src/gpu/gl/GrGpuGL.cpp View 1 2 3 4 5 6 8 chunks +32 lines, -122 lines 0 comments Download
M src/gpu/gl/GrGpuGL_program.cpp View 1 2 3 4 5 6 2 chunks +61 lines, -14 lines 0 comments Download
M src/gpu/gl/debug/GrGLCreateDebugInterface.cpp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/gl/mac/SkNativeGLContext_mac.cpp View 1 2 3 4 5 6 2 chunks +2 lines, -1 line 0 comments Download
M src/gpu/gl/win/SkNativeGLContext_win.cpp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 12 (0 generated)
bsalomon
Use vertex array objects on core profiles. Default to core profiles on Mac and Windows ...
7 years, 9 months ago (2013-03-06 15:20:59 UTC) #1
bsalomon
7 years, 9 months ago (2013-03-06 15:35:31 UTC) #2
robertphillips
First pass - I need to look through it again. https://codereview.chromium.org/12533007/diff/13001/src/gpu/gl/GrGLVertexArray.h File src/gpu/gl/GrGLVertexArray.h (right): https://codereview.chromium.org/12533007/diff/13001/src/gpu/gl/GrGLVertexArray.h#newcode96 ...
7 years, 9 months ago (2013-03-06 16:14:20 UTC) #3
bsalomon
https://codereview.chromium.org/12533007/diff/13001/src/gpu/gl/GrGLVertexArray.h File src/gpu/gl/GrGLVertexArray.h (right): https://codereview.chromium.org/12533007/diff/13001/src/gpu/gl/GrGLVertexArray.h#newcode96 src/gpu/gl/GrGLVertexArray.h:96: On 2013/03/06 16:14:20, robertphillips wrote: > // comment? Done. ...
7 years, 9 months ago (2013-03-06 16:23:26 UTC) #4
jvanverth1
Just one comment so far. https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.h File src/gpu/gl/GrGLVertexArray.h (right): https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.h#newcode77 src/gpu/gl/GrGLVertexArray.h:77: struct AttribArray { I ...
7 years, 9 months ago (2013-03-06 17:50:12 UTC) #5
bsalomon
https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.h File src/gpu/gl/GrGLVertexArray.h (right): https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.h#newcode77 src/gpu/gl/GrGLVertexArray.h:77: struct AttribArray { On 2013/03/06 17:50:12, JimVV wrote: > ...
7 years, 9 months ago (2013-03-06 18:31:07 UTC) #6
robertphillips
lgtm modulo a bunch of questions https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.cpp File src/gpu/gl/GrGLVertexArray.cpp (right): https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.cpp#newcode57 src/gpu/gl/GrGLVertexArray.cpp:57: GR_GL_CALL(gpu->glInterface(), DisableVertexAttribArray(i)); is ...
7 years, 9 months ago (2013-03-06 21:00:16 UTC) #7
bsalomon
https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.cpp File src/gpu/gl/GrGLVertexArray.cpp (right): https://codereview.chromium.org/12533007/diff/20003/src/gpu/gl/GrGLVertexArray.cpp#newcode57 src/gpu/gl/GrGLVertexArray.cpp:57: GR_GL_CALL(gpu->glInterface(), DisableVertexAttribArray(i)); On 2013/03/06 21:00:16, robertphillips wrote: > is ...
7 years, 9 months ago (2013-03-06 21:32:53 UTC) #8
bsalomon
Use vertex array objects on core profiles.
7 years, 9 months ago (2013-03-07 16:04:45 UTC) #9
jvanverth1
LGTM + one minor nit https://codereview.chromium.org/12533007/diff/29001/src/gpu/gl/GrGpuGL.h File src/gpu/gl/GrGpuGL.h (right): https://codereview.chromium.org/12533007/diff/29001/src/gpu/gl/GrGpuGL.h#newcode78 src/gpu/gl/GrGpuGL.h:78: void notifyVertexArrayDelete(GrGLuint id) { ...
7 years, 9 months ago (2013-03-07 16:17:44 UTC) #10
bsalomon
https://codereview.chromium.org/12533007/diff/29001/src/gpu/gl/GrGpuGL.h File src/gpu/gl/GrGpuGL.h (right): https://codereview.chromium.org/12533007/diff/29001/src/gpu/gl/GrGpuGL.h#newcode78 src/gpu/gl/GrGpuGL.h:78: void notifyVertexArrayDelete(GrGLuint id) { On 2013/03/07 16:17:44, JimVV wrote: ...
7 years, 9 months ago (2013-03-07 16:25:07 UTC) #11
bsalomon
7 years, 9 months ago (2013-03-07 19:09:21 UTC) #12
Message was sent while issue was closed.
Committed patchset #7 manually as r8024 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698