Commit 9fedafaa authored by xidachen's avatar xidachen Committed by Commit bot

Remove the run time flag in tex(Sub)Image2D for ImageBitmap

At this moment, the texImage2D and texSubImage2D for ImageBitmap is still
hiding behind a RuntimeEnabled flag. Since ImageBitmap has been shipped:
https://codereview.chromium.org/1636633002/
We should remove this run time flag as well.

Review URL: https://codereview.chromium.org/1632853003

Cr-Commit-Position: refs/heads/master@{#371569}
parent b0091257
......@@ -631,7 +631,7 @@ typedef unrestricted float GLclampf;
[RaisesException] void texImage2D(
GLenum target, GLint level, GLint internalformat,
GLenum format, GLenum type, HTMLVideoElement video);
[RaisesException, RuntimeEnabled=ExperimentalCanvasFeatures] void texImage2D(
[RaisesException] void texImage2D(
GLenum target, GLint level, GLint internalformat,
GLenum format, GLenum type, ImageBitmap bitmap);
......@@ -651,7 +651,7 @@ typedef unrestricted float GLclampf;
[RaisesException] void texSubImage2D(
GLenum target, GLint level, GLint xoffset, GLint yoffset,
GLenum format, GLenum type, HTMLVideoElement video);
[RaisesException, RuntimeEnabled=ExperimentalCanvasFeatures] void texSubImage2D(
[RaisesException] void texSubImage2D(
GLenum target, GLint level, GLint xoffset, GLint yoffset,
GLenum format, GLenum type, ImageBitmap bitmap);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment