-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wasm64] Run all browser tests in 4gb mode #21334
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1731,7 +1731,8 @@ for (/**@suppress{duplicate}*/var i = 0; i < {{{ GL_POOL_TEMP_BUFFERS_SIZE }}}; | |
GLctx.readPixels(x, y, width, height, format, type, pixels); | ||
} else { | ||
var heap = heapObjectForWebGLType(type); | ||
GLctx.readPixels(x, y, width, height, format, type, heap, toTypedArrayIndex(pixels, heap)); | ||
var target = toTypedArrayIndex(pixels, heap); | ||
GLctx.readPixels(x, y, width, height, format, type, heap, target); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this just a style change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it was just something I did to aid debugging. I think its useful enough and I think closure takes care of inlining this kind of stuff. |
||
} | ||
return; | ||
} | ||
|
@@ -3310,7 +3311,7 @@ for (/**@suppress{duplicate}*/var i = 0; i < {{{ GL_POOL_TEMP_BUFFERS_SIZE }}}; | |
if (length) {{{ makeSetValue('length', '0', 'numBytesWrittenExclNull', 'i32') }}}; | ||
}, | ||
|
||
glGetShaderiv : (shader, pname, p) => { | ||
glGetShaderiv: (shader, pname, p) => { | ||
if (!p) { | ||
// GLES2 specification does not specify how to behave if p is a null | ||
// pointer. Since calling this function does not make sense if p == null, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Long-term, what are we thinking for CI times? These browser tests are unfortunately slow to run... but it is important to do so of course.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Long term the plan is to move these variant tests onto the FYI / testsuite bot.