Closed
Bug 623404
Opened 15 years ago
Closed 15 years ago
even more misc webgl test fixes!
Categories
(Core :: Graphics: CanvasWebGL, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: vlad, Assigned: vlad)
Details
Attachments
(1 file)
|
2.52 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
Some things (correctly, grumble) changed from INVALID_OPERATION -> INVALID_VALUE...
Attachment #501518 -
Flags: review?(bjacob)
Comment 1•15 years ago
|
||
Comment on attachment 501518 [details] [diff] [review]
error fixes
>- if (stride & requiredAlignmentMask) {
>+ if (stride && stride & requiredAlignmentMask) {
> return ErrorInvalidOperation("VertexAttribPointer: stride doesn't satisfy the alignment "
> "requirement of given type");
> }
Why is that needed? As far as I can see this doesn't make any difference?
Comment 2•15 years ago
|
||
Attachment #501518 -
Flags: review?(bjacob) → review+
| Assignee | ||
Comment 3•15 years ago
|
||
whoops, yes, leftover that I didn't clean up. No need for stride &&.
| Assignee | ||
Comment 4•15 years ago
|
||
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•