• Home
  • Raw
  • Download

Lines Matching full:quote

14 use quote::{format_ident, quote};
29 quote! { in write()
57 quote! { in properties_output()
62 quote! { in properties_output()
71 quote! { in properties_output()
87 quote! { properties_ffi.#ffi_member.map(|s| s #ffi_member_field .#ffi_name) } in properties_output()
90 quote! { in properties_output()
97 quote! { properties_ffi.#ffi_member #ffi_member_field .#ffi_name } in properties_output()
100 quote! { in properties_output()
109 quote! { in properties_output()
163 (format_ident!("properties_vulkan10"), quote! { .properties }), in properties_members()
170 quote! { .properties.limits }, in properties_members()
178 quote! { .properties.sparse_properties }, in properties_members()
184 (format_ident!("{}", ffi_member(vulkan_ty_name)), quote! {}), in properties_members()
198 "apiVersion" => quote! { Version }, in properties_members()
210 quote! { DeviceAlignment } in properties_members()
267 quote! { #name: Option<ash::vk::#ty>, } in properties_ffi_output()
277 quote! { in properties_ffi_output()
289 quote! { in properties_ffi_output()
329 quote! { api_version >= Version::#version } in properties_ffi_members()
343 quote! { #member.#name } in properties_ffi_members()
473 "char" => quote! { String }, in vulkano_type()
474 "uint8_t" if len == "VK_LUID_SIZE" => quote! { [u8; 8] }, in vulkano_type()
475 "uint8_t" if len == "VK_UUID_SIZE" => quote! { [u8; 16] }, in vulkano_type()
476 "uint32_t" if len == "2" => quote! { [u32; 2] }, in vulkano_type()
477 "uint32_t" if len == "3" => quote! { [u32; 3] }, in vulkano_type()
478 "float" if len == "2" => quote! { [f32; 2] }, in vulkano_type()
483 "float" => quote! { f32 }, in vulkano_type()
484 "int32_t" => quote! { i32 }, in vulkano_type()
485 "int64_t" => quote! { i64 }, in vulkano_type()
486 "size_t" => quote! { usize }, in vulkano_type()
487 "uint8_t" => quote! { u8 }, in vulkano_type()
488 "uint32_t" => quote! { u32 }, in vulkano_type()
489 "uint64_t" => quote! { u64 }, in vulkano_type()
490 "VkBool32" => quote! { bool }, in vulkano_type()
491 "VkConformanceVersion" => quote! { ConformanceVersion }, in vulkano_type()
492 "VkDeviceSize" => quote! { DeviceSize }, in vulkano_type()
493 "VkDriverId" => quote! { DriverId }, in vulkano_type()
494 "VkExtent2D" => quote! { [u32; 2] }, in vulkano_type()
495 "VkMemoryDecompressionMethodFlagsNV" => quote! { MemoryDecompressionMethods }, in vulkano_type()
496 "VkOpticalFlowGridSizeFlagsNV" => quote! { OpticalFlowGridSizes }, in vulkano_type()
497 "VkPhysicalDeviceType" => quote! { PhysicalDeviceType }, in vulkano_type()
498 "VkPipelineRobustnessBufferBehaviorEXT" => quote! { PipelineRobustnessBufferBehavior }, in vulkano_type()
499 "VkPipelineRobustnessImageBehaviorEXT" => quote! { PipelineRobustnessImageBehavior }, in vulkano_type()
500 "VkPointClippingBehavior" => quote! { PointClippingBehavior }, in vulkano_type()
501 "VkQueueFlags" => quote! { QueueFlags }, in vulkano_type()
502 "VkRayTracingInvocationReorderModeNV" => quote! { RayTracingInvocationReorderMode }, in vulkano_type()
503 "VkResolveModeFlags" => quote! { ResolveModes }, in vulkano_type()
504 "VkSampleCountFlags" => quote! { SampleCounts }, in vulkano_type()
505 "VkSampleCountFlagBits" => quote! { SampleCount }, in vulkano_type()
506 "VkShaderCorePropertiesFlagsAMD" => quote! { ShaderCoreProperties }, in vulkano_type()
507 "VkShaderFloatControlsIndependence" => quote! { ShaderFloatControlsIndependence }, in vulkano_type()
508 "VkShaderStageFlags" => quote! { ShaderStages }, in vulkano_type()
509 "VkSubgroupFeatureFlags" => quote! { SubgroupFeatures }, in vulkano_type()