Home
last modified time | relevance | path

Searched refs:fragment_shader_barycentric (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/out/
Dfeatures.rs254 pub fragment_shader_barycentric: bool, field
1815 if self.fragment_shader_barycentric { in check_requirements()
1816 if !supported.fragment_shader_barycentric { in check_requirements()
4344 fragment_shader_barycentric: false, in empty()
4720 fragment_shader_barycentric: true, in all()
5140 || (self.fragment_shader_barycentric && other.fragment_shader_barycentric) in intersects()
5621 && (self.fragment_shader_barycentric || !other.fragment_shader_barycentric) in contains()
6166 fragment_shader_barycentric: self.fragment_shader_barycentric in union()
6167 || other.fragment_shader_barycentric, in union()
6826 fragment_shader_barycentric: self.fragment_shader_barycentric in intersection()
[all …]
Dspirv_reqs.rs937 if !(device.enabled_features().fragment_shader_barycentric in check_spirv_capability()
938 || device.enabled_features().fragment_shader_barycentric) in check_spirv_capability()
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/vk/
Ddefinitions.rs63339 pub fragment_shader_barycentric: Bool32, field
63347 fragment_shader_barycentric: Bool32::default(), in default()
63391 pub fn fragment_shader_barycentric(mut self, fragment_shader_barycentric: bool) -> Self { in fragment_shader_barycentric() method
63392 self.inner.fragment_shader_barycentric = fragment_shader_barycentric.into(); in fragment_shader_barycentric()