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

Issue 14860016: Implement OES_texture_float_linear and OES_texture_half_float_linear extensions in WebGL. (Closed)

Created:
7 years, 7 months ago by Jun Jiang
Modified:
7 years, 7 months ago
CC:
blink-reviews, jamesr, jsbell+bindings_chromium.org, eae+blinkwatch, abarth-chromium, danakj, Rik, adamk+blink_chromium.org, haraken, Stephen Chennney, Nate Chapin, jeez, pdr.
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Implement OES_texture_float_linear and OES_texture_half_float_linear extensions in WebGL. BUG=238237 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=150722

Patch Set 1 #

Total comments: 15

Patch Set 2 : Move the check into WebGLTexture and refined the test cases #

Patch Set 3 : #

Total comments: 4

Patch Set 4 : #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+326 lines, -98 lines) Patch
A + LayoutTests/webgl/conformance/extensions/oes-texture-float-linear.html View 1 chunk +3 lines, -3 lines 0 comments Download
A + LayoutTests/webgl/conformance/extensions/oes-texture-float-linear-expected.txt View 1 chunk +1 line, -1 line 0 comments Download
A + LayoutTests/webgl/conformance/extensions/oes-texture-half-float-linear.html View 1 chunk +3 lines, -3 lines 0 comments Download
A + LayoutTests/webgl/conformance/extensions/oes-texture-half-float-linear-expected.txt View 1 chunk +1 line, -1 line 0 comments Download
A + LayoutTests/webgl/resources/webgl_test_files/conformance/extensions/oes-texture-float-linear.html View 1 1 chunk +7 lines, -13 lines 0 comments Download
A + LayoutTests/webgl/resources/webgl_test_files/conformance/extensions/oes-texture-half-float-linear.html View 1 1 chunk +7 lines, -11 lines 0 comments Download
A LayoutTests/webgl/resources/webgl_test_files/conformance/resources/oes-texture-float-and-half-float-linear.js View 1 2 1 chunk +173 lines, -0 lines 0 comments Download
M Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp View 2 chunks +10 lines, -0 lines 0 comments Download
M Source/core/core.gypi View 1 2 chunks +6 lines, -0 lines 0 comments Download
A + Source/core/html/canvas/OESTextureFloatLinear.h View 1 chunk +8 lines, -8 lines 0 comments Download
A + Source/core/html/canvas/OESTextureFloatLinear.cpp View 1 chunk +13 lines, -12 lines 0 comments Download
A + Source/core/html/canvas/OESTextureFloatLinear.idl View 1 chunk +1 line, -1 line 0 comments Download
A + Source/core/html/canvas/OESTextureHalfFloatLinear.h View 1 chunk +8 lines, -8 lines 0 comments Download
A + Source/core/html/canvas/OESTextureHalfFloatLinear.cpp View 1 chunk +12 lines, -14 lines 0 comments Download
A + Source/core/html/canvas/OESTextureHalfFloatLinear.idl View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/canvas/WebGLExtension.h View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/html/canvas/WebGLRenderingContext.h View 1 3 chunks +5 lines, -2 lines 0 comments Download
M Source/core/html/canvas/WebGLRenderingContext.cpp View 1 9 chunks +23 lines, -17 lines 0 comments Download
M Source/core/html/canvas/WebGLTexture.h View 1 2 3 3 chunks +8 lines, -1 line 0 comments Download
M Source/core/html/canvas/WebGLTexture.cpp View 1 2 3 3 chunks +32 lines, -2 lines 1 comment Download
M Source/core/platform/graphics/Extensions3D.h View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 18 (0 generated)
Jun Jiang
Tried and verified on Windows and Linux(with patches to enable HALF_FLOAT for desktop GL).
7 years, 7 months ago (2013-05-10 11:49:58 UTC) #1
junj
On 2013/05/10 11:49:58, Jun Jiang wrote: > Tried and verified on Windows and Linux(with patches ...
7 years, 7 months ago (2013-05-10 15:14:11 UTC) #2
junj
On 2013/05/10 15:14:11, junj wrote: > On 2013/05/10 11:49:58, Jun Jiang wrote: > > Tried ...
7 years, 7 months ago (2013-05-11 03:06:02 UTC) #3
junj
On 2013/05/11 03:06:02, junj wrote: > On 2013/05/10 15:14:11, junj wrote: > > On 2013/05/10 ...
7 years, 7 months ago (2013-05-13 05:00:41 UTC) #4
Ken Russell (switch to Gerrit)
Hi Jun, Thanks for your work on this. Before proceeding with this patch, please update ...
7 years, 7 months ago (2013-05-13 20:00:35 UTC) #5
Jun Jiang
Hi, Kenneth. Thanks for your comments. For the test case, I will re-factor the tests ...
7 years, 7 months ago (2013-05-14 02:03:59 UTC) #6
Jun Jiang
On 2013/05/14 02:03:59, Jun Jiang wrote: > Hi, Kenneth. Thanks for your comments. For the ...
7 years, 7 months ago (2013-05-14 15:06:46 UTC) #7
Jun Jiang
On 2013/05/14 15:06:46, Jun Jiang wrote: > On 2013/05/14 02:03:59, Jun Jiang wrote: > > ...
7 years, 7 months ago (2013-05-15 02:01:47 UTC) #8
Ken Russell (switch to Gerrit)
This looks much better. LGTM if the following changes are made. https://codereview.chromium.org/14860016/diff/23001/Source/core/html/canvas/WebGLTexture.cpp File Source/core/html/canvas/WebGLTexture.cpp (right): ...
7 years, 7 months ago (2013-05-15 23:25:10 UTC) #9
Jun Jiang
Hi, Kenneth. Thanks for your comments. A refined patch is uploaded. https://codereview.chromium.org/14860016/diff/23001/Source/core/html/canvas/WebGLTexture.cpp File Source/core/html/canvas/WebGLTexture.cpp (right): ...
7 years, 7 months ago (2013-05-16 02:25:43 UTC) #10
Jun Jiang
On 2013/05/16 02:25:43, Jun Jiang wrote: > Hi, Kenneth. Thanks for your comments. A refined ...
7 years, 7 months ago (2013-05-16 02:27:27 UTC) #11
Ken Russell (switch to Gerrit)
Thanks for the updates. LGTM. Submitting to CQ. https://codereview.chromium.org/14860016/diff/32001/Source/core/html/canvas/WebGLTexture.cpp File Source/core/html/canvas/WebGLTexture.cpp (right): https://codereview.chromium.org/14860016/diff/32001/Source/core/html/canvas/WebGLTexture.cpp#newcode361 Source/core/html/canvas/WebGLTexture.cpp:361: } ...
7 years, 7 months ago (2013-05-20 19:46:45 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jun.a.jiang@intel.com/14860016/32001
7 years, 7 months ago (2013-05-20 19:46:55 UTC) #13
commit-bot: I haz the power
Retried try job too often on blink_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=blink_presubmit&number=160
7 years, 7 months ago (2013-05-20 19:56:08 UTC) #14
Ken Russell (switch to Gerrit)
dglazkov, esprehn, japhet: OWNERS review of bindings/v8/custom/ please.
7 years, 7 months ago (2013-05-20 21:40:06 UTC) #15
dglazkov
lgtm
7 years, 7 months ago (2013-05-20 21:43:53 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jun.a.jiang@intel.com/14860016/32001
7 years, 7 months ago (2013-05-20 23:02:36 UTC) #17
commit-bot: I haz the power
7 years, 7 months ago (2013-05-21 00:33:06 UTC) #18
Message was sent while issue was closed.
Change committed as 150722

Powered by Google App Engine
This is Rietveld 408576698