Myles C. Maxfield
Myles C. Maxfield
Inside the antlr4 C++ runtime, antlr4-common.h includes `template using Ref = std::shared_ptr;` outside of any namespaces. This makes it difficult to integrate into existing C++ projects which already are `using...
The check in https://github.com/xtermjs/xterm.js/blob/master/src/common/Platform.ts#L21: ``` export const isSafari = /^((?!chrome|android).)*safari/i.test(userAgent); ``` doesn't seem to catch [WKWebView](https://developer.apple.com/documentation/webkit/wkwebview?language=objc), which is the browser engine powering Safari. Safari's user agent string (on an iPad)...
#### 2691d8a684ca5bdad0f8497c985cb4478cf0f1f4 [WebGPU] Make the first few buffer mapping tests pass https://bugs.webkit.org/show_bug.cgi?id=240220 <rdar://93318423 > Reviewed by NOBODY (OOPS!). Make getMappedRange return a ExceptionOr< > type. Also, code outside WebGPU.framework needs...
- [✅] Required: Issue filed: https://unicode-org.atlassian.net/browse/ICU-21893 - [✅] Required: The PR title must be prefixed with a JIRA Issue number. - [✅] Required: The PR description must include the link...
## Background Today, regarding accessing "invalid memory references," [our spec says](https://gpuweb.github.io/gpuweb/wgsl/#invalid-memory-reference): > If a reference or pointer access is out of bounds, an invalid memory reference is produced. [Loads](https://gpuweb.github.io/gpuweb/wgsl/#load-rule) from...
[Migrated from #3288] Videos can embed arbitrary ICC profile information within themselves to describe the colorspace their texels are in. ICC profiles are not Turing-complete, but are [arbitrarily complex](https://color.org/specification/ICC.1-2022-05.pdf) -...
Consider the following snippet of GLSL: ```GLSL void myFunction(inout int x, inout int y) { x = 17; } ... int a = 2; int b = 3; myFunction(a, b);...
Our spec [says](https://gpuweb.github.io/gpuweb/wgsl/#invalid-memory-reference): > If a reference or pointer access is out of bounds, an invalid memory reference is produced. [Loads](https://gpuweb.github.io/gpuweb/wgsl/#load-rule) from an invalid reference return one of: ... [Stores](https://gpuweb.github.io/gpuweb/wgsl/#statement-assignment)...
From https://gpuweb.github.io/gpuweb/#dom-gpudevice-createcomputepipelineasync: > When pipeline is ready to be used or has been made [invalid](https://gpuweb.github.io/gpuweb/#invalid), [resolve](https://webidl.spec.whatwg.org/#resolve) promise with pipeline. It seems like we should be rejecting the promise if the...
The [spec](https://gpuweb.github.io/gpuweb/#buffer-mapping) says: > Let p be a new [Promise](https://webidl.spec.whatwg.org/#idl-promise). > ... > Enqueue an operation on the default queue’s [Queue timeline](https://gpuweb.github.io/gpuweb/#queue-timeline) that will execute the following: > ... >...