Closed
Bug 1228488
Opened 9 years ago
Closed 9 years ago
Pass WEBLG2 gl-enum-test test
Categories
(Core :: Graphics: CanvasWebGL, defect)
Core
Graphics: CanvasWebGL
Tracking
()
RESOLVED
FIXED
mozilla45
Tracking | Status | |
---|---|---|
firefox45 | --- | fixed |
People
(Reporter: mtseng, Assigned: mtseng)
References
()
Details
(Whiteboard: [gfx-noted])
Attachments
(1 file)
1.00 KB,
patch
|
jgilbert
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Assignee | ||
Comment 1•9 years ago
|
||
Attachment #8692822 -
Flags: review?(jgilbert)
Comment 2•9 years ago
|
||
Comment on attachment 8692822 [details] [diff] [review]
Return INVALID_ENUM for GL_UNIFORM_NAME_LENGTH.
Review of attachment 8692822 [details] [diff] [review]:
-----------------------------------------------------------------
::: dom/canvas/WebGL2ContextUniforms.cpp
@@ +325,5 @@
> if (IsContextLost())
> return;
>
> + if (pname == LOCAL_GL_UNIFORM_NAME_LENGTH)
> + return ErrorInvalidEnumInfo("getActiveUniforms: pname", pname);
Please write this out as:
if (...) {
ErrorFoo(...);
return;
}
Attachment #8692822 -
Flags: review?(jgilbert) → review+
Comment 5•9 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox45:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla45
You need to log in
before you can comment on or make changes to this bug.
Description
•