Greggman
Greggman
I was looking for a solution where if I search for 2 or more words, items with those exact 2 words appear before items without those 2 words. Items with...
I'm not sure if you want this or not but it will make the icon responsive to the user's color preference. I chose `#DDD` instead of `#FFF` because if the...
It would be nice if ShareX had a way to losslessly capture HDR screenshots. As it is ShareX converts them from 10bits per channel to 8bits per channel, making it...
### Describe the Bug if I go to the docs/guide like say "Hello, world" https://rustwasm.github.io/docs/wasm-bindgen/examples/hello-world.html And click the run button ▶, I get ``` Compiling playground v0.0.1 (/playground) error[E0433]: failed...
### Describe the bug When building with typescript, typescript complains there are circular dependencies. It's only a warning but nearly all typescript features are only warnings. This issue makes it...
I'm new to tweakpane so forgive me if this is already covered. I wanted to make a simple dropdown and wanted to do is give a list of strings ```...
IIRC the spec says canvas textures are destroyed when the current JavaScript event exits This seems problematic for wasm projects. wasm appears to be getting [JSPI support](https://github.com/WebAssembly/js-promise-integration/blob/main/proposals/js-promise-integration/Overview.md) as a way...
Various values are reflected in various GPU objects. For example, GPUTexture has width, height, depthOrArrayLayers, format, sampleCount, usage, etc... All of this turns out to be extremely useful. Missing from...
In WebGPU you can create a texture and request compatible viewFormats. ```js const tex = device.createTexture({ ... format: 'rgba8unorm', viewFormats: ['rgba8unorm', 'rgba8norm-srgb'], }); ``` OpenGL ES 3.1 has no such...
WebGL2 supports these sample counts. https://web3dsurvey.com/webgl2/parameters/MAX_SAMPLES For parity with WebGL2, should WebGPU support these as well? In V1? (sorry if this is a dupe. I searched issues for sampleCount, count,...