bevy/crates/bevy_render/src
TehPers deb9f23667 Implement Byteable and RenderResource for [T; N] (#1872)
Implements `Byteable` and `RenderResource` for any array containing `Byteable` elements. This allows `RenderResources` to be implemented on structs with arbitrarily-sized arrays, among other things:

```rust
#[derive(RenderResources, TypeUuid)]
#[uuid = "2733ff34-8f95-459f-bf04-3274e686ac5f"]
struct Foo {
    buffer: [i32; 256],
}
```
2021-04-14 22:20:25 +00:00
..
camera Moved events to ECS (#1823) 2021-04-13 20:36:37 +00:00
mesh Fix IcoSphere UV coordinates (#1871) 2021-04-14 22:20:24 +00:00
pass Update to wgpu-rs 0.7 (#542) 2021-01-31 20:06:42 -08:00
pipeline Error message improvements for shader compilation/gltf loading (#1786) 2021-04-13 02:56:30 +00:00
render_graph make pbr shader std140 compatible (#1798) 2021-04-03 23:30:28 +00:00
renderer Implement Byteable and RenderResource for [T; N] (#1872) 2021-04-14 22:20:25 +00:00
shader Error message improvements for shader compilation/gltf loading (#1786) 2021-04-13 02:56:30 +00:00
texture Moved events to ECS (#1823) 2021-04-13 20:36:37 +00:00
wireframe Remove remaining camerapos bindings (#1708) 2021-03-22 18:10:35 +00:00
color.rs color spaces and representation (#1572) 2021-03-17 23:59:51 +00:00
colorspace.rs color spaces and representation (#1572) 2021-03-17 23:59:51 +00:00
draw.rs Frustum Culling (for Sprites) (#1492) 2021-03-24 21:29:53 +00:00
entity.rs Bevy ECS V2 (#1525) 2021-03-05 07:54:35 +00:00
lib.rs Frustum Culling (for Sprites) (#1492) 2021-03-24 21:29:53 +00:00