Home
last modified time | relevance | path

Searched refs:AttachmentOps (Results 1 – 25 of 34) sorted by relevance

12

/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/gfx-hal/src/
H A Dpass.rs34 pub struct AttachmentOps { struct
42 impl AttachmentOps { argument
44 pub const DONT_CARE: Self = AttachmentOps {
50 pub const INIT: Self = AttachmentOps {
56 pub const PRESERVE: Self = AttachmentOps {
63 AttachmentOps { load, store } in new()
89 pub ops: AttachmentOps,
92 pub stencil_ops: AttachmentOps,
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/gfx-hal/src/
H A Dpass.rs42 pub struct AttachmentOps { struct
50 impl AttachmentOps { implementation
52 pub const DONT_CARE: Self = AttachmentOps {
58 pub const INIT: Self = AttachmentOps {
64 pub const PRESERVE: Self = AttachmentOps {
71 AttachmentOps { load, store } in new()
101 pub ops: AttachmentOps,
104 pub stencil_ops: AttachmentOps,
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/gfx-hal/src/
H A Dpass.rs42 pub struct AttachmentOps { struct
50 impl AttachmentOps { impl
52 pub const DONT_CARE: Self = AttachmentOps {
58 pub const INIT: Self = AttachmentOps {
64 pub const PRESERVE: Self = AttachmentOps {
71 AttachmentOps { load, store } in new()
101 pub ops: AttachmentOps,
104 pub stencil_ops: AttachmentOps,
/dports/graphics/rx/rx-0.4.0/cargo-crates/gfx-hal-0.4.0/src/
H A Dpass.rs34 pub struct AttachmentOps { struct
42 impl AttachmentOps { argument
44 pub const DONT_CARE: Self = AttachmentOps {
50 pub const PRESERVE: Self = AttachmentOps {
57 AttachmentOps { load, store } in new()
83 pub ops: AttachmentOps,
86 pub stencil_ops: AttachmentOps,
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/src/gles/
H A Dcommand.rs417 if !cat.ops.contains(crate::AttachmentOps::STORE) { in begin_render_pass()
433 && !dsat.depth_ops.contains(crate::AttachmentOps::STORE) in begin_render_pass()
440 && !dsat.stencil_ops.contains(crate::AttachmentOps::STORE) in begin_render_pass()
469 if !cat.ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
492 if !dsat.depth_ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
497 if !dsat.stencil_ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/src/metal/
H A Dcommand.rs352 let load_action = if at.ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
359 at.ops.contains(crate::AttachmentOps::STORE), in begin_render_pass()
371 let load_action = if at.depth_ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
377 let store_action = if at.depth_ops.contains(crate::AttachmentOps::STORE) { in begin_render_pass()
394 let load_action = if at.stencil_ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
400 let store_action = if at.stencil_ops.contains(crate::AttachmentOps::STORE) { in begin_render_pass()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-core/src/command/
H A Dclear.rs434 ops: hal::AttachmentOps::STORE, in clear_texture_via_render_passes()
446 depth_ops: hal::AttachmentOps::STORE, in clear_texture_via_render_passes()
447 stencil_ops: hal::AttachmentOps::STORE, in clear_texture_via_render_passes()
H A Drender.rs91 fn hal_ops(&self) -> hal::AttachmentOps { in hal_ops() argument
92 let mut ops = hal::AttachmentOps::empty(); in hal_ops()
94 LoadOp::Load => ops |= hal::AttachmentOps::LOAD, in hal_ops()
98 StoreOp::Store => ops |= hal::AttachmentOps::STORE, in hal_ops()
975 hal::AttachmentOps::STORE, // clear depth in finish()
976 hal::AttachmentOps::LOAD | hal::AttachmentOps::STORE, // unchanged stencil in finish()
980 hal::AttachmentOps::LOAD | hal::AttachmentOps::STORE, // unchanged stencil in finish()
981 hal::AttachmentOps::STORE, // clear depth in finish()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/src/vulkan/
H A Dmod.rs185 ops: crate::AttachmentOps,
194 ops: crate::AttachmentOps::all(), in compatible()
208 stencil_ops: crate::AttachmentOps,
H A Dconv.rs125 ops: crate::AttachmentOps, in make_attachment_key() argument
363 op: crate::AttachmentOps, in map_attachment_ops() argument
365 let load_op = if op.contains(crate::AttachmentOps::LOAD) { in map_attachment_ops()
370 let store_op = if op.contains(crate::AttachmentOps::STORE) { in map_attachment_ops()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/examples/
H A Draw-gles.rs82 ops: hal::AttachmentOps::STORE, in main()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/src/
H A Dlib.rs616 pub struct AttachmentOps: u8 {
1112 pub ops: AttachmentOps,
1131 pub depth_ops: AttachmentOps,
1132 pub stencil_ops: AttachmentOps,
/dports/graphics/rx/rx-0.4.0/cargo-crates/wgpu-native-0.4.1/src/command/
H A Dmod.rs411 stencil_ops: hal::pass::AttachmentOps::DONT_CARE, in command_encoder_begin_render_pass()
488 ops: hal::pass::AttachmentOps::new( in command_encoder_begin_render_pass()
492 stencil_ops: hal::pass::AttachmentOps::DONT_CARE, in command_encoder_begin_render_pass()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-hal/src/dx12/
H A Dcommand.rs606 if !cat.ops.contains(crate::AttachmentOps::LOAD) { in begin_render_pass()
626 if !ds.depth_ops.contains(crate::AttachmentOps::LOAD) in begin_render_pass()
631 if !ds.stencil_ops.contains(crate::AttachmentOps::LOAD) in begin_render_pass()
/dports/graphics/rx/rx-0.4.0/cargo-crates/wgpu-native-0.4.1/src/
H A Dconv.rs570 ) -> hal::pass::AttachmentOps { in map_load_store_ops() argument
571 hal::pass::AttachmentOps { in map_load_store_ops()
H A Ddevice.rs1824 ops: hal::pass::AttachmentOps::PRESERVE, in device_create_render_pipeline()
1825 stencil_ops: hal::pass::AttachmentOps::DONT_CARE, in device_create_render_pipeline()
1837 ops: hal::pass::AttachmentOps::PRESERVE, in device_create_render_pipeline()
1838 stencil_ops: hal::pass::AttachmentOps::PRESERVE, in device_create_render_pipeline()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wgpu/wgpu-core/src/command/
H A Drender.rs521 stencil_ops: hal::pass::AttachmentOps::DONT_CARE, in command_encoder_run_render_pass()
576 ops: hal::pass::AttachmentOps::new( in command_encoder_run_render_pass()
580 stencil_ops: hal::pass::AttachmentOps::DONT_CARE, in command_encoder_run_render_pass()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wgpu/wgpu-core/src/
H A Dconv.rs568 pub fn map_load_store_ops(load: wgt::LoadOp, store: wgt::StoreOp) -> hal::pass::AttachmentOps { in map_load_store_ops() argument
569 hal::pass::AttachmentOps { in map_load_store_ops()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/gfx-backend-metal/src/
H A Ddevice.rs1014 ops: n::AttachmentOps::empty(), in create_render_pass()
1034 ops: n::AttachmentOps::empty(), in create_render_pass()
1068 at.ops |= n::AttachmentOps::LOAD; in create_render_pass()
1074 at.ops |= n::AttachmentOps::LOAD; in create_render_pass()
1084 at.ops |= n::AttachmentOps::STORE; in create_render_pass()
1090 at.ops |= n::AttachmentOps::STORE; in create_render_pass()
H A Dnative.rs57 pub struct AttachmentOps: u8 {
93 pub ops: AttachmentOps,
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/gfx-backend-metal/src/
H A Ddevice.rs1014 ops: n::AttachmentOps::empty(), in create_render_pass()
1034 ops: n::AttachmentOps::empty(), in create_render_pass()
1068 at.ops |= n::AttachmentOps::LOAD; in create_render_pass()
1074 at.ops |= n::AttachmentOps::LOAD; in create_render_pass()
1084 at.ops |= n::AttachmentOps::STORE; in create_render_pass()
1090 at.ops |= n::AttachmentOps::STORE; in create_render_pass()
H A Dnative.rs57 pub struct AttachmentOps: u8 {
93 pub ops: AttachmentOps,
/dports/www/firefox-esr/firefox-91.8.0/gfx/wgpu/wgpu-core/src/
H A Dconv.rs773 pub fn map_load_store_ops<V>(channel: &PassChannel<V>) -> hal::pass::AttachmentOps { in map_load_store_ops() argument
774 hal::pass::AttachmentOps { in map_load_store_ops()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/wgpu/wgpu-core/src/
H A Dconv.rs773 pub fn map_load_store_ops<V>(channel: &PassChannel<V>) -> hal::pass::AttachmentOps { in map_load_store_ops() argument
774 hal::pass::AttachmentOps { in map_load_store_ops()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wgpu/wgpu-core/src/device/
H A Dmod.rs1964 ops: hal::pass::AttachmentOps::PRESERVE, in device_create_render_pipeline()
1965 stencil_ops: hal::pass::AttachmentOps::DONT_CARE, in device_create_render_pipeline()
1977 ops: hal::pass::AttachmentOps::PRESERVE, in device_create_render_pipeline()
1978 stencil_ops: hal::pass::AttachmentOps::PRESERVE, in device_create_render_pipeline()

12