This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2026-01-15T01:40:59.020449Z ERROR wgpu_hal::vulkan::instance: VALIDATION [VUID-vkCmdClearColorImage-image-00002 (0x636f8691)] | |
| vkCmdClearColorImage(): image (VkImage 0x5b6ab000005b6ab[main_texture_b]) was created with usage VK_IMAGE_USAGE_TRANSFER_SRC_BIT|VK_IMAGE_USAGE_SAMPLED_BIT|VK_IMAGE_USAGE_STORAGE_BIT|VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT (missing VK_IMAGE_USAGE_TRANSFER_DST_BIT). | |
| The Vulkan spec states: image must have been created with VK_IMAGE_USAGE_TRANSFER_DST_BIT usage flag (https://vulkan.lunarg.com/doc/view/1.4.328.1/windows/antora/spec/latest/chapters/clears.html#VUID-vkCmdClearColorImage-image-00002) | |
| 2026-01-15T01:40:59.020612Z ERROR wgpu_hal::vulkan::instance: objects: (type: COMMAND_BUFFER, hndl: 0x26e6b2c7f60, name: dlss_super_resolution), (type: IMAGE, hndl: 0x5b6ab000005b6ab, name: main_texture_b) | |
| 2026-01-15T01:40:59.024868Z ERROR wgpu_hal::vulkan::instance: VALIDATION [SYNC-HAZARD-WRITE-AFTER-WRITE (0x5c0ec5d6)] | |
| vkQueueSubmit(): WRITE_AFTER_WRITE hazard detected. vkCmdCle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Running benches\bevy_tasks.rs (target\release\deps\bevy_tasks-bd20a9e64a1f7716.exe) | |
| Timer precision: 100 ns | |
| bevy_tasks fastest │ slowest │ median │ mean │ samples │ iters | |
| ╰─ overhead │ │ │ │ │ | |
| ├─ bevy_tasks │ │ │ │ │ | |
| │ ├─ 100 3.099 µs │ 53.69 µs │ 5.799 µs │ 7.456 µs │ 100 │ 100 | |
| │ ├─ 1000 7.799 µs │ 23.89 µs │ 10.74 µs │ 11.4 µs │ 100 │ 100 | |
| │ ├─ 10000 58.39 µs │ 163.4 µs │ 69.09 µs │ 71.41 µs │ 100 │ 100 | |
| │ ├─ 100000 592 µs │ 1.045 ms │ 863.3 µs │ 839.6 µs │ 100 │ 100 | |
| │ ├─ 1000000 7.767 ms │ 10.24 ms │ 9.316 ms │ 9.265 ms │ 100 │ 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Running benches/bevy_tasks.rs (/Users/chris/.cargo/build/14/a9a18fd32b02b8/release/deps/bevy_tasks-726478d67f5ce2d0) | |
| Timer precision: 41 ns | |
| bevy_tasks fastest │ slowest │ median │ mean │ samples │ iters | |
| ╰─ overhead │ │ │ │ │ | |
| ├─ bevy_tasks │ │ │ │ │ | |
| │ ├─ 100 3.957 µs │ 26.91 µs │ 4.145 µs │ 4.694 µs │ 100 │ 100 | |
| │ ├─ 1000 17.54 µs │ 54.7 µs │ 27.58 µs │ 29.44 µs │ 100 │ 100 | |
| │ ├─ 10000 118.7 µs │ 250.5 µs │ 166.3 µs │ 167.1 µs │ 100 │ 100 | |
| │ ├─ 100000 1.068 ms │ 1.722 ms │ 1.393 ms │ 1.406 ms │ 100 │ 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Compiling anyhow v1.0.100 | |
| Compiling env_filter v0.1.4 | |
| Compiling xshell-macros v0.2.7 | |
| Compiling regex-lite v0.1.8 | |
| Compiling env_logger v0.11.8 | |
| Compiling xshell v0.2.7 | |
| Compiling wgpu-xtask v0.1.0 (/Users/chris/github/gfx-rs/wgpu/xtask) | |
| Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.80s | |
| Running `target/debug/wgpu-xtask test` | |
| [INFO wgpu_xtask::test] Generating .gpuconfig file based on gpus on the system |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def process_graph [prefix: string; target: string] { | |
| ktx create --format R32G32B32A32_SFLOAT $'assets/raw_assets/($prefix)_base_color.exr' $'($target)/($prefix)_base_color.ktx2' | |
| ktx create --format R32G32B32A32_SFLOAT $'assets/raw_assets/($prefix)_normal_map.exr' $'($target)/($prefix)_normal_map.ktx2' | |
| ktx create --format R32G32B32A32_SFLOAT $'assets/raw_assets/($prefix)_metallic_roughness.exr' $'($target)/($prefix)_metallic_roughness.ktx2' | |
| oiiotool $'assets/raw_assets/($prefix)_depth_map.exr' -chnames R -o $'($target)/($prefix)_intermediate_depth_map.exr' | |
| ktx create --format R32_SFLOAT $'($target)/($prefix)_intermediate_depth_map.exr' $'($target)/($prefix)_depth_map.ktx2' | |
| } | |
| # convert the "processed_single" images into the "processed" directory | |
| # process_graph "floor_graph" "assets/processed-single" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2025-09-15T03:33:15.025472Z INFO prepass_extension: descriptor.label=Some("prepass_pipeline") | |
| 2025-09-15T03:33:15.025493Z INFO prepass_extension: descriptor.label=Some("opaque_mesh_pipeline") | |
| 2025-09-15T03:33:15.025507Z INFO prepass_extension: descriptor.label=Some("opaque_mesh_pipeline") frag_descriptor.shader_defs=[Bool("MESH_PIPELINE", true), Bool("VERTEX_OUTPUT_INSTANCE_INDEX", true), Bool("VERTEX_POSITIONS", true), Bool("VERTEX_NORMALS", true), Bool("VERTEX_UVS", true), Bool("VERTEX_UVS_A", true), Bool("MULTISAMPLED", true), Bool("NORMAL_PREPASS", true), Bool("DEPTH_PREPASS", true), Bool("MOTION_VECTOR_PREPASS", true), Bool("VIEW_PROJECTION_PERSPECTIVE", true), Bool("TONEMAP_IN_SHADER", true), UInt("TONEMAPPING_LUT_TEXTURE_BINDING_INDEX", 18), UInt("TONEMAPPING_LUT_SAMPLER_BINDING_INDEX", 19), Bool("TONEMAP_METHOD_TONY_MC_MAPFACE", true), Bool("DEBAND_DITHER", true), Bool("MAY_DISCARD", true), Bool("SHADOW_FILTER_METHOD_GAUSSIAN", true), Int("SCREEN_SPACE_SPECULAR_TRANSMISSION_BLUR_TAPS", 8), Bool("MU |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/bevy_0.16.0.json b/bevy_0.17-rc.1.json | |
| index f2f43ab..a284c3b 100644 | |
| --- a/bevy_0.16.0.json | |
| +++ b/bevy_0.17-rc.1.json | |
| @@ -3,103 +3,152 @@ | |
| "bevy_animation::AnimationTarget", | |
| "bevy_animation::graph::AnimationGraphHandle", | |
| "bevy_animation::transition::AnimationTransitions", | |
| + "bevy_anti_alias::contrast_adaptive_sharpening::ContrastAdaptiveSharpening", | |
| + "bevy_anti_alias::contrast_adaptive_sharpening::DenoiseCas", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::f32::consts::PI; | |
| use bevy::prelude::*; | |
| fn main() -> AppExit { | |
| App::new() | |
| .add_plugins(DefaultPlugins) | |
| .add_systems(Startup, startup) | |
| .add_systems(FixedUpdate, update) | |
| .run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use bevy::{prelude::*, scene::SceneInstanceReady}; | |
| fn main() -> AppExit { | |
| App::new() | |
| .add_plugins(DefaultPlugins) | |
| .add_observer( | |
| |_trigger: Trigger<SceneInstanceReady>, | |
| mut query: Query<( | |
| Entity, | |
| &mut AnimationPlayer, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use bevy::reflect::erased_serde::__private::serde::de::DeserializeSeed; | |
| use bevy::{ | |
| prelude::*, | |
| reflect::{ | |
| TypeRegistry, | |
| serde::{ReflectDeserializer, ReflectSerializer}, | |
| }, | |
| }; | |
| use serde_json::Value; |
NewerOlder