Swoorup Joshi

Results 79 issues of Swoorup Joshi

### Describe the bug Have discussed sometime ago but putting in here for brevity. I have candles data whose bars are 1s width. It looks like even specifying 1000 ms...

enhancement

Stabilization is not that far of: https://github.com/rust-lang/rust/issues/106655#issuecomment-1902272292 Probably hold this off until then...

We should probably provide a `min_binding_size` for uniform buffer when generating the Bind Group Layout Descriptor. ```rust wgpu::BindGroupLayoutEntry { binding: 0, visibility: wgpu::ShaderStages::VERTEX | wgpu::ShaderStages::FRAGMENT, ty: wgpu::BindingType::Buffer { ty: wgpu::BufferBindingType::Uniform,...

`wgsl-bindgen` is able to currently generate extra bind group layout entries that can be customized to user's liking which is possibly different to that of Wgpu api. See https://github.com/Swoorup/wgsl-bindgen/blob/main/wgsl_bindgen/src/bindgen/options/bindings.rs Would...

There is an hastily written code [here](https://github.com/Swoorup/wgsl-bindgen/blob/main/wgsl_bindgen/src/naga_util/module_to_source.rs#L8-L11) to convert naga module to strings, which contains wgsl_minifier. It should be wired up as a `WgslBindgenOption` instead. Currently the problem is for...

1. Strong types for duck db vectors. 2. Ensure correct size are reserved before writing to duckdb vectors. 3. Introduce `DataChunkHandle` for manipulating data chunks, and wrap unsafe functions at...

Changes Requested

Is it possible to add functionality which changes the generic parameter of the struct? For example, ```rust #[derive(Default, Setters, Debug, PartialEq, Eq)] struct GenericStruct, b: Option

enhancement

Is it possible to determine the visibility within `wgpu::BindGroupLayoutEntry`? ie automatically set to either `VERTEX`, `FRAGMENT`, `COMPUTE` or `VERTEX_FRAGMENT`.

On some occasion, instead of the default option which makes all texture binding to be filterable for `texture_2d`, we might not want them to filterable in some odd cases. ```rust...

Is it possible to make `bevy_render` so this crate can work with custom renderer?