text
stringlengths 1
22.8M
|
|---|
The Aramá River () is a river of Pará state in north-central Brazil. It is a right tributary of the Jacaré Grande River.
Course
The Aramá River rises on the island of Marajó in the delta region where the Amazon and Tocantins rivers empty into the Atlantic Ocean.
It forms the northern boundary in the western part of the Mapuá Extractive Reserve.
The Mapuá River, a left tributary of the Aramã, runs along the southern boundary of the reserve.
The reserve contains sheets of tidal water and mangroves.
The reserve is mostly lowland floodplain, with some terra firma in the centre of the territory.
See also
List of rivers of Pará
References
Sources
Rivers of Pará
|
```css
.page-2 {
background: moccasin;
}
```
|
```rust
use crate::prelude::debug_flags;
use crate::vk::bitflags::*;
use crate::vk::definitions::*;
use crate::vk::enums::*;
use core::fmt;
impl fmt::Debug for AccelerationStructureBuildTypeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::HOST => Some("HOST"),
Self::DEVICE => Some("DEVICE"),
Self::HOST_OR_DEVICE => Some("HOST_OR_DEVICE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for AccelerationStructureCompatibilityKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::COMPATIBLE => Some("COMPATIBLE"),
Self::INCOMPATIBLE => Some("INCOMPATIBLE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for AccelerationStructureCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
AccelerationStructureCreateFlagsKHR::DEVICE_ADDRESS_CAPTURE_REPLAY.0,
"DEVICE_ADDRESS_CAPTURE_REPLAY",
),
(
AccelerationStructureCreateFlagsKHR::DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT.0,
"DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT",
),
(
AccelerationStructureCreateFlagsKHR::MOTION_NV.0,
"MOTION_NV",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AccelerationStructureMemoryRequirementsTypeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::OBJECT => Some("OBJECT"),
Self::BUILD_SCRATCH => Some("BUILD_SCRATCH"),
Self::UPDATE_SCRATCH => Some("UPDATE_SCRATCH"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for AccelerationStructureMotionInfoFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AccelerationStructureMotionInstanceFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AccelerationStructureMotionInstanceTypeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::STATIC => Some("STATIC"),
Self::MATRIX_MOTION => Some("MATRIX_MOTION"),
Self::SRT_MOTION => Some("SRT_MOTION"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for AccelerationStructureTypeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TOP_LEVEL => Some("TOP_LEVEL"),
Self::BOTTOM_LEVEL => Some("BOTTOM_LEVEL"),
Self::GENERIC => Some("GENERIC"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for AccessFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
AccessFlags::INDIRECT_COMMAND_READ.0,
"INDIRECT_COMMAND_READ",
),
(AccessFlags::INDEX_READ.0, "INDEX_READ"),
(
AccessFlags::VERTEX_ATTRIBUTE_READ.0,
"VERTEX_ATTRIBUTE_READ",
),
(AccessFlags::UNIFORM_READ.0, "UNIFORM_READ"),
(
AccessFlags::INPUT_ATTACHMENT_READ.0,
"INPUT_ATTACHMENT_READ",
),
(AccessFlags::SHADER_READ.0, "SHADER_READ"),
(AccessFlags::SHADER_WRITE.0, "SHADER_WRITE"),
(
AccessFlags::COLOR_ATTACHMENT_READ.0,
"COLOR_ATTACHMENT_READ",
),
(
AccessFlags::COLOR_ATTACHMENT_WRITE.0,
"COLOR_ATTACHMENT_WRITE",
),
(
AccessFlags::DEPTH_STENCIL_ATTACHMENT_READ.0,
"DEPTH_STENCIL_ATTACHMENT_READ",
),
(
AccessFlags::DEPTH_STENCIL_ATTACHMENT_WRITE.0,
"DEPTH_STENCIL_ATTACHMENT_WRITE",
),
(AccessFlags::TRANSFER_READ.0, "TRANSFER_READ"),
(AccessFlags::TRANSFER_WRITE.0, "TRANSFER_WRITE"),
(AccessFlags::HOST_READ.0, "HOST_READ"),
(AccessFlags::HOST_WRITE.0, "HOST_WRITE"),
(AccessFlags::MEMORY_READ.0, "MEMORY_READ"),
(AccessFlags::MEMORY_WRITE.0, "MEMORY_WRITE"),
(
AccessFlags::TRANSFORM_FEEDBACK_WRITE_EXT.0,
"TRANSFORM_FEEDBACK_WRITE_EXT",
),
(
AccessFlags::TRANSFORM_FEEDBACK_COUNTER_READ_EXT.0,
"TRANSFORM_FEEDBACK_COUNTER_READ_EXT",
),
(
AccessFlags::TRANSFORM_FEEDBACK_COUNTER_WRITE_EXT.0,
"TRANSFORM_FEEDBACK_COUNTER_WRITE_EXT",
),
(
AccessFlags::CONDITIONAL_RENDERING_READ_EXT.0,
"CONDITIONAL_RENDERING_READ_EXT",
),
(
AccessFlags::COLOR_ATTACHMENT_READ_NONCOHERENT_EXT.0,
"COLOR_ATTACHMENT_READ_NONCOHERENT_EXT",
),
(
AccessFlags::ACCELERATION_STRUCTURE_READ_KHR.0,
"ACCELERATION_STRUCTURE_READ_KHR",
),
(
AccessFlags::ACCELERATION_STRUCTURE_WRITE_KHR.0,
"ACCELERATION_STRUCTURE_WRITE_KHR",
),
(
AccessFlags::FRAGMENT_DENSITY_MAP_READ_EXT.0,
"FRAGMENT_DENSITY_MAP_READ_EXT",
),
(
AccessFlags::FRAGMENT_SHADING_RATE_ATTACHMENT_READ_KHR.0,
"FRAGMENT_SHADING_RATE_ATTACHMENT_READ_KHR",
),
(
AccessFlags::COMMAND_PREPROCESS_READ_NV.0,
"COMMAND_PREPROCESS_READ_NV",
),
(
AccessFlags::COMMAND_PREPROCESS_WRITE_NV.0,
"COMMAND_PREPROCESS_WRITE_NV",
),
(AccessFlags::NONE.0, "NONE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AccessFlags2 {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags64, &str)] = &[
(AccessFlags2::NONE.0, "NONE"),
(
AccessFlags2::INDIRECT_COMMAND_READ.0,
"INDIRECT_COMMAND_READ",
),
(AccessFlags2::INDEX_READ.0, "INDEX_READ"),
(
AccessFlags2::VERTEX_ATTRIBUTE_READ.0,
"VERTEX_ATTRIBUTE_READ",
),
(AccessFlags2::UNIFORM_READ.0, "UNIFORM_READ"),
(
AccessFlags2::INPUT_ATTACHMENT_READ.0,
"INPUT_ATTACHMENT_READ",
),
(AccessFlags2::SHADER_READ.0, "SHADER_READ"),
(AccessFlags2::SHADER_WRITE.0, "SHADER_WRITE"),
(
AccessFlags2::COLOR_ATTACHMENT_READ.0,
"COLOR_ATTACHMENT_READ",
),
(
AccessFlags2::COLOR_ATTACHMENT_WRITE.0,
"COLOR_ATTACHMENT_WRITE",
),
(
AccessFlags2::DEPTH_STENCIL_ATTACHMENT_READ.0,
"DEPTH_STENCIL_ATTACHMENT_READ",
),
(
AccessFlags2::DEPTH_STENCIL_ATTACHMENT_WRITE.0,
"DEPTH_STENCIL_ATTACHMENT_WRITE",
),
(AccessFlags2::TRANSFER_READ.0, "TRANSFER_READ"),
(AccessFlags2::TRANSFER_WRITE.0, "TRANSFER_WRITE"),
(AccessFlags2::HOST_READ.0, "HOST_READ"),
(AccessFlags2::HOST_WRITE.0, "HOST_WRITE"),
(AccessFlags2::MEMORY_READ.0, "MEMORY_READ"),
(AccessFlags2::MEMORY_WRITE.0, "MEMORY_WRITE"),
(AccessFlags2::SHADER_SAMPLED_READ.0, "SHADER_SAMPLED_READ"),
(AccessFlags2::SHADER_STORAGE_READ.0, "SHADER_STORAGE_READ"),
(AccessFlags2::SHADER_STORAGE_WRITE.0, "SHADER_STORAGE_WRITE"),
(
AccessFlags2::VIDEO_DECODE_READ_KHR.0,
"VIDEO_DECODE_READ_KHR",
),
(
AccessFlags2::VIDEO_DECODE_WRITE_KHR.0,
"VIDEO_DECODE_WRITE_KHR",
),
(
AccessFlags2::VIDEO_ENCODE_READ_KHR.0,
"VIDEO_ENCODE_READ_KHR",
),
(
AccessFlags2::VIDEO_ENCODE_WRITE_KHR.0,
"VIDEO_ENCODE_WRITE_KHR",
),
(
AccessFlags2::TRANSFORM_FEEDBACK_WRITE_EXT.0,
"TRANSFORM_FEEDBACK_WRITE_EXT",
),
(
AccessFlags2::TRANSFORM_FEEDBACK_COUNTER_READ_EXT.0,
"TRANSFORM_FEEDBACK_COUNTER_READ_EXT",
),
(
AccessFlags2::TRANSFORM_FEEDBACK_COUNTER_WRITE_EXT.0,
"TRANSFORM_FEEDBACK_COUNTER_WRITE_EXT",
),
(
AccessFlags2::CONDITIONAL_RENDERING_READ_EXT.0,
"CONDITIONAL_RENDERING_READ_EXT",
),
(
AccessFlags2::COMMAND_PREPROCESS_READ_NV.0,
"COMMAND_PREPROCESS_READ_NV",
),
(
AccessFlags2::COMMAND_PREPROCESS_WRITE_NV.0,
"COMMAND_PREPROCESS_WRITE_NV",
),
(
AccessFlags2::FRAGMENT_SHADING_RATE_ATTACHMENT_READ_KHR.0,
"FRAGMENT_SHADING_RATE_ATTACHMENT_READ_KHR",
),
(
AccessFlags2::ACCELERATION_STRUCTURE_READ_KHR.0,
"ACCELERATION_STRUCTURE_READ_KHR",
),
(
AccessFlags2::ACCELERATION_STRUCTURE_WRITE_KHR.0,
"ACCELERATION_STRUCTURE_WRITE_KHR",
),
(
AccessFlags2::FRAGMENT_DENSITY_MAP_READ_EXT.0,
"FRAGMENT_DENSITY_MAP_READ_EXT",
),
(
AccessFlags2::COLOR_ATTACHMENT_READ_NONCOHERENT_EXT.0,
"COLOR_ATTACHMENT_READ_NONCOHERENT_EXT",
),
(
AccessFlags2::DESCRIPTOR_BUFFER_READ_EXT.0,
"DESCRIPTOR_BUFFER_READ_EXT",
),
(
AccessFlags2::INVOCATION_MASK_READ_HUAWEI.0,
"INVOCATION_MASK_READ_HUAWEI",
),
(
AccessFlags2::SHADER_BINDING_TABLE_READ_KHR.0,
"SHADER_BINDING_TABLE_READ_KHR",
),
(AccessFlags2::MICROMAP_READ_EXT.0, "MICROMAP_READ_EXT"),
(AccessFlags2::MICROMAP_WRITE_EXT.0, "MICROMAP_WRITE_EXT"),
(AccessFlags2::OPTICAL_FLOW_READ_NV.0, "OPTICAL_FLOW_READ_NV"),
(
AccessFlags2::OPTICAL_FLOW_WRITE_NV.0,
"OPTICAL_FLOW_WRITE_NV",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AcquireProfilingLockFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AndroidSurfaceCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AttachmentDescriptionFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(AttachmentDescriptionFlags::MAY_ALIAS.0, "MAY_ALIAS")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for AttachmentLoadOp {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::LOAD => Some("LOAD"),
Self::CLEAR => Some("CLEAR"),
Self::DONT_CARE => Some("DONT_CARE"),
Self::NONE_KHR => Some("NONE_KHR"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for AttachmentStoreOp {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::STORE => Some("STORE"),
Self::DONT_CARE => Some("DONT_CARE"),
Self::NONE => Some("NONE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BlendFactor {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ZERO => Some("ZERO"),
Self::ONE => Some("ONE"),
Self::SRC_COLOR => Some("SRC_COLOR"),
Self::ONE_MINUS_SRC_COLOR => Some("ONE_MINUS_SRC_COLOR"),
Self::DST_COLOR => Some("DST_COLOR"),
Self::ONE_MINUS_DST_COLOR => Some("ONE_MINUS_DST_COLOR"),
Self::SRC_ALPHA => Some("SRC_ALPHA"),
Self::ONE_MINUS_SRC_ALPHA => Some("ONE_MINUS_SRC_ALPHA"),
Self::DST_ALPHA => Some("DST_ALPHA"),
Self::ONE_MINUS_DST_ALPHA => Some("ONE_MINUS_DST_ALPHA"),
Self::CONSTANT_COLOR => Some("CONSTANT_COLOR"),
Self::ONE_MINUS_CONSTANT_COLOR => Some("ONE_MINUS_CONSTANT_COLOR"),
Self::CONSTANT_ALPHA => Some("CONSTANT_ALPHA"),
Self::ONE_MINUS_CONSTANT_ALPHA => Some("ONE_MINUS_CONSTANT_ALPHA"),
Self::SRC_ALPHA_SATURATE => Some("SRC_ALPHA_SATURATE"),
Self::SRC1_COLOR => Some("SRC1_COLOR"),
Self::ONE_MINUS_SRC1_COLOR => Some("ONE_MINUS_SRC1_COLOR"),
Self::SRC1_ALPHA => Some("SRC1_ALPHA"),
Self::ONE_MINUS_SRC1_ALPHA => Some("ONE_MINUS_SRC1_ALPHA"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BlendOp {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ADD => Some("ADD"),
Self::SUBTRACT => Some("SUBTRACT"),
Self::REVERSE_SUBTRACT => Some("REVERSE_SUBTRACT"),
Self::MIN => Some("MIN"),
Self::MAX => Some("MAX"),
Self::ZERO_EXT => Some("ZERO_EXT"),
Self::SRC_EXT => Some("SRC_EXT"),
Self::DST_EXT => Some("DST_EXT"),
Self::SRC_OVER_EXT => Some("SRC_OVER_EXT"),
Self::DST_OVER_EXT => Some("DST_OVER_EXT"),
Self::SRC_IN_EXT => Some("SRC_IN_EXT"),
Self::DST_IN_EXT => Some("DST_IN_EXT"),
Self::SRC_OUT_EXT => Some("SRC_OUT_EXT"),
Self::DST_OUT_EXT => Some("DST_OUT_EXT"),
Self::SRC_ATOP_EXT => Some("SRC_ATOP_EXT"),
Self::DST_ATOP_EXT => Some("DST_ATOP_EXT"),
Self::XOR_EXT => Some("XOR_EXT"),
Self::MULTIPLY_EXT => Some("MULTIPLY_EXT"),
Self::SCREEN_EXT => Some("SCREEN_EXT"),
Self::OVERLAY_EXT => Some("OVERLAY_EXT"),
Self::DARKEN_EXT => Some("DARKEN_EXT"),
Self::LIGHTEN_EXT => Some("LIGHTEN_EXT"),
Self::COLORDODGE_EXT => Some("COLORDODGE_EXT"),
Self::COLORBURN_EXT => Some("COLORBURN_EXT"),
Self::HARDLIGHT_EXT => Some("HARDLIGHT_EXT"),
Self::SOFTLIGHT_EXT => Some("SOFTLIGHT_EXT"),
Self::DIFFERENCE_EXT => Some("DIFFERENCE_EXT"),
Self::EXCLUSION_EXT => Some("EXCLUSION_EXT"),
Self::INVERT_EXT => Some("INVERT_EXT"),
Self::INVERT_RGB_EXT => Some("INVERT_RGB_EXT"),
Self::LINEARDODGE_EXT => Some("LINEARDODGE_EXT"),
Self::LINEARBURN_EXT => Some("LINEARBURN_EXT"),
Self::VIVIDLIGHT_EXT => Some("VIVIDLIGHT_EXT"),
Self::LINEARLIGHT_EXT => Some("LINEARLIGHT_EXT"),
Self::PINLIGHT_EXT => Some("PINLIGHT_EXT"),
Self::HARDMIX_EXT => Some("HARDMIX_EXT"),
Self::HSL_HUE_EXT => Some("HSL_HUE_EXT"),
Self::HSL_SATURATION_EXT => Some("HSL_SATURATION_EXT"),
Self::HSL_COLOR_EXT => Some("HSL_COLOR_EXT"),
Self::HSL_LUMINOSITY_EXT => Some("HSL_LUMINOSITY_EXT"),
Self::PLUS_EXT => Some("PLUS_EXT"),
Self::PLUS_CLAMPED_EXT => Some("PLUS_CLAMPED_EXT"),
Self::PLUS_CLAMPED_ALPHA_EXT => Some("PLUS_CLAMPED_ALPHA_EXT"),
Self::PLUS_DARKER_EXT => Some("PLUS_DARKER_EXT"),
Self::MINUS_EXT => Some("MINUS_EXT"),
Self::MINUS_CLAMPED_EXT => Some("MINUS_CLAMPED_EXT"),
Self::CONTRAST_EXT => Some("CONTRAST_EXT"),
Self::INVERT_OVG_EXT => Some("INVERT_OVG_EXT"),
Self::RED_EXT => Some("RED_EXT"),
Self::GREEN_EXT => Some("GREEN_EXT"),
Self::BLUE_EXT => Some("BLUE_EXT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BlendOverlapEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UNCORRELATED => Some("UNCORRELATED"),
Self::DISJOINT => Some("DISJOINT"),
Self::CONJOINT => Some("CONJOINT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BlockMatchWindowCompareModeQCOM {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::MIN => Some("MIN"),
Self::MAX => Some("MAX"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BorderColor {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FLOAT_TRANSPARENT_BLACK => Some("FLOAT_TRANSPARENT_BLACK"),
Self::INT_TRANSPARENT_BLACK => Some("INT_TRANSPARENT_BLACK"),
Self::FLOAT_OPAQUE_BLACK => Some("FLOAT_OPAQUE_BLACK"),
Self::INT_OPAQUE_BLACK => Some("INT_OPAQUE_BLACK"),
Self::FLOAT_OPAQUE_WHITE => Some("FLOAT_OPAQUE_WHITE"),
Self::INT_OPAQUE_WHITE => Some("INT_OPAQUE_WHITE"),
Self::FLOAT_CUSTOM_EXT => Some("FLOAT_CUSTOM_EXT"),
Self::INT_CUSTOM_EXT => Some("INT_CUSTOM_EXT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BufferCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(BufferCreateFlags::SPARSE_BINDING.0, "SPARSE_BINDING"),
(BufferCreateFlags::SPARSE_RESIDENCY.0, "SPARSE_RESIDENCY"),
(BufferCreateFlags::SPARSE_ALIASED.0, "SPARSE_ALIASED"),
(
BufferCreateFlags::DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT.0,
"DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT",
),
(
BufferCreateFlags::VIDEO_PROFILE_INDEPENDENT_KHR.0,
"VIDEO_PROFILE_INDEPENDENT_KHR",
),
(BufferCreateFlags::PROTECTED.0, "PROTECTED"),
(
BufferCreateFlags::DEVICE_ADDRESS_CAPTURE_REPLAY.0,
"DEVICE_ADDRESS_CAPTURE_REPLAY",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for BufferUsageFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(BufferUsageFlags::TRANSFER_SRC.0, "TRANSFER_SRC"),
(BufferUsageFlags::TRANSFER_DST.0, "TRANSFER_DST"),
(
BufferUsageFlags::UNIFORM_TEXEL_BUFFER.0,
"UNIFORM_TEXEL_BUFFER",
),
(
BufferUsageFlags::STORAGE_TEXEL_BUFFER.0,
"STORAGE_TEXEL_BUFFER",
),
(BufferUsageFlags::UNIFORM_BUFFER.0, "UNIFORM_BUFFER"),
(BufferUsageFlags::STORAGE_BUFFER.0, "STORAGE_BUFFER"),
(BufferUsageFlags::INDEX_BUFFER.0, "INDEX_BUFFER"),
(BufferUsageFlags::VERTEX_BUFFER.0, "VERTEX_BUFFER"),
(BufferUsageFlags::INDIRECT_BUFFER.0, "INDIRECT_BUFFER"),
(
BufferUsageFlags::VIDEO_DECODE_SRC_KHR.0,
"VIDEO_DECODE_SRC_KHR",
),
(
BufferUsageFlags::VIDEO_DECODE_DST_KHR.0,
"VIDEO_DECODE_DST_KHR",
),
(
BufferUsageFlags::TRANSFORM_FEEDBACK_BUFFER_EXT.0,
"TRANSFORM_FEEDBACK_BUFFER_EXT",
),
(
BufferUsageFlags::TRANSFORM_FEEDBACK_COUNTER_BUFFER_EXT.0,
"TRANSFORM_FEEDBACK_COUNTER_BUFFER_EXT",
),
(
BufferUsageFlags::CONDITIONAL_RENDERING_EXT.0,
"CONDITIONAL_RENDERING_EXT",
),
(
BufferUsageFlags::EXECUTION_GRAPH_SCRATCH_AMDX.0,
"EXECUTION_GRAPH_SCRATCH_AMDX",
),
(
BufferUsageFlags::ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_KHR.0,
"ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_KHR",
),
(
BufferUsageFlags::ACCELERATION_STRUCTURE_STORAGE_KHR.0,
"ACCELERATION_STRUCTURE_STORAGE_KHR",
),
(
BufferUsageFlags::SHADER_BINDING_TABLE_KHR.0,
"SHADER_BINDING_TABLE_KHR",
),
(
BufferUsageFlags::VIDEO_ENCODE_DST_KHR.0,
"VIDEO_ENCODE_DST_KHR",
),
(
BufferUsageFlags::VIDEO_ENCODE_SRC_KHR.0,
"VIDEO_ENCODE_SRC_KHR",
),
(
BufferUsageFlags::SAMPLER_DESCRIPTOR_BUFFER_EXT.0,
"SAMPLER_DESCRIPTOR_BUFFER_EXT",
),
(
BufferUsageFlags::RESOURCE_DESCRIPTOR_BUFFER_EXT.0,
"RESOURCE_DESCRIPTOR_BUFFER_EXT",
),
(
BufferUsageFlags::PUSH_DESCRIPTORS_DESCRIPTOR_BUFFER_EXT.0,
"PUSH_DESCRIPTORS_DESCRIPTOR_BUFFER_EXT",
),
(
BufferUsageFlags::MICROMAP_BUILD_INPUT_READ_ONLY_EXT.0,
"MICROMAP_BUILD_INPUT_READ_ONLY_EXT",
),
(
BufferUsageFlags::MICROMAP_STORAGE_EXT.0,
"MICROMAP_STORAGE_EXT",
),
(
BufferUsageFlags::SHADER_DEVICE_ADDRESS.0,
"SHADER_DEVICE_ADDRESS",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for BufferUsageFlags2KHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags64, &str)] = &[
(BufferUsageFlags2KHR::TRANSFER_SRC.0, "TRANSFER_SRC"),
(BufferUsageFlags2KHR::TRANSFER_DST.0, "TRANSFER_DST"),
(
BufferUsageFlags2KHR::UNIFORM_TEXEL_BUFFER.0,
"UNIFORM_TEXEL_BUFFER",
),
(
BufferUsageFlags2KHR::STORAGE_TEXEL_BUFFER.0,
"STORAGE_TEXEL_BUFFER",
),
(BufferUsageFlags2KHR::UNIFORM_BUFFER.0, "UNIFORM_BUFFER"),
(BufferUsageFlags2KHR::STORAGE_BUFFER.0, "STORAGE_BUFFER"),
(BufferUsageFlags2KHR::INDEX_BUFFER.0, "INDEX_BUFFER"),
(BufferUsageFlags2KHR::VERTEX_BUFFER.0, "VERTEX_BUFFER"),
(BufferUsageFlags2KHR::INDIRECT_BUFFER.0, "INDIRECT_BUFFER"),
(
BufferUsageFlags2KHR::EXECUTION_GRAPH_SCRATCH_AMDX.0,
"EXECUTION_GRAPH_SCRATCH_AMDX",
),
(
BufferUsageFlags2KHR::CONDITIONAL_RENDERING_EXT.0,
"CONDITIONAL_RENDERING_EXT",
),
(
BufferUsageFlags2KHR::SHADER_BINDING_TABLE.0,
"SHADER_BINDING_TABLE",
),
(
BufferUsageFlags2KHR::TRANSFORM_FEEDBACK_BUFFER_EXT.0,
"TRANSFORM_FEEDBACK_BUFFER_EXT",
),
(
BufferUsageFlags2KHR::TRANSFORM_FEEDBACK_COUNTER_BUFFER_EXT.0,
"TRANSFORM_FEEDBACK_COUNTER_BUFFER_EXT",
),
(BufferUsageFlags2KHR::VIDEO_DECODE_SRC.0, "VIDEO_DECODE_SRC"),
(BufferUsageFlags2KHR::VIDEO_DECODE_DST.0, "VIDEO_DECODE_DST"),
(BufferUsageFlags2KHR::VIDEO_ENCODE_DST.0, "VIDEO_ENCODE_DST"),
(BufferUsageFlags2KHR::VIDEO_ENCODE_SRC.0, "VIDEO_ENCODE_SRC"),
(
BufferUsageFlags2KHR::SHADER_DEVICE_ADDRESS.0,
"SHADER_DEVICE_ADDRESS",
),
(
BufferUsageFlags2KHR::ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY.0,
"ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY",
),
(
BufferUsageFlags2KHR::ACCELERATION_STRUCTURE_STORAGE.0,
"ACCELERATION_STRUCTURE_STORAGE",
),
(
BufferUsageFlags2KHR::SAMPLER_DESCRIPTOR_BUFFER_EXT.0,
"SAMPLER_DESCRIPTOR_BUFFER_EXT",
),
(
BufferUsageFlags2KHR::RESOURCE_DESCRIPTOR_BUFFER_EXT.0,
"RESOURCE_DESCRIPTOR_BUFFER_EXT",
),
(
BufferUsageFlags2KHR::PUSH_DESCRIPTORS_DESCRIPTOR_BUFFER_EXT.0,
"PUSH_DESCRIPTORS_DESCRIPTOR_BUFFER_EXT",
),
(
BufferUsageFlags2KHR::MICROMAP_BUILD_INPUT_READ_ONLY_EXT.0,
"MICROMAP_BUILD_INPUT_READ_ONLY_EXT",
),
(
BufferUsageFlags2KHR::MICROMAP_STORAGE_EXT.0,
"MICROMAP_STORAGE_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for BufferViewCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for BuildAccelerationStructureFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
BuildAccelerationStructureFlagsKHR::ALLOW_UPDATE.0,
"ALLOW_UPDATE",
),
(
BuildAccelerationStructureFlagsKHR::ALLOW_COMPACTION.0,
"ALLOW_COMPACTION",
),
(
BuildAccelerationStructureFlagsKHR::PREFER_FAST_TRACE.0,
"PREFER_FAST_TRACE",
),
(
BuildAccelerationStructureFlagsKHR::PREFER_FAST_BUILD.0,
"PREFER_FAST_BUILD",
),
(
BuildAccelerationStructureFlagsKHR::LOW_MEMORY.0,
"LOW_MEMORY",
),
(BuildAccelerationStructureFlagsKHR::MOTION_NV.0, "MOTION_NV"),
(
BuildAccelerationStructureFlagsKHR::ALLOW_OPACITY_MICROMAP_UPDATE_EXT.0,
"ALLOW_OPACITY_MICROMAP_UPDATE_EXT",
),
(
BuildAccelerationStructureFlagsKHR::ALLOW_DISABLE_OPACITY_MICROMAPS_EXT.0,
"ALLOW_DISABLE_OPACITY_MICROMAPS_EXT",
),
(
BuildAccelerationStructureFlagsKHR::ALLOW_OPACITY_MICROMAP_DATA_UPDATE_EXT.0,
"ALLOW_OPACITY_MICROMAP_DATA_UPDATE_EXT",
),
(
BuildAccelerationStructureFlagsKHR::ALLOW_DISPLACEMENT_MICROMAP_UPDATE_NV.0,
"ALLOW_DISPLACEMENT_MICROMAP_UPDATE_NV",
),
(
BuildAccelerationStructureFlagsKHR::ALLOW_DATA_ACCESS.0,
"ALLOW_DATA_ACCESS",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for BuildAccelerationStructureModeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BUILD => Some("BUILD"),
Self::UPDATE => Some("UPDATE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for BuildMicromapFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
BuildMicromapFlagsEXT::PREFER_FAST_TRACE.0,
"PREFER_FAST_TRACE",
),
(
BuildMicromapFlagsEXT::PREFER_FAST_BUILD.0,
"PREFER_FAST_BUILD",
),
(
BuildMicromapFlagsEXT::ALLOW_COMPACTION.0,
"ALLOW_COMPACTION",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for BuildMicromapModeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BUILD => Some("BUILD"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ChromaLocation {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::COSITED_EVEN => Some("COSITED_EVEN"),
Self::MIDPOINT => Some("MIDPOINT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CoarseSampleOrderTypeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEFAULT => Some("DEFAULT"),
Self::CUSTOM => Some("CUSTOM"),
Self::PIXEL_MAJOR => Some("PIXEL_MAJOR"),
Self::SAMPLE_MAJOR => Some("SAMPLE_MAJOR"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ColorComponentFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ColorComponentFlags::R.0, "R"),
(ColorComponentFlags::G.0, "G"),
(ColorComponentFlags::B.0, "B"),
(ColorComponentFlags::A.0, "A"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ColorSpaceKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::SRGB_NONLINEAR => Some("SRGB_NONLINEAR"),
Self::DISPLAY_P3_NONLINEAR_EXT => Some("DISPLAY_P3_NONLINEAR_EXT"),
Self::EXTENDED_SRGB_LINEAR_EXT => Some("EXTENDED_SRGB_LINEAR_EXT"),
Self::DISPLAY_P3_LINEAR_EXT => Some("DISPLAY_P3_LINEAR_EXT"),
Self::DCI_P3_NONLINEAR_EXT => Some("DCI_P3_NONLINEAR_EXT"),
Self::BT709_LINEAR_EXT => Some("BT709_LINEAR_EXT"),
Self::BT709_NONLINEAR_EXT => Some("BT709_NONLINEAR_EXT"),
Self::BT2020_LINEAR_EXT => Some("BT2020_LINEAR_EXT"),
Self::HDR10_ST2084_EXT => Some("HDR10_ST2084_EXT"),
Self::DOLBYVISION_EXT => Some("DOLBYVISION_EXT"),
Self::HDR10_HLG_EXT => Some("HDR10_HLG_EXT"),
Self::ADOBERGB_LINEAR_EXT => Some("ADOBERGB_LINEAR_EXT"),
Self::ADOBERGB_NONLINEAR_EXT => Some("ADOBERGB_NONLINEAR_EXT"),
Self::PASS_THROUGH_EXT => Some("PASS_THROUGH_EXT"),
Self::EXTENDED_SRGB_NONLINEAR_EXT => Some("EXTENDED_SRGB_NONLINEAR_EXT"),
Self::DISPLAY_NATIVE_AMD => Some("DISPLAY_NATIVE_AMD"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CommandBufferLevel {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::PRIMARY => Some("PRIMARY"),
Self::SECONDARY => Some("SECONDARY"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CommandBufferResetFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
CommandBufferResetFlags::RELEASE_RESOURCES.0,
"RELEASE_RESOURCES",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for CommandBufferUsageFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
CommandBufferUsageFlags::ONE_TIME_SUBMIT.0,
"ONE_TIME_SUBMIT",
),
(
CommandBufferUsageFlags::RENDER_PASS_CONTINUE.0,
"RENDER_PASS_CONTINUE",
),
(
CommandBufferUsageFlags::SIMULTANEOUS_USE.0,
"SIMULTANEOUS_USE",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for CommandPoolCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(CommandPoolCreateFlags::TRANSIENT.0, "TRANSIENT"),
(
CommandPoolCreateFlags::RESET_COMMAND_BUFFER.0,
"RESET_COMMAND_BUFFER",
),
(CommandPoolCreateFlags::PROTECTED.0, "PROTECTED"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for CommandPoolResetFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
CommandPoolResetFlags::RELEASE_RESOURCES.0,
"RELEASE_RESOURCES",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for CommandPoolTrimFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for CompareOp {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NEVER => Some("NEVER"),
Self::LESS => Some("LESS"),
Self::EQUAL => Some("EQUAL"),
Self::LESS_OR_EQUAL => Some("LESS_OR_EQUAL"),
Self::GREATER => Some("GREATER"),
Self::NOT_EQUAL => Some("NOT_EQUAL"),
Self::GREATER_OR_EQUAL => Some("GREATER_OR_EQUAL"),
Self::ALWAYS => Some("ALWAYS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ComponentSwizzle {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::IDENTITY => Some("IDENTITY"),
Self::ZERO => Some("ZERO"),
Self::ONE => Some("ONE"),
Self::R => Some("R"),
Self::G => Some("G"),
Self::B => Some("B"),
Self::A => Some("A"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ComponentTypeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FLOAT16 => Some("FLOAT16"),
Self::FLOAT32 => Some("FLOAT32"),
Self::FLOAT64 => Some("FLOAT64"),
Self::SINT8 => Some("SINT8"),
Self::SINT16 => Some("SINT16"),
Self::SINT32 => Some("SINT32"),
Self::SINT64 => Some("SINT64"),
Self::UINT8 => Some("UINT8"),
Self::UINT16 => Some("UINT16"),
Self::UINT32 => Some("UINT32"),
Self::UINT64 => Some("UINT64"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CompositeAlphaFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(CompositeAlphaFlagsKHR::OPAQUE.0, "OPAQUE"),
(CompositeAlphaFlagsKHR::PRE_MULTIPLIED.0, "PRE_MULTIPLIED"),
(CompositeAlphaFlagsKHR::POST_MULTIPLIED.0, "POST_MULTIPLIED"),
(CompositeAlphaFlagsKHR::INHERIT.0, "INHERIT"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ConditionalRenderingFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(ConditionalRenderingFlagsEXT::INVERTED.0, "INVERTED")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ConservativeRasterizationModeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DISABLED => Some("DISABLED"),
Self::OVERESTIMATE => Some("OVERESTIMATE"),
Self::UNDERESTIMATE => Some("UNDERESTIMATE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CopyAccelerationStructureModeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::CLONE => Some("CLONE"),
Self::COMPACT => Some("COMPACT"),
Self::SERIALIZE => Some("SERIALIZE"),
Self::DESERIALIZE => Some("DESERIALIZE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CopyMicromapModeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::CLONE => Some("CLONE"),
Self::SERIALIZE => Some("SERIALIZE"),
Self::DESERIALIZE => Some("DESERIALIZE"),
Self::COMPACT => Some("COMPACT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CoverageModulationModeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NONE => Some("NONE"),
Self::RGB => Some("RGB"),
Self::ALPHA => Some("ALPHA"),
Self::RGBA => Some("RGBA"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CoverageReductionModeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::MERGE => Some("MERGE"),
Self::TRUNCATE => Some("TRUNCATE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CubicFilterWeightsQCOM {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::CATMULL_ROM => Some("CATMULL_ROM"),
Self::ZERO_TANGENT_CARDINAL => Some("ZERO_TANGENT_CARDINAL"),
Self::B_SPLINE => Some("B_SPLINE"),
Self::MITCHELL_NETRAVALI => Some("MITCHELL_NETRAVALI"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for CullModeFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(CullModeFlags::NONE.0, "NONE"),
(CullModeFlags::FRONT.0, "FRONT"),
(CullModeFlags::BACK.0, "BACK"),
(CullModeFlags::FRONT_AND_BACK.0, "FRONT_AND_BACK"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DebugReportFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(DebugReportFlagsEXT::INFORMATION.0, "INFORMATION"),
(DebugReportFlagsEXT::WARNING.0, "WARNING"),
(
DebugReportFlagsEXT::PERFORMANCE_WARNING.0,
"PERFORMANCE_WARNING",
),
(DebugReportFlagsEXT::ERROR.0, "ERROR"),
(DebugReportFlagsEXT::DEBUG.0, "DEBUG"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DebugReportObjectTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UNKNOWN => Some("UNKNOWN"),
Self::INSTANCE => Some("INSTANCE"),
Self::PHYSICAL_DEVICE => Some("PHYSICAL_DEVICE"),
Self::DEVICE => Some("DEVICE"),
Self::QUEUE => Some("QUEUE"),
Self::SEMAPHORE => Some("SEMAPHORE"),
Self::COMMAND_BUFFER => Some("COMMAND_BUFFER"),
Self::FENCE => Some("FENCE"),
Self::DEVICE_MEMORY => Some("DEVICE_MEMORY"),
Self::BUFFER => Some("BUFFER"),
Self::IMAGE => Some("IMAGE"),
Self::EVENT => Some("EVENT"),
Self::QUERY_POOL => Some("QUERY_POOL"),
Self::BUFFER_VIEW => Some("BUFFER_VIEW"),
Self::IMAGE_VIEW => Some("IMAGE_VIEW"),
Self::SHADER_MODULE => Some("SHADER_MODULE"),
Self::PIPELINE_CACHE => Some("PIPELINE_CACHE"),
Self::PIPELINE_LAYOUT => Some("PIPELINE_LAYOUT"),
Self::RENDER_PASS => Some("RENDER_PASS"),
Self::PIPELINE => Some("PIPELINE"),
Self::DESCRIPTOR_SET_LAYOUT => Some("DESCRIPTOR_SET_LAYOUT"),
Self::SAMPLER => Some("SAMPLER"),
Self::DESCRIPTOR_POOL => Some("DESCRIPTOR_POOL"),
Self::DESCRIPTOR_SET => Some("DESCRIPTOR_SET"),
Self::FRAMEBUFFER => Some("FRAMEBUFFER"),
Self::COMMAND_POOL => Some("COMMAND_POOL"),
Self::SURFACE_KHR => Some("SURFACE_KHR"),
Self::SWAPCHAIN_KHR => Some("SWAPCHAIN_KHR"),
Self::DEBUG_REPORT_CALLBACK_EXT => Some("DEBUG_REPORT_CALLBACK_EXT"),
Self::DISPLAY_KHR => Some("DISPLAY_KHR"),
Self::DISPLAY_MODE_KHR => Some("DISPLAY_MODE_KHR"),
Self::VALIDATION_CACHE_EXT => Some("VALIDATION_CACHE_EXT"),
Self::SAMPLER_YCBCR_CONVERSION => Some("SAMPLER_YCBCR_CONVERSION"),
Self::DESCRIPTOR_UPDATE_TEMPLATE => Some("DESCRIPTOR_UPDATE_TEMPLATE"),
Self::CU_MODULE_NVX => Some("CU_MODULE_NVX"),
Self::CU_FUNCTION_NVX => Some("CU_FUNCTION_NVX"),
Self::ACCELERATION_STRUCTURE_KHR => Some("ACCELERATION_STRUCTURE_KHR"),
Self::ACCELERATION_STRUCTURE_NV => Some("ACCELERATION_STRUCTURE_NV"),
Self::CUDA_MODULE_NV => Some("CUDA_MODULE_NV"),
Self::CUDA_FUNCTION_NV => Some("CUDA_FUNCTION_NV"),
Self::BUFFER_COLLECTION_FUCHSIA => Some("BUFFER_COLLECTION_FUCHSIA"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DebugUtilsMessageSeverityFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(DebugUtilsMessageSeverityFlagsEXT::VERBOSE.0, "VERBOSE"),
(DebugUtilsMessageSeverityFlagsEXT::INFO.0, "INFO"),
(DebugUtilsMessageSeverityFlagsEXT::WARNING.0, "WARNING"),
(DebugUtilsMessageSeverityFlagsEXT::ERROR.0, "ERROR"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DebugUtilsMessageTypeFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(DebugUtilsMessageTypeFlagsEXT::GENERAL.0, "GENERAL"),
(DebugUtilsMessageTypeFlagsEXT::VALIDATION.0, "VALIDATION"),
(DebugUtilsMessageTypeFlagsEXT::PERFORMANCE.0, "PERFORMANCE"),
(
DebugUtilsMessageTypeFlagsEXT::DEVICE_ADDRESS_BINDING.0,
"DEVICE_ADDRESS_BINDING",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DebugUtilsMessengerCallbackDataFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DebugUtilsMessengerCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DependencyFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(DependencyFlags::BY_REGION.0, "BY_REGION"),
(DependencyFlags::FEEDBACK_LOOP_EXT.0, "FEEDBACK_LOOP_EXT"),
(DependencyFlags::DEVICE_GROUP.0, "DEVICE_GROUP"),
(DependencyFlags::VIEW_LOCAL.0, "VIEW_LOCAL"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DepthBiasRepresentationEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::LEAST_REPRESENTABLE_VALUE_FORMAT => Some("LEAST_REPRESENTABLE_VALUE_FORMAT"),
Self::LEAST_REPRESENTABLE_VALUE_FORCE_UNORM => {
Some("LEAST_REPRESENTABLE_VALUE_FORCE_UNORM")
}
Self::FLOAT => Some("FLOAT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DescriptorBindingFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
DescriptorBindingFlags::UPDATE_AFTER_BIND.0,
"UPDATE_AFTER_BIND",
),
(
DescriptorBindingFlags::UPDATE_UNUSED_WHILE_PENDING.0,
"UPDATE_UNUSED_WHILE_PENDING",
),
(DescriptorBindingFlags::PARTIALLY_BOUND.0, "PARTIALLY_BOUND"),
(
DescriptorBindingFlags::VARIABLE_DESCRIPTOR_COUNT.0,
"VARIABLE_DESCRIPTOR_COUNT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DescriptorPoolCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
DescriptorPoolCreateFlags::FREE_DESCRIPTOR_SET.0,
"FREE_DESCRIPTOR_SET",
),
(DescriptorPoolCreateFlags::HOST_ONLY_EXT.0, "HOST_ONLY_EXT"),
(
DescriptorPoolCreateFlags::ALLOW_OVERALLOCATION_SETS_NV.0,
"ALLOW_OVERALLOCATION_SETS_NV",
),
(
DescriptorPoolCreateFlags::ALLOW_OVERALLOCATION_POOLS_NV.0,
"ALLOW_OVERALLOCATION_POOLS_NV",
),
(
DescriptorPoolCreateFlags::UPDATE_AFTER_BIND.0,
"UPDATE_AFTER_BIND",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DescriptorPoolResetFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DescriptorSetLayoutCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
DescriptorSetLayoutCreateFlags::PUSH_DESCRIPTOR_KHR.0,
"PUSH_DESCRIPTOR_KHR",
),
(
DescriptorSetLayoutCreateFlags::DESCRIPTOR_BUFFER_EXT.0,
"DESCRIPTOR_BUFFER_EXT",
),
(
DescriptorSetLayoutCreateFlags::EMBEDDED_IMMUTABLE_SAMPLERS_EXT.0,
"EMBEDDED_IMMUTABLE_SAMPLERS_EXT",
),
(
DescriptorSetLayoutCreateFlags::INDIRECT_BINDABLE_NV.0,
"INDIRECT_BINDABLE_NV",
),
(
DescriptorSetLayoutCreateFlags::HOST_ONLY_POOL_EXT.0,
"HOST_ONLY_POOL_EXT",
),
(
DescriptorSetLayoutCreateFlags::PER_STAGE_NV.0,
"PER_STAGE_NV",
),
(
DescriptorSetLayoutCreateFlags::UPDATE_AFTER_BIND_POOL.0,
"UPDATE_AFTER_BIND_POOL",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DescriptorType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::SAMPLER => Some("SAMPLER"),
Self::COMBINED_IMAGE_SAMPLER => Some("COMBINED_IMAGE_SAMPLER"),
Self::SAMPLED_IMAGE => Some("SAMPLED_IMAGE"),
Self::STORAGE_IMAGE => Some("STORAGE_IMAGE"),
Self::UNIFORM_TEXEL_BUFFER => Some("UNIFORM_TEXEL_BUFFER"),
Self::STORAGE_TEXEL_BUFFER => Some("STORAGE_TEXEL_BUFFER"),
Self::UNIFORM_BUFFER => Some("UNIFORM_BUFFER"),
Self::STORAGE_BUFFER => Some("STORAGE_BUFFER"),
Self::UNIFORM_BUFFER_DYNAMIC => Some("UNIFORM_BUFFER_DYNAMIC"),
Self::STORAGE_BUFFER_DYNAMIC => Some("STORAGE_BUFFER_DYNAMIC"),
Self::INPUT_ATTACHMENT => Some("INPUT_ATTACHMENT"),
Self::ACCELERATION_STRUCTURE_KHR => Some("ACCELERATION_STRUCTURE_KHR"),
Self::ACCELERATION_STRUCTURE_NV => Some("ACCELERATION_STRUCTURE_NV"),
Self::SAMPLE_WEIGHT_IMAGE_QCOM => Some("SAMPLE_WEIGHT_IMAGE_QCOM"),
Self::BLOCK_MATCH_IMAGE_QCOM => Some("BLOCK_MATCH_IMAGE_QCOM"),
Self::MUTABLE_EXT => Some("MUTABLE_EXT"),
Self::INLINE_UNIFORM_BLOCK => Some("INLINE_UNIFORM_BLOCK"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DescriptorUpdateTemplateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DescriptorUpdateTemplateType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DESCRIPTOR_SET => Some("DESCRIPTOR_SET"),
Self::PUSH_DESCRIPTORS_KHR => Some("PUSH_DESCRIPTORS_KHR"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DeviceAddressBindingFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
DeviceAddressBindingFlagsEXT::INTERNAL_OBJECT.0,
"INTERNAL_OBJECT",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DeviceAddressBindingTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BIND => Some("BIND"),
Self::UNBIND => Some("UNBIND"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DeviceCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DeviceDiagnosticsConfigFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
DeviceDiagnosticsConfigFlagsNV::ENABLE_SHADER_DEBUG_INFO.0,
"ENABLE_SHADER_DEBUG_INFO",
),
(
DeviceDiagnosticsConfigFlagsNV::ENABLE_RESOURCE_TRACKING.0,
"ENABLE_RESOURCE_TRACKING",
),
(
DeviceDiagnosticsConfigFlagsNV::ENABLE_AUTOMATIC_CHECKPOINTS.0,
"ENABLE_AUTOMATIC_CHECKPOINTS",
),
(
DeviceDiagnosticsConfigFlagsNV::ENABLE_SHADER_ERROR_REPORTING.0,
"ENABLE_SHADER_ERROR_REPORTING",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DeviceEventTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DISPLAY_HOTPLUG => Some("DISPLAY_HOTPLUG"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DeviceFaultAddressTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NONE => Some("NONE"),
Self::READ_INVALID => Some("READ_INVALID"),
Self::WRITE_INVALID => Some("WRITE_INVALID"),
Self::EXECUTE_INVALID => Some("EXECUTE_INVALID"),
Self::INSTRUCTION_POINTER_UNKNOWN => Some("INSTRUCTION_POINTER_UNKNOWN"),
Self::INSTRUCTION_POINTER_INVALID => Some("INSTRUCTION_POINTER_INVALID"),
Self::INSTRUCTION_POINTER_FAULT => Some("INSTRUCTION_POINTER_FAULT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DeviceFaultVendorBinaryHeaderVersionEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ONE => Some("ONE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DeviceGroupPresentModeFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(DeviceGroupPresentModeFlagsKHR::LOCAL.0, "LOCAL"),
(DeviceGroupPresentModeFlagsKHR::REMOTE.0, "REMOTE"),
(DeviceGroupPresentModeFlagsKHR::SUM.0, "SUM"),
(
DeviceGroupPresentModeFlagsKHR::LOCAL_MULTI_DEVICE.0,
"LOCAL_MULTI_DEVICE",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DeviceMemoryReportEventTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ALLOCATE => Some("ALLOCATE"),
Self::FREE => Some("FREE"),
Self::IMPORT => Some("IMPORT"),
Self::UNIMPORT => Some("UNIMPORT"),
Self::ALLOCATION_FAILED => Some("ALLOCATION_FAILED"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DeviceMemoryReportFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DeviceQueueCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(DeviceQueueCreateFlags::PROTECTED.0, "PROTECTED")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DirectDriverLoadingFlagsLUNARG {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DirectDriverLoadingModeLUNARG {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::EXCLUSIVE => Some("EXCLUSIVE"),
Self::INCLUSIVE => Some("INCLUSIVE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DirectFBSurfaceCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DiscardRectangleModeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::INCLUSIVE => Some("INCLUSIVE"),
Self::EXCLUSIVE => Some("EXCLUSIVE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DisplacementMicromapFormatNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TYPE_64_TRIANGLES_64_BYTES => Some("TYPE_64_TRIANGLES_64_BYTES"),
Self::TYPE_256_TRIANGLES_128_BYTES => Some("TYPE_256_TRIANGLES_128_BYTES"),
Self::TYPE_1024_TRIANGLES_128_BYTES => Some("TYPE_1024_TRIANGLES_128_BYTES"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DisplayEventTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FIRST_PIXEL_OUT => Some("FIRST_PIXEL_OUT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DisplayModeCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DisplayPlaneAlphaFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(DisplayPlaneAlphaFlagsKHR::OPAQUE.0, "OPAQUE"),
(DisplayPlaneAlphaFlagsKHR::GLOBAL.0, "GLOBAL"),
(DisplayPlaneAlphaFlagsKHR::PER_PIXEL.0, "PER_PIXEL"),
(
DisplayPlaneAlphaFlagsKHR::PER_PIXEL_PREMULTIPLIED.0,
"PER_PIXEL_PREMULTIPLIED",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DisplayPowerStateEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::OFF => Some("OFF"),
Self::SUSPEND => Some("SUSPEND"),
Self::ON => Some("ON"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DisplaySurfaceCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for DriverId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::AMD_PROPRIETARY => Some("AMD_PROPRIETARY"),
Self::AMD_OPEN_SOURCE => Some("AMD_OPEN_SOURCE"),
Self::MESA_RADV => Some("MESA_RADV"),
Self::NVIDIA_PROPRIETARY => Some("NVIDIA_PROPRIETARY"),
Self::INTEL_PROPRIETARY_WINDOWS => Some("INTEL_PROPRIETARY_WINDOWS"),
Self::INTEL_OPEN_SOURCE_MESA => Some("INTEL_OPEN_SOURCE_MESA"),
Self::IMAGINATION_PROPRIETARY => Some("IMAGINATION_PROPRIETARY"),
Self::QUALCOMM_PROPRIETARY => Some("QUALCOMM_PROPRIETARY"),
Self::ARM_PROPRIETARY => Some("ARM_PROPRIETARY"),
Self::GOOGLE_SWIFTSHADER => Some("GOOGLE_SWIFTSHADER"),
Self::GGP_PROPRIETARY => Some("GGP_PROPRIETARY"),
Self::BROADCOM_PROPRIETARY => Some("BROADCOM_PROPRIETARY"),
Self::MESA_LLVMPIPE => Some("MESA_LLVMPIPE"),
Self::MOLTENVK => Some("MOLTENVK"),
Self::COREAVI_PROPRIETARY => Some("COREAVI_PROPRIETARY"),
Self::JUICE_PROPRIETARY => Some("JUICE_PROPRIETARY"),
Self::VERISILICON_PROPRIETARY => Some("VERISILICON_PROPRIETARY"),
Self::MESA_TURNIP => Some("MESA_TURNIP"),
Self::MESA_V3DV => Some("MESA_V3DV"),
Self::MESA_PANVK => Some("MESA_PANVK"),
Self::SAMSUNG_PROPRIETARY => Some("SAMSUNG_PROPRIETARY"),
Self::MESA_VENUS => Some("MESA_VENUS"),
Self::MESA_DOZEN => Some("MESA_DOZEN"),
Self::MESA_NVK => Some("MESA_NVK"),
Self::IMAGINATION_OPEN_SOURCE_MESA => Some("IMAGINATION_OPEN_SOURCE_MESA"),
Self::MESA_AGXV => Some("MESA_AGXV"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for DynamicState {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::VIEWPORT => Some("VIEWPORT"),
Self::SCISSOR => Some("SCISSOR"),
Self::LINE_WIDTH => Some("LINE_WIDTH"),
Self::DEPTH_BIAS => Some("DEPTH_BIAS"),
Self::BLEND_CONSTANTS => Some("BLEND_CONSTANTS"),
Self::DEPTH_BOUNDS => Some("DEPTH_BOUNDS"),
Self::STENCIL_COMPARE_MASK => Some("STENCIL_COMPARE_MASK"),
Self::STENCIL_WRITE_MASK => Some("STENCIL_WRITE_MASK"),
Self::STENCIL_REFERENCE => Some("STENCIL_REFERENCE"),
Self::VIEWPORT_W_SCALING_NV => Some("VIEWPORT_W_SCALING_NV"),
Self::DISCARD_RECTANGLE_EXT => Some("DISCARD_RECTANGLE_EXT"),
Self::DISCARD_RECTANGLE_ENABLE_EXT => Some("DISCARD_RECTANGLE_ENABLE_EXT"),
Self::DISCARD_RECTANGLE_MODE_EXT => Some("DISCARD_RECTANGLE_MODE_EXT"),
Self::SAMPLE_LOCATIONS_EXT => Some("SAMPLE_LOCATIONS_EXT"),
Self::RAY_TRACING_PIPELINE_STACK_SIZE_KHR => {
Some("RAY_TRACING_PIPELINE_STACK_SIZE_KHR")
}
Self::VIEWPORT_SHADING_RATE_PALETTE_NV => Some("VIEWPORT_SHADING_RATE_PALETTE_NV"),
Self::VIEWPORT_COARSE_SAMPLE_ORDER_NV => Some("VIEWPORT_COARSE_SAMPLE_ORDER_NV"),
Self::EXCLUSIVE_SCISSOR_ENABLE_NV => Some("EXCLUSIVE_SCISSOR_ENABLE_NV"),
Self::EXCLUSIVE_SCISSOR_NV => Some("EXCLUSIVE_SCISSOR_NV"),
Self::FRAGMENT_SHADING_RATE_KHR => Some("FRAGMENT_SHADING_RATE_KHR"),
Self::VERTEX_INPUT_EXT => Some("VERTEX_INPUT_EXT"),
Self::PATCH_CONTROL_POINTS_EXT => Some("PATCH_CONTROL_POINTS_EXT"),
Self::LOGIC_OP_EXT => Some("LOGIC_OP_EXT"),
Self::COLOR_WRITE_ENABLE_EXT => Some("COLOR_WRITE_ENABLE_EXT"),
Self::DEPTH_CLAMP_ENABLE_EXT => Some("DEPTH_CLAMP_ENABLE_EXT"),
Self::POLYGON_MODE_EXT => Some("POLYGON_MODE_EXT"),
Self::RASTERIZATION_SAMPLES_EXT => Some("RASTERIZATION_SAMPLES_EXT"),
Self::SAMPLE_MASK_EXT => Some("SAMPLE_MASK_EXT"),
Self::ALPHA_TO_COVERAGE_ENABLE_EXT => Some("ALPHA_TO_COVERAGE_ENABLE_EXT"),
Self::ALPHA_TO_ONE_ENABLE_EXT => Some("ALPHA_TO_ONE_ENABLE_EXT"),
Self::LOGIC_OP_ENABLE_EXT => Some("LOGIC_OP_ENABLE_EXT"),
Self::COLOR_BLEND_ENABLE_EXT => Some("COLOR_BLEND_ENABLE_EXT"),
Self::COLOR_BLEND_EQUATION_EXT => Some("COLOR_BLEND_EQUATION_EXT"),
Self::COLOR_WRITE_MASK_EXT => Some("COLOR_WRITE_MASK_EXT"),
Self::TESSELLATION_DOMAIN_ORIGIN_EXT => Some("TESSELLATION_DOMAIN_ORIGIN_EXT"),
Self::RASTERIZATION_STREAM_EXT => Some("RASTERIZATION_STREAM_EXT"),
Self::CONSERVATIVE_RASTERIZATION_MODE_EXT => {
Some("CONSERVATIVE_RASTERIZATION_MODE_EXT")
}
Self::EXTRA_PRIMITIVE_OVERESTIMATION_SIZE_EXT => {
Some("EXTRA_PRIMITIVE_OVERESTIMATION_SIZE_EXT")
}
Self::DEPTH_CLIP_ENABLE_EXT => Some("DEPTH_CLIP_ENABLE_EXT"),
Self::SAMPLE_LOCATIONS_ENABLE_EXT => Some("SAMPLE_LOCATIONS_ENABLE_EXT"),
Self::COLOR_BLEND_ADVANCED_EXT => Some("COLOR_BLEND_ADVANCED_EXT"),
Self::PROVOKING_VERTEX_MODE_EXT => Some("PROVOKING_VERTEX_MODE_EXT"),
Self::LINE_RASTERIZATION_MODE_EXT => Some("LINE_RASTERIZATION_MODE_EXT"),
Self::LINE_STIPPLE_ENABLE_EXT => Some("LINE_STIPPLE_ENABLE_EXT"),
Self::DEPTH_CLIP_NEGATIVE_ONE_TO_ONE_EXT => Some("DEPTH_CLIP_NEGATIVE_ONE_TO_ONE_EXT"),
Self::VIEWPORT_W_SCALING_ENABLE_NV => Some("VIEWPORT_W_SCALING_ENABLE_NV"),
Self::VIEWPORT_SWIZZLE_NV => Some("VIEWPORT_SWIZZLE_NV"),
Self::COVERAGE_TO_COLOR_ENABLE_NV => Some("COVERAGE_TO_COLOR_ENABLE_NV"),
Self::COVERAGE_TO_COLOR_LOCATION_NV => Some("COVERAGE_TO_COLOR_LOCATION_NV"),
Self::COVERAGE_MODULATION_MODE_NV => Some("COVERAGE_MODULATION_MODE_NV"),
Self::COVERAGE_MODULATION_TABLE_ENABLE_NV => {
Some("COVERAGE_MODULATION_TABLE_ENABLE_NV")
}
Self::COVERAGE_MODULATION_TABLE_NV => Some("COVERAGE_MODULATION_TABLE_NV"),
Self::SHADING_RATE_IMAGE_ENABLE_NV => Some("SHADING_RATE_IMAGE_ENABLE_NV"),
Self::REPRESENTATIVE_FRAGMENT_TEST_ENABLE_NV => {
Some("REPRESENTATIVE_FRAGMENT_TEST_ENABLE_NV")
}
Self::COVERAGE_REDUCTION_MODE_NV => Some("COVERAGE_REDUCTION_MODE_NV"),
Self::ATTACHMENT_FEEDBACK_LOOP_ENABLE_EXT => {
Some("ATTACHMENT_FEEDBACK_LOOP_ENABLE_EXT")
}
Self::LINE_STIPPLE_KHR => Some("LINE_STIPPLE_KHR"),
Self::CULL_MODE => Some("CULL_MODE"),
Self::FRONT_FACE => Some("FRONT_FACE"),
Self::PRIMITIVE_TOPOLOGY => Some("PRIMITIVE_TOPOLOGY"),
Self::VIEWPORT_WITH_COUNT => Some("VIEWPORT_WITH_COUNT"),
Self::SCISSOR_WITH_COUNT => Some("SCISSOR_WITH_COUNT"),
Self::VERTEX_INPUT_BINDING_STRIDE => Some("VERTEX_INPUT_BINDING_STRIDE"),
Self::DEPTH_TEST_ENABLE => Some("DEPTH_TEST_ENABLE"),
Self::DEPTH_WRITE_ENABLE => Some("DEPTH_WRITE_ENABLE"),
Self::DEPTH_COMPARE_OP => Some("DEPTH_COMPARE_OP"),
Self::DEPTH_BOUNDS_TEST_ENABLE => Some("DEPTH_BOUNDS_TEST_ENABLE"),
Self::STENCIL_TEST_ENABLE => Some("STENCIL_TEST_ENABLE"),
Self::STENCIL_OP => Some("STENCIL_OP"),
Self::RASTERIZER_DISCARD_ENABLE => Some("RASTERIZER_DISCARD_ENABLE"),
Self::DEPTH_BIAS_ENABLE => Some("DEPTH_BIAS_ENABLE"),
Self::PRIMITIVE_RESTART_ENABLE => Some("PRIMITIVE_RESTART_ENABLE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for EventCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(EventCreateFlags::DEVICE_ONLY.0, "DEVICE_ONLY")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExportMetalObjectTypeFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
ExportMetalObjectTypeFlagsEXT::METAL_DEVICE.0,
"METAL_DEVICE",
),
(
ExportMetalObjectTypeFlagsEXT::METAL_COMMAND_QUEUE.0,
"METAL_COMMAND_QUEUE",
),
(
ExportMetalObjectTypeFlagsEXT::METAL_BUFFER.0,
"METAL_BUFFER",
),
(
ExportMetalObjectTypeFlagsEXT::METAL_TEXTURE.0,
"METAL_TEXTURE",
),
(
ExportMetalObjectTypeFlagsEXT::METAL_IOSURFACE.0,
"METAL_IOSURFACE",
),
(
ExportMetalObjectTypeFlagsEXT::METAL_SHARED_EVENT.0,
"METAL_SHARED_EVENT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalFenceFeatureFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ExternalFenceFeatureFlags::EXPORTABLE.0, "EXPORTABLE"),
(ExternalFenceFeatureFlags::IMPORTABLE.0, "IMPORTABLE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalFenceHandleTypeFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ExternalFenceHandleTypeFlags::OPAQUE_FD.0, "OPAQUE_FD"),
(ExternalFenceHandleTypeFlags::OPAQUE_WIN32.0, "OPAQUE_WIN32"),
(
ExternalFenceHandleTypeFlags::OPAQUE_WIN32_KMT.0,
"OPAQUE_WIN32_KMT",
),
(ExternalFenceHandleTypeFlags::SYNC_FD.0, "SYNC_FD"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalMemoryFeatureFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
ExternalMemoryFeatureFlags::DEDICATED_ONLY.0,
"DEDICATED_ONLY",
),
(ExternalMemoryFeatureFlags::EXPORTABLE.0, "EXPORTABLE"),
(ExternalMemoryFeatureFlags::IMPORTABLE.0, "IMPORTABLE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalMemoryFeatureFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
ExternalMemoryFeatureFlagsNV::DEDICATED_ONLY.0,
"DEDICATED_ONLY",
),
(ExternalMemoryFeatureFlagsNV::EXPORTABLE.0, "EXPORTABLE"),
(ExternalMemoryFeatureFlagsNV::IMPORTABLE.0, "IMPORTABLE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalMemoryHandleTypeFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ExternalMemoryHandleTypeFlags::OPAQUE_FD.0, "OPAQUE_FD"),
(
ExternalMemoryHandleTypeFlags::OPAQUE_WIN32.0,
"OPAQUE_WIN32",
),
(
ExternalMemoryHandleTypeFlags::OPAQUE_WIN32_KMT.0,
"OPAQUE_WIN32_KMT",
),
(
ExternalMemoryHandleTypeFlags::D3D11_TEXTURE.0,
"D3D11_TEXTURE",
),
(
ExternalMemoryHandleTypeFlags::D3D11_TEXTURE_KMT.0,
"D3D11_TEXTURE_KMT",
),
(ExternalMemoryHandleTypeFlags::D3D12_HEAP.0, "D3D12_HEAP"),
(
ExternalMemoryHandleTypeFlags::D3D12_RESOURCE.0,
"D3D12_RESOURCE",
),
(ExternalMemoryHandleTypeFlags::DMA_BUF_EXT.0, "DMA_BUF_EXT"),
(
ExternalMemoryHandleTypeFlags::ANDROID_HARDWARE_BUFFER_ANDROID.0,
"ANDROID_HARDWARE_BUFFER_ANDROID",
),
(
ExternalMemoryHandleTypeFlags::HOST_ALLOCATION_EXT.0,
"HOST_ALLOCATION_EXT",
),
(
ExternalMemoryHandleTypeFlags::HOST_MAPPED_FOREIGN_MEMORY_EXT.0,
"HOST_MAPPED_FOREIGN_MEMORY_EXT",
),
(
ExternalMemoryHandleTypeFlags::ZIRCON_VMO_FUCHSIA.0,
"ZIRCON_VMO_FUCHSIA",
),
(
ExternalMemoryHandleTypeFlags::RDMA_ADDRESS_NV.0,
"RDMA_ADDRESS_NV",
),
(
ExternalMemoryHandleTypeFlags::SCREEN_BUFFER_QNX.0,
"SCREEN_BUFFER_QNX",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalMemoryHandleTypeFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
ExternalMemoryHandleTypeFlagsNV::OPAQUE_WIN32.0,
"OPAQUE_WIN32",
),
(
ExternalMemoryHandleTypeFlagsNV::OPAQUE_WIN32_KMT.0,
"OPAQUE_WIN32_KMT",
),
(
ExternalMemoryHandleTypeFlagsNV::D3D11_IMAGE.0,
"D3D11_IMAGE",
),
(
ExternalMemoryHandleTypeFlagsNV::D3D11_IMAGE_KMT.0,
"D3D11_IMAGE_KMT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalSemaphoreFeatureFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ExternalSemaphoreFeatureFlags::EXPORTABLE.0, "EXPORTABLE"),
(ExternalSemaphoreFeatureFlags::IMPORTABLE.0, "IMPORTABLE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ExternalSemaphoreHandleTypeFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ExternalSemaphoreHandleTypeFlags::OPAQUE_FD.0, "OPAQUE_FD"),
(
ExternalSemaphoreHandleTypeFlags::OPAQUE_WIN32.0,
"OPAQUE_WIN32",
),
(
ExternalSemaphoreHandleTypeFlags::OPAQUE_WIN32_KMT.0,
"OPAQUE_WIN32_KMT",
),
(
ExternalSemaphoreHandleTypeFlags::D3D12_FENCE.0,
"D3D12_FENCE",
),
(ExternalSemaphoreHandleTypeFlags::SYNC_FD.0, "SYNC_FD"),
(
ExternalSemaphoreHandleTypeFlags::ZIRCON_EVENT_FUCHSIA.0,
"ZIRCON_EVENT_FUCHSIA",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for FenceCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(FenceCreateFlags::SIGNALED.0, "SIGNALED")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for FenceImportFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(FenceImportFlags::TEMPORARY.0, "TEMPORARY")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for Filter {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NEAREST => Some("NEAREST"),
Self::LINEAR => Some("LINEAR"),
Self::CUBIC_EXT => Some("CUBIC_EXT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for Format {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UNDEFINED => Some("UNDEFINED"),
Self::R4G4_UNORM_PACK8 => Some("R4G4_UNORM_PACK8"),
Self::R4G4B4A4_UNORM_PACK16 => Some("R4G4B4A4_UNORM_PACK16"),
Self::B4G4R4A4_UNORM_PACK16 => Some("B4G4R4A4_UNORM_PACK16"),
Self::R5G6B5_UNORM_PACK16 => Some("R5G6B5_UNORM_PACK16"),
Self::B5G6R5_UNORM_PACK16 => Some("B5G6R5_UNORM_PACK16"),
Self::R5G5B5A1_UNORM_PACK16 => Some("R5G5B5A1_UNORM_PACK16"),
Self::B5G5R5A1_UNORM_PACK16 => Some("B5G5R5A1_UNORM_PACK16"),
Self::A1R5G5B5_UNORM_PACK16 => Some("A1R5G5B5_UNORM_PACK16"),
Self::R8_UNORM => Some("R8_UNORM"),
Self::R8_SNORM => Some("R8_SNORM"),
Self::R8_USCALED => Some("R8_USCALED"),
Self::R8_SSCALED => Some("R8_SSCALED"),
Self::R8_UINT => Some("R8_UINT"),
Self::R8_SINT => Some("R8_SINT"),
Self::R8_SRGB => Some("R8_SRGB"),
Self::R8G8_UNORM => Some("R8G8_UNORM"),
Self::R8G8_SNORM => Some("R8G8_SNORM"),
Self::R8G8_USCALED => Some("R8G8_USCALED"),
Self::R8G8_SSCALED => Some("R8G8_SSCALED"),
Self::R8G8_UINT => Some("R8G8_UINT"),
Self::R8G8_SINT => Some("R8G8_SINT"),
Self::R8G8_SRGB => Some("R8G8_SRGB"),
Self::R8G8B8_UNORM => Some("R8G8B8_UNORM"),
Self::R8G8B8_SNORM => Some("R8G8B8_SNORM"),
Self::R8G8B8_USCALED => Some("R8G8B8_USCALED"),
Self::R8G8B8_SSCALED => Some("R8G8B8_SSCALED"),
Self::R8G8B8_UINT => Some("R8G8B8_UINT"),
Self::R8G8B8_SINT => Some("R8G8B8_SINT"),
Self::R8G8B8_SRGB => Some("R8G8B8_SRGB"),
Self::B8G8R8_UNORM => Some("B8G8R8_UNORM"),
Self::B8G8R8_SNORM => Some("B8G8R8_SNORM"),
Self::B8G8R8_USCALED => Some("B8G8R8_USCALED"),
Self::B8G8R8_SSCALED => Some("B8G8R8_SSCALED"),
Self::B8G8R8_UINT => Some("B8G8R8_UINT"),
Self::B8G8R8_SINT => Some("B8G8R8_SINT"),
Self::B8G8R8_SRGB => Some("B8G8R8_SRGB"),
Self::R8G8B8A8_UNORM => Some("R8G8B8A8_UNORM"),
Self::R8G8B8A8_SNORM => Some("R8G8B8A8_SNORM"),
Self::R8G8B8A8_USCALED => Some("R8G8B8A8_USCALED"),
Self::R8G8B8A8_SSCALED => Some("R8G8B8A8_SSCALED"),
Self::R8G8B8A8_UINT => Some("R8G8B8A8_UINT"),
Self::R8G8B8A8_SINT => Some("R8G8B8A8_SINT"),
Self::R8G8B8A8_SRGB => Some("R8G8B8A8_SRGB"),
Self::B8G8R8A8_UNORM => Some("B8G8R8A8_UNORM"),
Self::B8G8R8A8_SNORM => Some("B8G8R8A8_SNORM"),
Self::B8G8R8A8_USCALED => Some("B8G8R8A8_USCALED"),
Self::B8G8R8A8_SSCALED => Some("B8G8R8A8_SSCALED"),
Self::B8G8R8A8_UINT => Some("B8G8R8A8_UINT"),
Self::B8G8R8A8_SINT => Some("B8G8R8A8_SINT"),
Self::B8G8R8A8_SRGB => Some("B8G8R8A8_SRGB"),
Self::A8B8G8R8_UNORM_PACK32 => Some("A8B8G8R8_UNORM_PACK32"),
Self::A8B8G8R8_SNORM_PACK32 => Some("A8B8G8R8_SNORM_PACK32"),
Self::A8B8G8R8_USCALED_PACK32 => Some("A8B8G8R8_USCALED_PACK32"),
Self::A8B8G8R8_SSCALED_PACK32 => Some("A8B8G8R8_SSCALED_PACK32"),
Self::A8B8G8R8_UINT_PACK32 => Some("A8B8G8R8_UINT_PACK32"),
Self::A8B8G8R8_SINT_PACK32 => Some("A8B8G8R8_SINT_PACK32"),
Self::A8B8G8R8_SRGB_PACK32 => Some("A8B8G8R8_SRGB_PACK32"),
Self::A2R10G10B10_UNORM_PACK32 => Some("A2R10G10B10_UNORM_PACK32"),
Self::A2R10G10B10_SNORM_PACK32 => Some("A2R10G10B10_SNORM_PACK32"),
Self::A2R10G10B10_USCALED_PACK32 => Some("A2R10G10B10_USCALED_PACK32"),
Self::A2R10G10B10_SSCALED_PACK32 => Some("A2R10G10B10_SSCALED_PACK32"),
Self::A2R10G10B10_UINT_PACK32 => Some("A2R10G10B10_UINT_PACK32"),
Self::A2R10G10B10_SINT_PACK32 => Some("A2R10G10B10_SINT_PACK32"),
Self::A2B10G10R10_UNORM_PACK32 => Some("A2B10G10R10_UNORM_PACK32"),
Self::A2B10G10R10_SNORM_PACK32 => Some("A2B10G10R10_SNORM_PACK32"),
Self::A2B10G10R10_USCALED_PACK32 => Some("A2B10G10R10_USCALED_PACK32"),
Self::A2B10G10R10_SSCALED_PACK32 => Some("A2B10G10R10_SSCALED_PACK32"),
Self::A2B10G10R10_UINT_PACK32 => Some("A2B10G10R10_UINT_PACK32"),
Self::A2B10G10R10_SINT_PACK32 => Some("A2B10G10R10_SINT_PACK32"),
Self::R16_UNORM => Some("R16_UNORM"),
Self::R16_SNORM => Some("R16_SNORM"),
Self::R16_USCALED => Some("R16_USCALED"),
Self::R16_SSCALED => Some("R16_SSCALED"),
Self::R16_UINT => Some("R16_UINT"),
Self::R16_SINT => Some("R16_SINT"),
Self::R16_SFLOAT => Some("R16_SFLOAT"),
Self::R16G16_UNORM => Some("R16G16_UNORM"),
Self::R16G16_SNORM => Some("R16G16_SNORM"),
Self::R16G16_USCALED => Some("R16G16_USCALED"),
Self::R16G16_SSCALED => Some("R16G16_SSCALED"),
Self::R16G16_UINT => Some("R16G16_UINT"),
Self::R16G16_SINT => Some("R16G16_SINT"),
Self::R16G16_SFLOAT => Some("R16G16_SFLOAT"),
Self::R16G16B16_UNORM => Some("R16G16B16_UNORM"),
Self::R16G16B16_SNORM => Some("R16G16B16_SNORM"),
Self::R16G16B16_USCALED => Some("R16G16B16_USCALED"),
Self::R16G16B16_SSCALED => Some("R16G16B16_SSCALED"),
Self::R16G16B16_UINT => Some("R16G16B16_UINT"),
Self::R16G16B16_SINT => Some("R16G16B16_SINT"),
Self::R16G16B16_SFLOAT => Some("R16G16B16_SFLOAT"),
Self::R16G16B16A16_UNORM => Some("R16G16B16A16_UNORM"),
Self::R16G16B16A16_SNORM => Some("R16G16B16A16_SNORM"),
Self::R16G16B16A16_USCALED => Some("R16G16B16A16_USCALED"),
Self::R16G16B16A16_SSCALED => Some("R16G16B16A16_SSCALED"),
Self::R16G16B16A16_UINT => Some("R16G16B16A16_UINT"),
Self::R16G16B16A16_SINT => Some("R16G16B16A16_SINT"),
Self::R16G16B16A16_SFLOAT => Some("R16G16B16A16_SFLOAT"),
Self::R32_UINT => Some("R32_UINT"),
Self::R32_SINT => Some("R32_SINT"),
Self::R32_SFLOAT => Some("R32_SFLOAT"),
Self::R32G32_UINT => Some("R32G32_UINT"),
Self::R32G32_SINT => Some("R32G32_SINT"),
Self::R32G32_SFLOAT => Some("R32G32_SFLOAT"),
Self::R32G32B32_UINT => Some("R32G32B32_UINT"),
Self::R32G32B32_SINT => Some("R32G32B32_SINT"),
Self::R32G32B32_SFLOAT => Some("R32G32B32_SFLOAT"),
Self::R32G32B32A32_UINT => Some("R32G32B32A32_UINT"),
Self::R32G32B32A32_SINT => Some("R32G32B32A32_SINT"),
Self::R32G32B32A32_SFLOAT => Some("R32G32B32A32_SFLOAT"),
Self::R64_UINT => Some("R64_UINT"),
Self::R64_SINT => Some("R64_SINT"),
Self::R64_SFLOAT => Some("R64_SFLOAT"),
Self::R64G64_UINT => Some("R64G64_UINT"),
Self::R64G64_SINT => Some("R64G64_SINT"),
Self::R64G64_SFLOAT => Some("R64G64_SFLOAT"),
Self::R64G64B64_UINT => Some("R64G64B64_UINT"),
Self::R64G64B64_SINT => Some("R64G64B64_SINT"),
Self::R64G64B64_SFLOAT => Some("R64G64B64_SFLOAT"),
Self::R64G64B64A64_UINT => Some("R64G64B64A64_UINT"),
Self::R64G64B64A64_SINT => Some("R64G64B64A64_SINT"),
Self::R64G64B64A64_SFLOAT => Some("R64G64B64A64_SFLOAT"),
Self::B10G11R11_UFLOAT_PACK32 => Some("B10G11R11_UFLOAT_PACK32"),
Self::E5B9G9R9_UFLOAT_PACK32 => Some("E5B9G9R9_UFLOAT_PACK32"),
Self::D16_UNORM => Some("D16_UNORM"),
Self::X8_D24_UNORM_PACK32 => Some("X8_D24_UNORM_PACK32"),
Self::D32_SFLOAT => Some("D32_SFLOAT"),
Self::S8_UINT => Some("S8_UINT"),
Self::D16_UNORM_S8_UINT => Some("D16_UNORM_S8_UINT"),
Self::D24_UNORM_S8_UINT => Some("D24_UNORM_S8_UINT"),
Self::D32_SFLOAT_S8_UINT => Some("D32_SFLOAT_S8_UINT"),
Self::BC1_RGB_UNORM_BLOCK => Some("BC1_RGB_UNORM_BLOCK"),
Self::BC1_RGB_SRGB_BLOCK => Some("BC1_RGB_SRGB_BLOCK"),
Self::BC1_RGBA_UNORM_BLOCK => Some("BC1_RGBA_UNORM_BLOCK"),
Self::BC1_RGBA_SRGB_BLOCK => Some("BC1_RGBA_SRGB_BLOCK"),
Self::BC2_UNORM_BLOCK => Some("BC2_UNORM_BLOCK"),
Self::BC2_SRGB_BLOCK => Some("BC2_SRGB_BLOCK"),
Self::BC3_UNORM_BLOCK => Some("BC3_UNORM_BLOCK"),
Self::BC3_SRGB_BLOCK => Some("BC3_SRGB_BLOCK"),
Self::BC4_UNORM_BLOCK => Some("BC4_UNORM_BLOCK"),
Self::BC4_SNORM_BLOCK => Some("BC4_SNORM_BLOCK"),
Self::BC5_UNORM_BLOCK => Some("BC5_UNORM_BLOCK"),
Self::BC5_SNORM_BLOCK => Some("BC5_SNORM_BLOCK"),
Self::BC6H_UFLOAT_BLOCK => Some("BC6H_UFLOAT_BLOCK"),
Self::BC6H_SFLOAT_BLOCK => Some("BC6H_SFLOAT_BLOCK"),
Self::BC7_UNORM_BLOCK => Some("BC7_UNORM_BLOCK"),
Self::BC7_SRGB_BLOCK => Some("BC7_SRGB_BLOCK"),
Self::ETC2_R8G8B8_UNORM_BLOCK => Some("ETC2_R8G8B8_UNORM_BLOCK"),
Self::ETC2_R8G8B8_SRGB_BLOCK => Some("ETC2_R8G8B8_SRGB_BLOCK"),
Self::ETC2_R8G8B8A1_UNORM_BLOCK => Some("ETC2_R8G8B8A1_UNORM_BLOCK"),
Self::ETC2_R8G8B8A1_SRGB_BLOCK => Some("ETC2_R8G8B8A1_SRGB_BLOCK"),
Self::ETC2_R8G8B8A8_UNORM_BLOCK => Some("ETC2_R8G8B8A8_UNORM_BLOCK"),
Self::ETC2_R8G8B8A8_SRGB_BLOCK => Some("ETC2_R8G8B8A8_SRGB_BLOCK"),
Self::EAC_R11_UNORM_BLOCK => Some("EAC_R11_UNORM_BLOCK"),
Self::EAC_R11_SNORM_BLOCK => Some("EAC_R11_SNORM_BLOCK"),
Self::EAC_R11G11_UNORM_BLOCK => Some("EAC_R11G11_UNORM_BLOCK"),
Self::EAC_R11G11_SNORM_BLOCK => Some("EAC_R11G11_SNORM_BLOCK"),
Self::ASTC_4X4_UNORM_BLOCK => Some("ASTC_4X4_UNORM_BLOCK"),
Self::ASTC_4X4_SRGB_BLOCK => Some("ASTC_4X4_SRGB_BLOCK"),
Self::ASTC_5X4_UNORM_BLOCK => Some("ASTC_5X4_UNORM_BLOCK"),
Self::ASTC_5X4_SRGB_BLOCK => Some("ASTC_5X4_SRGB_BLOCK"),
Self::ASTC_5X5_UNORM_BLOCK => Some("ASTC_5X5_UNORM_BLOCK"),
Self::ASTC_5X5_SRGB_BLOCK => Some("ASTC_5X5_SRGB_BLOCK"),
Self::ASTC_6X5_UNORM_BLOCK => Some("ASTC_6X5_UNORM_BLOCK"),
Self::ASTC_6X5_SRGB_BLOCK => Some("ASTC_6X5_SRGB_BLOCK"),
Self::ASTC_6X6_UNORM_BLOCK => Some("ASTC_6X6_UNORM_BLOCK"),
Self::ASTC_6X6_SRGB_BLOCK => Some("ASTC_6X6_SRGB_BLOCK"),
Self::ASTC_8X5_UNORM_BLOCK => Some("ASTC_8X5_UNORM_BLOCK"),
Self::ASTC_8X5_SRGB_BLOCK => Some("ASTC_8X5_SRGB_BLOCK"),
Self::ASTC_8X6_UNORM_BLOCK => Some("ASTC_8X6_UNORM_BLOCK"),
Self::ASTC_8X6_SRGB_BLOCK => Some("ASTC_8X6_SRGB_BLOCK"),
Self::ASTC_8X8_UNORM_BLOCK => Some("ASTC_8X8_UNORM_BLOCK"),
Self::ASTC_8X8_SRGB_BLOCK => Some("ASTC_8X8_SRGB_BLOCK"),
Self::ASTC_10X5_UNORM_BLOCK => Some("ASTC_10X5_UNORM_BLOCK"),
Self::ASTC_10X5_SRGB_BLOCK => Some("ASTC_10X5_SRGB_BLOCK"),
Self::ASTC_10X6_UNORM_BLOCK => Some("ASTC_10X6_UNORM_BLOCK"),
Self::ASTC_10X6_SRGB_BLOCK => Some("ASTC_10X6_SRGB_BLOCK"),
Self::ASTC_10X8_UNORM_BLOCK => Some("ASTC_10X8_UNORM_BLOCK"),
Self::ASTC_10X8_SRGB_BLOCK => Some("ASTC_10X8_SRGB_BLOCK"),
Self::ASTC_10X10_UNORM_BLOCK => Some("ASTC_10X10_UNORM_BLOCK"),
Self::ASTC_10X10_SRGB_BLOCK => Some("ASTC_10X10_SRGB_BLOCK"),
Self::ASTC_12X10_UNORM_BLOCK => Some("ASTC_12X10_UNORM_BLOCK"),
Self::ASTC_12X10_SRGB_BLOCK => Some("ASTC_12X10_SRGB_BLOCK"),
Self::ASTC_12X12_UNORM_BLOCK => Some("ASTC_12X12_UNORM_BLOCK"),
Self::ASTC_12X12_SRGB_BLOCK => Some("ASTC_12X12_SRGB_BLOCK"),
Self::PVRTC1_2BPP_UNORM_BLOCK_IMG => Some("PVRTC1_2BPP_UNORM_BLOCK_IMG"),
Self::PVRTC1_4BPP_UNORM_BLOCK_IMG => Some("PVRTC1_4BPP_UNORM_BLOCK_IMG"),
Self::PVRTC2_2BPP_UNORM_BLOCK_IMG => Some("PVRTC2_2BPP_UNORM_BLOCK_IMG"),
Self::PVRTC2_4BPP_UNORM_BLOCK_IMG => Some("PVRTC2_4BPP_UNORM_BLOCK_IMG"),
Self::PVRTC1_2BPP_SRGB_BLOCK_IMG => Some("PVRTC1_2BPP_SRGB_BLOCK_IMG"),
Self::PVRTC1_4BPP_SRGB_BLOCK_IMG => Some("PVRTC1_4BPP_SRGB_BLOCK_IMG"),
Self::PVRTC2_2BPP_SRGB_BLOCK_IMG => Some("PVRTC2_2BPP_SRGB_BLOCK_IMG"),
Self::PVRTC2_4BPP_SRGB_BLOCK_IMG => Some("PVRTC2_4BPP_SRGB_BLOCK_IMG"),
Self::R16G16_S10_5_NV => Some("R16G16_S10_5_NV"),
Self::A1B5G5R5_UNORM_PACK16_KHR => Some("A1B5G5R5_UNORM_PACK16_KHR"),
Self::A8_UNORM_KHR => Some("A8_UNORM_KHR"),
Self::G8B8G8R8_422_UNORM => Some("G8B8G8R8_422_UNORM"),
Self::B8G8R8G8_422_UNORM => Some("B8G8R8G8_422_UNORM"),
Self::G8_B8_R8_3PLANE_420_UNORM => Some("G8_B8_R8_3PLANE_420_UNORM"),
Self::G8_B8R8_2PLANE_420_UNORM => Some("G8_B8R8_2PLANE_420_UNORM"),
Self::G8_B8_R8_3PLANE_422_UNORM => Some("G8_B8_R8_3PLANE_422_UNORM"),
Self::G8_B8R8_2PLANE_422_UNORM => Some("G8_B8R8_2PLANE_422_UNORM"),
Self::G8_B8_R8_3PLANE_444_UNORM => Some("G8_B8_R8_3PLANE_444_UNORM"),
Self::R10X6_UNORM_PACK16 => Some("R10X6_UNORM_PACK16"),
Self::R10X6G10X6_UNORM_2PACK16 => Some("R10X6G10X6_UNORM_2PACK16"),
Self::R10X6G10X6B10X6A10X6_UNORM_4PACK16 => Some("R10X6G10X6B10X6A10X6_UNORM_4PACK16"),
Self::G10X6B10X6G10X6R10X6_422_UNORM_4PACK16 => {
Some("G10X6B10X6G10X6R10X6_422_UNORM_4PACK16")
}
Self::B10X6G10X6R10X6G10X6_422_UNORM_4PACK16 => {
Some("B10X6G10X6R10X6G10X6_422_UNORM_4PACK16")
}
Self::G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16 => {
Some("G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16")
}
Self::G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16 => {
Some("G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16")
}
Self::G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16 => {
Some("G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16")
}
Self::G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16 => {
Some("G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16")
}
Self::G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16 => {
Some("G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16")
}
Self::R12X4_UNORM_PACK16 => Some("R12X4_UNORM_PACK16"),
Self::R12X4G12X4_UNORM_2PACK16 => Some("R12X4G12X4_UNORM_2PACK16"),
Self::R12X4G12X4B12X4A12X4_UNORM_4PACK16 => Some("R12X4G12X4B12X4A12X4_UNORM_4PACK16"),
Self::G12X4B12X4G12X4R12X4_422_UNORM_4PACK16 => {
Some("G12X4B12X4G12X4R12X4_422_UNORM_4PACK16")
}
Self::B12X4G12X4R12X4G12X4_422_UNORM_4PACK16 => {
Some("B12X4G12X4R12X4G12X4_422_UNORM_4PACK16")
}
Self::G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16 => {
Some("G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16")
}
Self::G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16 => {
Some("G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16")
}
Self::G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16 => {
Some("G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16")
}
Self::G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16 => {
Some("G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16")
}
Self::G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16 => {
Some("G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16")
}
Self::G16B16G16R16_422_UNORM => Some("G16B16G16R16_422_UNORM"),
Self::B16G16R16G16_422_UNORM => Some("B16G16R16G16_422_UNORM"),
Self::G16_B16_R16_3PLANE_420_UNORM => Some("G16_B16_R16_3PLANE_420_UNORM"),
Self::G16_B16R16_2PLANE_420_UNORM => Some("G16_B16R16_2PLANE_420_UNORM"),
Self::G16_B16_R16_3PLANE_422_UNORM => Some("G16_B16_R16_3PLANE_422_UNORM"),
Self::G16_B16R16_2PLANE_422_UNORM => Some("G16_B16R16_2PLANE_422_UNORM"),
Self::G16_B16_R16_3PLANE_444_UNORM => Some("G16_B16_R16_3PLANE_444_UNORM"),
Self::G8_B8R8_2PLANE_444_UNORM => Some("G8_B8R8_2PLANE_444_UNORM"),
Self::G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16 => {
Some("G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16")
}
Self::G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16 => {
Some("G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16")
}
Self::G16_B16R16_2PLANE_444_UNORM => Some("G16_B16R16_2PLANE_444_UNORM"),
Self::A4R4G4B4_UNORM_PACK16 => Some("A4R4G4B4_UNORM_PACK16"),
Self::A4B4G4R4_UNORM_PACK16 => Some("A4B4G4R4_UNORM_PACK16"),
Self::ASTC_4X4_SFLOAT_BLOCK => Some("ASTC_4X4_SFLOAT_BLOCK"),
Self::ASTC_5X4_SFLOAT_BLOCK => Some("ASTC_5X4_SFLOAT_BLOCK"),
Self::ASTC_5X5_SFLOAT_BLOCK => Some("ASTC_5X5_SFLOAT_BLOCK"),
Self::ASTC_6X5_SFLOAT_BLOCK => Some("ASTC_6X5_SFLOAT_BLOCK"),
Self::ASTC_6X6_SFLOAT_BLOCK => Some("ASTC_6X6_SFLOAT_BLOCK"),
Self::ASTC_8X5_SFLOAT_BLOCK => Some("ASTC_8X5_SFLOAT_BLOCK"),
Self::ASTC_8X6_SFLOAT_BLOCK => Some("ASTC_8X6_SFLOAT_BLOCK"),
Self::ASTC_8X8_SFLOAT_BLOCK => Some("ASTC_8X8_SFLOAT_BLOCK"),
Self::ASTC_10X5_SFLOAT_BLOCK => Some("ASTC_10X5_SFLOAT_BLOCK"),
Self::ASTC_10X6_SFLOAT_BLOCK => Some("ASTC_10X6_SFLOAT_BLOCK"),
Self::ASTC_10X8_SFLOAT_BLOCK => Some("ASTC_10X8_SFLOAT_BLOCK"),
Self::ASTC_10X10_SFLOAT_BLOCK => Some("ASTC_10X10_SFLOAT_BLOCK"),
Self::ASTC_12X10_SFLOAT_BLOCK => Some("ASTC_12X10_SFLOAT_BLOCK"),
Self::ASTC_12X12_SFLOAT_BLOCK => Some("ASTC_12X12_SFLOAT_BLOCK"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for FormatFeatureFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN : & [(Flags , & str)] = & [(FormatFeatureFlags :: SAMPLED_IMAGE . 0 , "SAMPLED_IMAGE") , (FormatFeatureFlags :: STORAGE_IMAGE . 0 , "STORAGE_IMAGE") , (FormatFeatureFlags :: STORAGE_IMAGE_ATOMIC . 0 , "STORAGE_IMAGE_ATOMIC") , (FormatFeatureFlags :: UNIFORM_TEXEL_BUFFER . 0 , "UNIFORM_TEXEL_BUFFER") , (FormatFeatureFlags :: STORAGE_TEXEL_BUFFER . 0 , "STORAGE_TEXEL_BUFFER") , (FormatFeatureFlags :: STORAGE_TEXEL_BUFFER_ATOMIC . 0 , "STORAGE_TEXEL_BUFFER_ATOMIC") , (FormatFeatureFlags :: VERTEX_BUFFER . 0 , "VERTEX_BUFFER") , (FormatFeatureFlags :: COLOR_ATTACHMENT . 0 , "COLOR_ATTACHMENT") , (FormatFeatureFlags :: COLOR_ATTACHMENT_BLEND . 0 , "COLOR_ATTACHMENT_BLEND") , (FormatFeatureFlags :: DEPTH_STENCIL_ATTACHMENT . 0 , "DEPTH_STENCIL_ATTACHMENT") , (FormatFeatureFlags :: BLIT_SRC . 0 , "BLIT_SRC") , (FormatFeatureFlags :: BLIT_DST . 0 , "BLIT_DST") , (FormatFeatureFlags :: SAMPLED_IMAGE_FILTER_LINEAR . 0 , "SAMPLED_IMAGE_FILTER_LINEAR") , (FormatFeatureFlags :: VIDEO_DECODE_OUTPUT_KHR . 0 , "VIDEO_DECODE_OUTPUT_KHR") , (FormatFeatureFlags :: VIDEO_DECODE_DPB_KHR . 0 , "VIDEO_DECODE_DPB_KHR") , (FormatFeatureFlags :: ACCELERATION_STRUCTURE_VERTEX_BUFFER_KHR . 0 , "ACCELERATION_STRUCTURE_VERTEX_BUFFER_KHR") , (FormatFeatureFlags :: SAMPLED_IMAGE_FILTER_CUBIC_EXT . 0 , "SAMPLED_IMAGE_FILTER_CUBIC_EXT") , (FormatFeatureFlags :: FRAGMENT_DENSITY_MAP_EXT . 0 , "FRAGMENT_DENSITY_MAP_EXT") , (FormatFeatureFlags :: FRAGMENT_SHADING_RATE_ATTACHMENT_KHR . 0 , "FRAGMENT_SHADING_RATE_ATTACHMENT_KHR") , (FormatFeatureFlags :: VIDEO_ENCODE_INPUT_KHR . 0 , "VIDEO_ENCODE_INPUT_KHR") , (FormatFeatureFlags :: VIDEO_ENCODE_DPB_KHR . 0 , "VIDEO_ENCODE_DPB_KHR") , (FormatFeatureFlags :: TRANSFER_SRC . 0 , "TRANSFER_SRC") , (FormatFeatureFlags :: TRANSFER_DST . 0 , "TRANSFER_DST") , (FormatFeatureFlags :: MIDPOINT_CHROMA_SAMPLES . 0 , "MIDPOINT_CHROMA_SAMPLES") , (FormatFeatureFlags :: SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER . 0 , "SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER") , (FormatFeatureFlags :: SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER . 0 , "SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER") , (FormatFeatureFlags :: SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT . 0 , "SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT") , (FormatFeatureFlags :: your_sha256_hashRCEABLE . 0 , your_sha256_hashRCEABLE") , (FormatFeatureFlags :: DISJOINT . 0 , "DISJOINT") , (FormatFeatureFlags :: COSITED_CHROMA_SAMPLES . 0 , "COSITED_CHROMA_SAMPLES") , (FormatFeatureFlags :: SAMPLED_IMAGE_FILTER_MINMAX . 0 , "SAMPLED_IMAGE_FILTER_MINMAX")] ;
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for FormatFeatureFlags2 {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN : & [(Flags64 , & str)] = & [(FormatFeatureFlags2 :: SAMPLED_IMAGE . 0 , "SAMPLED_IMAGE") , (FormatFeatureFlags2 :: STORAGE_IMAGE . 0 , "STORAGE_IMAGE") , (FormatFeatureFlags2 :: STORAGE_IMAGE_ATOMIC . 0 , "STORAGE_IMAGE_ATOMIC") , (FormatFeatureFlags2 :: UNIFORM_TEXEL_BUFFER . 0 , "UNIFORM_TEXEL_BUFFER") , (FormatFeatureFlags2 :: STORAGE_TEXEL_BUFFER . 0 , "STORAGE_TEXEL_BUFFER") , (FormatFeatureFlags2 :: STORAGE_TEXEL_BUFFER_ATOMIC . 0 , "STORAGE_TEXEL_BUFFER_ATOMIC") , (FormatFeatureFlags2 :: VERTEX_BUFFER . 0 , "VERTEX_BUFFER") , (FormatFeatureFlags2 :: COLOR_ATTACHMENT . 0 , "COLOR_ATTACHMENT") , (FormatFeatureFlags2 :: COLOR_ATTACHMENT_BLEND . 0 , "COLOR_ATTACHMENT_BLEND") , (FormatFeatureFlags2 :: DEPTH_STENCIL_ATTACHMENT . 0 , "DEPTH_STENCIL_ATTACHMENT") , (FormatFeatureFlags2 :: BLIT_SRC . 0 , "BLIT_SRC") , (FormatFeatureFlags2 :: BLIT_DST . 0 , "BLIT_DST") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_FILTER_LINEAR . 0 , "SAMPLED_IMAGE_FILTER_LINEAR") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_FILTER_CUBIC . 0 , "SAMPLED_IMAGE_FILTER_CUBIC") , (FormatFeatureFlags2 :: TRANSFER_SRC . 0 , "TRANSFER_SRC") , (FormatFeatureFlags2 :: TRANSFER_DST . 0 , "TRANSFER_DST") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_FILTER_MINMAX . 0 , "SAMPLED_IMAGE_FILTER_MINMAX") , (FormatFeatureFlags2 :: MIDPOINT_CHROMA_SAMPLES . 0 , "MIDPOINT_CHROMA_SAMPLES") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER . 0 , "SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER . 0 , "SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT . 0 , "SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT") , (FormatFeatureFlags2 :: your_sha256_hashRCEABLE . 0 , your_sha256_hashRCEABLE") , (FormatFeatureFlags2 :: DISJOINT . 0 , "DISJOINT") , (FormatFeatureFlags2 :: COSITED_CHROMA_SAMPLES . 0 , "COSITED_CHROMA_SAMPLES") , (FormatFeatureFlags2 :: STORAGE_READ_WITHOUT_FORMAT . 0 , "STORAGE_READ_WITHOUT_FORMAT") , (FormatFeatureFlags2 :: STORAGE_WRITE_WITHOUT_FORMAT . 0 , "STORAGE_WRITE_WITHOUT_FORMAT") , (FormatFeatureFlags2 :: SAMPLED_IMAGE_DEPTH_COMPARISON . 0 , "SAMPLED_IMAGE_DEPTH_COMPARISON") , (FormatFeatureFlags2 :: VIDEO_DECODE_OUTPUT_KHR . 0 , "VIDEO_DECODE_OUTPUT_KHR") , (FormatFeatureFlags2 :: VIDEO_DECODE_DPB_KHR . 0 , "VIDEO_DECODE_DPB_KHR") , (FormatFeatureFlags2 :: ACCELERATION_STRUCTURE_VERTEX_BUFFER_KHR . 0 , "ACCELERATION_STRUCTURE_VERTEX_BUFFER_KHR") , (FormatFeatureFlags2 :: FRAGMENT_DENSITY_MAP_EXT . 0 , "FRAGMENT_DENSITY_MAP_EXT") , (FormatFeatureFlags2 :: FRAGMENT_SHADING_RATE_ATTACHMENT_KHR . 0 , "FRAGMENT_SHADING_RATE_ATTACHMENT_KHR") , (FormatFeatureFlags2 :: HOST_IMAGE_TRANSFER_EXT . 0 , "HOST_IMAGE_TRANSFER_EXT") , (FormatFeatureFlags2 :: VIDEO_ENCODE_INPUT_KHR . 0 , "VIDEO_ENCODE_INPUT_KHR") , (FormatFeatureFlags2 :: VIDEO_ENCODE_DPB_KHR . 0 , "VIDEO_ENCODE_DPB_KHR") , (FormatFeatureFlags2 :: LINEAR_COLOR_ATTACHMENT_NV . 0 , "LINEAR_COLOR_ATTACHMENT_NV") , (FormatFeatureFlags2 :: WEIGHT_IMAGE_QCOM . 0 , "WEIGHT_IMAGE_QCOM") , (FormatFeatureFlags2 :: WEIGHT_SAMPLED_IMAGE_QCOM . 0 , "WEIGHT_SAMPLED_IMAGE_QCOM") , (FormatFeatureFlags2 :: BLOCK_MATCHING_QCOM . 0 , "BLOCK_MATCHING_QCOM") , (FormatFeatureFlags2 :: BOX_FILTER_SAMPLED_QCOM . 0 , "BOX_FILTER_SAMPLED_QCOM") , (FormatFeatureFlags2 :: OPTICAL_FLOW_IMAGE_NV . 0 , "OPTICAL_FLOW_IMAGE_NV") , (FormatFeatureFlags2 :: OPTICAL_FLOW_VECTOR_NV . 0 , "OPTICAL_FLOW_VECTOR_NV") , (FormatFeatureFlags2 :: OPTICAL_FLOW_COST_NV . 0 , "OPTICAL_FLOW_COST_NV")] ;
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for FragmentShadingRateCombinerOpKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::KEEP => Some("KEEP"),
Self::REPLACE => Some("REPLACE"),
Self::MIN => Some("MIN"),
Self::MAX => Some("MAX"),
Self::MUL => Some("MUL"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for FragmentShadingRateNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TYPE_1_INVOCATION_PER_PIXEL => Some("TYPE_1_INVOCATION_PER_PIXEL"),
Self::TYPE_1_INVOCATION_PER_1X2_PIXELS => Some("TYPE_1_INVOCATION_PER_1X2_PIXELS"),
Self::TYPE_1_INVOCATION_PER_2X1_PIXELS => Some("TYPE_1_INVOCATION_PER_2X1_PIXELS"),
Self::TYPE_1_INVOCATION_PER_2X2_PIXELS => Some("TYPE_1_INVOCATION_PER_2X2_PIXELS"),
Self::TYPE_1_INVOCATION_PER_2X4_PIXELS => Some("TYPE_1_INVOCATION_PER_2X4_PIXELS"),
Self::TYPE_1_INVOCATION_PER_4X2_PIXELS => Some("TYPE_1_INVOCATION_PER_4X2_PIXELS"),
Self::TYPE_1_INVOCATION_PER_4X4_PIXELS => Some("TYPE_1_INVOCATION_PER_4X4_PIXELS"),
Self::TYPE_2_INVOCATIONS_PER_PIXEL => Some("TYPE_2_INVOCATIONS_PER_PIXEL"),
Self::TYPE_4_INVOCATIONS_PER_PIXEL => Some("TYPE_4_INVOCATIONS_PER_PIXEL"),
Self::TYPE_8_INVOCATIONS_PER_PIXEL => Some("TYPE_8_INVOCATIONS_PER_PIXEL"),
Self::TYPE_16_INVOCATIONS_PER_PIXEL => Some("TYPE_16_INVOCATIONS_PER_PIXEL"),
Self::NO_INVOCATIONS => Some("NO_INVOCATIONS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for FragmentShadingRateTypeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FRAGMENT_SIZE => Some("FRAGMENT_SIZE"),
Self::ENUMS => Some("ENUMS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for FrameBoundaryFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(FrameBoundaryFlagsEXT::FRAME_END.0, "FRAME_END")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for FramebufferCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(FramebufferCreateFlags::IMAGELESS.0, "IMAGELESS")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for FrontFace {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::COUNTER_CLOCKWISE => Some("COUNTER_CLOCKWISE"),
Self::CLOCKWISE => Some("CLOCKWISE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for FullScreenExclusiveEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEFAULT => Some("DEFAULT"),
Self::ALLOWED => Some("ALLOWED"),
Self::DISALLOWED => Some("DISALLOWED"),
Self::APPLICATION_CONTROLLED => Some("APPLICATION_CONTROLLED"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for GeometryFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(GeometryFlagsKHR::OPAQUE.0, "OPAQUE"),
(
GeometryFlagsKHR::NO_DUPLICATE_ANY_HIT_INVOCATION.0,
"NO_DUPLICATE_ANY_HIT_INVOCATION",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for GeometryInstanceFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
GeometryInstanceFlagsKHR::TRIANGLE_FACING_CULL_DISABLE.0,
"TRIANGLE_FACING_CULL_DISABLE",
),
(
GeometryInstanceFlagsKHR::TRIANGLE_FLIP_FACING.0,
"TRIANGLE_FLIP_FACING",
),
(GeometryInstanceFlagsKHR::FORCE_OPAQUE.0, "FORCE_OPAQUE"),
(
GeometryInstanceFlagsKHR::FORCE_NO_OPAQUE.0,
"FORCE_NO_OPAQUE",
),
(
GeometryInstanceFlagsKHR::FORCE_OPACITY_MICROMAP_2_STATE_EXT.0,
"FORCE_OPACITY_MICROMAP_2_STATE_EXT",
),
(
GeometryInstanceFlagsKHR::DISABLE_OPACITY_MICROMAPS_EXT.0,
"DISABLE_OPACITY_MICROMAPS_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for GeometryTypeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TRIANGLES => Some("TRIANGLES"),
Self::AABBS => Some("AABBS"),
Self::INSTANCES => Some("INSTANCES"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for GraphicsPipelineLibraryFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
GraphicsPipelineLibraryFlagsEXT::VERTEX_INPUT_INTERFACE.0,
"VERTEX_INPUT_INTERFACE",
),
(
GraphicsPipelineLibraryFlagsEXT::PRE_RASTERIZATION_SHADERS.0,
"PRE_RASTERIZATION_SHADERS",
),
(
GraphicsPipelineLibraryFlagsEXT::FRAGMENT_SHADER.0,
"FRAGMENT_SHADER",
),
(
GraphicsPipelineLibraryFlagsEXT::FRAGMENT_OUTPUT_INTERFACE.0,
"FRAGMENT_OUTPUT_INTERFACE",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for HeadlessSurfaceCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for HostImageCopyFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(HostImageCopyFlagsEXT::MEMCPY.0, "MEMCPY")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for IOSSurfaceCreateFlagsMVK {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageAspectFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ImageAspectFlags::COLOR.0, "COLOR"),
(ImageAspectFlags::DEPTH.0, "DEPTH"),
(ImageAspectFlags::STENCIL.0, "STENCIL"),
(ImageAspectFlags::METADATA.0, "METADATA"),
(ImageAspectFlags::MEMORY_PLANE_0_EXT.0, "MEMORY_PLANE_0_EXT"),
(ImageAspectFlags::MEMORY_PLANE_1_EXT.0, "MEMORY_PLANE_1_EXT"),
(ImageAspectFlags::MEMORY_PLANE_2_EXT.0, "MEMORY_PLANE_2_EXT"),
(ImageAspectFlags::MEMORY_PLANE_3_EXT.0, "MEMORY_PLANE_3_EXT"),
(ImageAspectFlags::PLANE_0.0, "PLANE_0"),
(ImageAspectFlags::PLANE_1.0, "PLANE_1"),
(ImageAspectFlags::PLANE_2.0, "PLANE_2"),
(ImageAspectFlags::NONE.0, "NONE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageCompressionFixedRateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ImageCompressionFixedRateFlagsEXT::NONE.0, "NONE"),
(ImageCompressionFixedRateFlagsEXT::TYPE_1BPC.0, "TYPE_1BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_2BPC.0, "TYPE_2BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_3BPC.0, "TYPE_3BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_4BPC.0, "TYPE_4BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_5BPC.0, "TYPE_5BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_6BPC.0, "TYPE_6BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_7BPC.0, "TYPE_7BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_8BPC.0, "TYPE_8BPC"),
(ImageCompressionFixedRateFlagsEXT::TYPE_9BPC.0, "TYPE_9BPC"),
(
ImageCompressionFixedRateFlagsEXT::TYPE_10BPC.0,
"TYPE_10BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_11BPC.0,
"TYPE_11BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_12BPC.0,
"TYPE_12BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_13BPC.0,
"TYPE_13BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_14BPC.0,
"TYPE_14BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_15BPC.0,
"TYPE_15BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_16BPC.0,
"TYPE_16BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_17BPC.0,
"TYPE_17BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_18BPC.0,
"TYPE_18BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_19BPC.0,
"TYPE_19BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_20BPC.0,
"TYPE_20BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_21BPC.0,
"TYPE_21BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_22BPC.0,
"TYPE_22BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_23BPC.0,
"TYPE_23BPC",
),
(
ImageCompressionFixedRateFlagsEXT::TYPE_24BPC.0,
"TYPE_24BPC",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageCompressionFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ImageCompressionFlagsEXT::DEFAULT.0, "DEFAULT"),
(
ImageCompressionFlagsEXT::FIXED_RATE_DEFAULT.0,
"FIXED_RATE_DEFAULT",
),
(
ImageCompressionFlagsEXT::FIXED_RATE_EXPLICIT.0,
"FIXED_RATE_EXPLICIT",
),
(ImageCompressionFlagsEXT::DISABLED.0, "DISABLED"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageConstraintsInfoFlagsFUCHSIA {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
ImageConstraintsInfoFlagsFUCHSIA::CPU_READ_RARELY.0,
"CPU_READ_RARELY",
),
(
ImageConstraintsInfoFlagsFUCHSIA::CPU_READ_OFTEN.0,
"CPU_READ_OFTEN",
),
(
ImageConstraintsInfoFlagsFUCHSIA::CPU_WRITE_RARELY.0,
"CPU_WRITE_RARELY",
),
(
ImageConstraintsInfoFlagsFUCHSIA::CPU_WRITE_OFTEN.0,
"CPU_WRITE_OFTEN",
),
(
ImageConstraintsInfoFlagsFUCHSIA::PROTECTED_OPTIONAL.0,
"PROTECTED_OPTIONAL",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ImageCreateFlags::SPARSE_BINDING.0, "SPARSE_BINDING"),
(ImageCreateFlags::SPARSE_RESIDENCY.0, "SPARSE_RESIDENCY"),
(ImageCreateFlags::SPARSE_ALIASED.0, "SPARSE_ALIASED"),
(ImageCreateFlags::MUTABLE_FORMAT.0, "MUTABLE_FORMAT"),
(ImageCreateFlags::CUBE_COMPATIBLE.0, "CUBE_COMPATIBLE"),
(ImageCreateFlags::CORNER_SAMPLED_NV.0, "CORNER_SAMPLED_NV"),
(
ImageCreateFlags::SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_EXT.0,
"SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_EXT",
),
(ImageCreateFlags::SUBSAMPLED_EXT.0, "SUBSAMPLED_EXT"),
(
ImageCreateFlags::DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT.0,
"DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT",
),
(
ImageCreateFlags::MULTISAMPLED_RENDER_TO_SINGLE_SAMPLED_EXT.0,
"MULTISAMPLED_RENDER_TO_SINGLE_SAMPLED_EXT",
),
(
ImageCreateFlags::TYPE_2D_VIEW_COMPATIBLE_EXT.0,
"TYPE_2D_VIEW_COMPATIBLE_EXT",
),
(
ImageCreateFlags::FRAGMENT_DENSITY_MAP_OFFSET_QCOM.0,
"FRAGMENT_DENSITY_MAP_OFFSET_QCOM",
),
(
ImageCreateFlags::VIDEO_PROFILE_INDEPENDENT_KHR.0,
"VIDEO_PROFILE_INDEPENDENT_KHR",
),
(ImageCreateFlags::ALIAS.0, "ALIAS"),
(
ImageCreateFlags::SPLIT_INSTANCE_BIND_REGIONS.0,
"SPLIT_INSTANCE_BIND_REGIONS",
),
(
ImageCreateFlags::TYPE_2D_ARRAY_COMPATIBLE.0,
"TYPE_2D_ARRAY_COMPATIBLE",
),
(
ImageCreateFlags::BLOCK_TEXEL_VIEW_COMPATIBLE.0,
"BLOCK_TEXEL_VIEW_COMPATIBLE",
),
(ImageCreateFlags::EXTENDED_USAGE.0, "EXTENDED_USAGE"),
(ImageCreateFlags::PROTECTED.0, "PROTECTED"),
(ImageCreateFlags::DISJOINT.0, "DISJOINT"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageFormatConstraintsFlagsFUCHSIA {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageLayout {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UNDEFINED => Some("UNDEFINED"),
Self::GENERAL => Some("GENERAL"),
Self::COLOR_ATTACHMENT_OPTIMAL => Some("COLOR_ATTACHMENT_OPTIMAL"),
Self::DEPTH_STENCIL_ATTACHMENT_OPTIMAL => Some("DEPTH_STENCIL_ATTACHMENT_OPTIMAL"),
Self::DEPTH_STENCIL_READ_ONLY_OPTIMAL => Some("DEPTH_STENCIL_READ_ONLY_OPTIMAL"),
Self::SHADER_READ_ONLY_OPTIMAL => Some("SHADER_READ_ONLY_OPTIMAL"),
Self::TRANSFER_SRC_OPTIMAL => Some("TRANSFER_SRC_OPTIMAL"),
Self::TRANSFER_DST_OPTIMAL => Some("TRANSFER_DST_OPTIMAL"),
Self::PREINITIALIZED => Some("PREINITIALIZED"),
Self::PRESENT_SRC_KHR => Some("PRESENT_SRC_KHR"),
Self::VIDEO_DECODE_DST_KHR => Some("VIDEO_DECODE_DST_KHR"),
Self::VIDEO_DECODE_SRC_KHR => Some("VIDEO_DECODE_SRC_KHR"),
Self::VIDEO_DECODE_DPB_KHR => Some("VIDEO_DECODE_DPB_KHR"),
Self::SHARED_PRESENT_KHR => Some("SHARED_PRESENT_KHR"),
Self::FRAGMENT_DENSITY_MAP_OPTIMAL_EXT => Some("FRAGMENT_DENSITY_MAP_OPTIMAL_EXT"),
Self::FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR => {
Some("FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR")
}
Self::RENDERING_LOCAL_READ_KHR => Some("RENDERING_LOCAL_READ_KHR"),
Self::VIDEO_ENCODE_DST_KHR => Some("VIDEO_ENCODE_DST_KHR"),
Self::VIDEO_ENCODE_SRC_KHR => Some("VIDEO_ENCODE_SRC_KHR"),
Self::VIDEO_ENCODE_DPB_KHR => Some("VIDEO_ENCODE_DPB_KHR"),
Self::ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXT => {
Some("ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXT")
}
Self::DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL => {
Some("DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL")
}
Self::DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL => {
Some("DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL")
}
Self::DEPTH_ATTACHMENT_OPTIMAL => Some("DEPTH_ATTACHMENT_OPTIMAL"),
Self::DEPTH_READ_ONLY_OPTIMAL => Some("DEPTH_READ_ONLY_OPTIMAL"),
Self::STENCIL_ATTACHMENT_OPTIMAL => Some("STENCIL_ATTACHMENT_OPTIMAL"),
Self::STENCIL_READ_ONLY_OPTIMAL => Some("STENCIL_READ_ONLY_OPTIMAL"),
Self::READ_ONLY_OPTIMAL => Some("READ_ONLY_OPTIMAL"),
Self::ATTACHMENT_OPTIMAL => Some("ATTACHMENT_OPTIMAL"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ImagePipeSurfaceCreateFlagsFUCHSIA {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageTiling {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::OPTIMAL => Some("OPTIMAL"),
Self::LINEAR => Some("LINEAR"),
Self::DRM_FORMAT_MODIFIER_EXT => Some("DRM_FORMAT_MODIFIER_EXT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ImageType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TYPE_1D => Some("TYPE_1D"),
Self::TYPE_2D => Some("TYPE_2D"),
Self::TYPE_3D => Some("TYPE_3D"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ImageUsageFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ImageUsageFlags::TRANSFER_SRC.0, "TRANSFER_SRC"),
(ImageUsageFlags::TRANSFER_DST.0, "TRANSFER_DST"),
(ImageUsageFlags::SAMPLED.0, "SAMPLED"),
(ImageUsageFlags::STORAGE.0, "STORAGE"),
(ImageUsageFlags::COLOR_ATTACHMENT.0, "COLOR_ATTACHMENT"),
(
ImageUsageFlags::DEPTH_STENCIL_ATTACHMENT.0,
"DEPTH_STENCIL_ATTACHMENT",
),
(
ImageUsageFlags::TRANSIENT_ATTACHMENT.0,
"TRANSIENT_ATTACHMENT",
),
(ImageUsageFlags::INPUT_ATTACHMENT.0, "INPUT_ATTACHMENT"),
(
ImageUsageFlags::VIDEO_DECODE_DST_KHR.0,
"VIDEO_DECODE_DST_KHR",
),
(
ImageUsageFlags::VIDEO_DECODE_SRC_KHR.0,
"VIDEO_DECODE_SRC_KHR",
),
(
ImageUsageFlags::VIDEO_DECODE_DPB_KHR.0,
"VIDEO_DECODE_DPB_KHR",
),
(
ImageUsageFlags::FRAGMENT_DENSITY_MAP_EXT.0,
"FRAGMENT_DENSITY_MAP_EXT",
),
(
ImageUsageFlags::FRAGMENT_SHADING_RATE_ATTACHMENT_KHR.0,
"FRAGMENT_SHADING_RATE_ATTACHMENT_KHR",
),
(ImageUsageFlags::HOST_TRANSFER_EXT.0, "HOST_TRANSFER_EXT"),
(
ImageUsageFlags::VIDEO_ENCODE_DST_KHR.0,
"VIDEO_ENCODE_DST_KHR",
),
(
ImageUsageFlags::VIDEO_ENCODE_SRC_KHR.0,
"VIDEO_ENCODE_SRC_KHR",
),
(
ImageUsageFlags::VIDEO_ENCODE_DPB_KHR.0,
"VIDEO_ENCODE_DPB_KHR",
),
(
ImageUsageFlags::ATTACHMENT_FEEDBACK_LOOP_EXT.0,
"ATTACHMENT_FEEDBACK_LOOP_EXT",
),
(
ImageUsageFlags::INVOCATION_MASK_HUAWEI.0,
"INVOCATION_MASK_HUAWEI",
),
(ImageUsageFlags::SAMPLE_WEIGHT_QCOM.0, "SAMPLE_WEIGHT_QCOM"),
(
ImageUsageFlags::SAMPLE_BLOCK_MATCH_QCOM.0,
"SAMPLE_BLOCK_MATCH_QCOM",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageViewCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
ImageViewCreateFlags::FRAGMENT_DENSITY_MAP_DYNAMIC_EXT.0,
"FRAGMENT_DENSITY_MAP_DYNAMIC_EXT",
),
(
ImageViewCreateFlags::DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT.0,
"DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT",
),
(
ImageViewCreateFlags::FRAGMENT_DENSITY_MAP_DEFERRED_EXT.0,
"FRAGMENT_DENSITY_MAP_DEFERRED_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ImageViewType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TYPE_1D => Some("TYPE_1D"),
Self::TYPE_2D => Some("TYPE_2D"),
Self::TYPE_3D => Some("TYPE_3D"),
Self::CUBE => Some("CUBE"),
Self::TYPE_1D_ARRAY => Some("TYPE_1D_ARRAY"),
Self::TYPE_2D_ARRAY => Some("TYPE_2D_ARRAY"),
Self::CUBE_ARRAY => Some("CUBE_ARRAY"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for IndexType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UINT16 => Some("UINT16"),
Self::UINT32 => Some("UINT32"),
Self::NONE_KHR => Some("NONE_KHR"),
Self::UINT8_KHR => Some("UINT8_KHR"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for IndirectCommandsLayoutUsageFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
IndirectCommandsLayoutUsageFlagsNV::EXPLICIT_PREPROCESS.0,
"EXPLICIT_PREPROCESS",
),
(
IndirectCommandsLayoutUsageFlagsNV::INDEXED_SEQUENCES.0,
"INDEXED_SEQUENCES",
),
(
IndirectCommandsLayoutUsageFlagsNV::UNORDERED_SEQUENCES.0,
"UNORDERED_SEQUENCES",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for IndirectCommandsTokenTypeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::SHADER_GROUP => Some("SHADER_GROUP"),
Self::STATE_FLAGS => Some("STATE_FLAGS"),
Self::INDEX_BUFFER => Some("INDEX_BUFFER"),
Self::VERTEX_BUFFER => Some("VERTEX_BUFFER"),
Self::PUSH_CONSTANT => Some("PUSH_CONSTANT"),
Self::DRAW_INDEXED => Some("DRAW_INDEXED"),
Self::DRAW => Some("DRAW"),
Self::DRAW_TASKS => Some("DRAW_TASKS"),
Self::DRAW_MESH_TASKS => Some("DRAW_MESH_TASKS"),
Self::PIPELINE => Some("PIPELINE"),
Self::DISPATCH => Some("DISPATCH"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for IndirectStateFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] =
&[(IndirectStateFlagsNV::FLAG_FRONTFACE.0, "FLAG_FRONTFACE")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for InstanceCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
InstanceCreateFlags::ENUMERATE_PORTABILITY_KHR.0,
"ENUMERATE_PORTABILITY_KHR",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for InternalAllocationType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::EXECUTABLE => Some("EXECUTABLE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for LatencyMarkerNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::SIMULATION_START => Some("SIMULATION_START"),
Self::SIMULATION_END => Some("SIMULATION_END"),
Self::RENDERSUBMIT_START => Some("RENDERSUBMIT_START"),
Self::RENDERSUBMIT_END => Some("RENDERSUBMIT_END"),
Self::PRESENT_START => Some("PRESENT_START"),
Self::PRESENT_END => Some("PRESENT_END"),
Self::INPUT_SAMPLE => Some("INPUT_SAMPLE"),
Self::TRIGGER_FLASH => Some("TRIGGER_FLASH"),
Self::OUT_OF_BAND_RENDERSUBMIT_START => Some("OUT_OF_BAND_RENDERSUBMIT_START"),
Self::OUT_OF_BAND_RENDERSUBMIT_END => Some("OUT_OF_BAND_RENDERSUBMIT_END"),
Self::OUT_OF_BAND_PRESENT_START => Some("OUT_OF_BAND_PRESENT_START"),
Self::OUT_OF_BAND_PRESENT_END => Some("OUT_OF_BAND_PRESENT_END"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for LayerSettingTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BOOL32 => Some("BOOL32"),
Self::INT32 => Some("INT32"),
Self::INT64 => Some("INT64"),
Self::UINT32 => Some("UINT32"),
Self::UINT64 => Some("UINT64"),
Self::FLOAT32 => Some("FLOAT32"),
Self::FLOAT64 => Some("FLOAT64"),
Self::STRING => Some("STRING"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for LayeredDriverUnderlyingApiMSFT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NONE => Some("NONE"),
Self::D3D12 => Some("D3D12"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for LineRasterizationModeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEFAULT => Some("DEFAULT"),
Self::RECTANGULAR => Some("RECTANGULAR"),
Self::BRESENHAM => Some("BRESENHAM"),
Self::RECTANGULAR_SMOOTH => Some("RECTANGULAR_SMOOTH"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for LogicOp {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::CLEAR => Some("CLEAR"),
Self::AND => Some("AND"),
Self::AND_REVERSE => Some("AND_REVERSE"),
Self::COPY => Some("COPY"),
Self::AND_INVERTED => Some("AND_INVERTED"),
Self::NO_OP => Some("NO_OP"),
Self::XOR => Some("XOR"),
Self::OR => Some("OR"),
Self::NOR => Some("NOR"),
Self::EQUIVALENT => Some("EQUIVALENT"),
Self::INVERT => Some("INVERT"),
Self::OR_REVERSE => Some("OR_REVERSE"),
Self::COPY_INVERTED => Some("COPY_INVERTED"),
Self::OR_INVERTED => Some("OR_INVERTED"),
Self::NAND => Some("NAND"),
Self::SET => Some("SET"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for MacOSSurfaceCreateFlagsMVK {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MemoryAllocateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(MemoryAllocateFlags::DEVICE_MASK.0, "DEVICE_MASK"),
(MemoryAllocateFlags::DEVICE_ADDRESS.0, "DEVICE_ADDRESS"),
(
MemoryAllocateFlags::DEVICE_ADDRESS_CAPTURE_REPLAY.0,
"DEVICE_ADDRESS_CAPTURE_REPLAY",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MemoryDecompressionMethodFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags64, &str)] = &[(
MemoryDecompressionMethodFlagsNV::GDEFLATE_1_0.0,
"GDEFLATE_1_0",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MemoryHeapFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(MemoryHeapFlags::DEVICE_LOCAL.0, "DEVICE_LOCAL"),
(MemoryHeapFlags::MULTI_INSTANCE.0, "MULTI_INSTANCE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MemoryMapFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(MemoryMapFlags::PLACED_EXT.0, "PLACED_EXT")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MemoryOverallocationBehaviorAMD {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEFAULT => Some("DEFAULT"),
Self::ALLOWED => Some("ALLOWED"),
Self::DISALLOWED => Some("DISALLOWED"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for MemoryPropertyFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(MemoryPropertyFlags::DEVICE_LOCAL.0, "DEVICE_LOCAL"),
(MemoryPropertyFlags::HOST_VISIBLE.0, "HOST_VISIBLE"),
(MemoryPropertyFlags::HOST_COHERENT.0, "HOST_COHERENT"),
(MemoryPropertyFlags::HOST_CACHED.0, "HOST_CACHED"),
(MemoryPropertyFlags::LAZILY_ALLOCATED.0, "LAZILY_ALLOCATED"),
(
MemoryPropertyFlags::DEVICE_COHERENT_AMD.0,
"DEVICE_COHERENT_AMD",
),
(
MemoryPropertyFlags::DEVICE_UNCACHED_AMD.0,
"DEVICE_UNCACHED_AMD",
),
(MemoryPropertyFlags::RDMA_CAPABLE_NV.0, "RDMA_CAPABLE_NV"),
(MemoryPropertyFlags::PROTECTED.0, "PROTECTED"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MemoryUnmapFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(MemoryUnmapFlagsKHR::RESERVE_EXT.0, "RESERVE_EXT")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MetalSurfaceCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MicromapCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
MicromapCreateFlagsEXT::DEVICE_ADDRESS_CAPTURE_REPLAY.0,
"DEVICE_ADDRESS_CAPTURE_REPLAY",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for MicromapTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::OPACITY_MICROMAP => Some("OPACITY_MICROMAP"),
Self::DISPLACEMENT_MICROMAP_NV => Some("DISPLACEMENT_MICROMAP_NV"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for OpacityMicromapFormatEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TYPE_2_STATE => Some("TYPE_2_STATE"),
Self::TYPE_4_STATE => Some("TYPE_4_STATE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for OpacityMicromapSpecialIndexEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FULLY_TRANSPARENT => Some("FULLY_TRANSPARENT"),
Self::FULLY_OPAQUE => Some("FULLY_OPAQUE"),
Self::FULLY_UNKNOWN_TRANSPARENT => Some("FULLY_UNKNOWN_TRANSPARENT"),
Self::FULLY_UNKNOWN_OPAQUE => Some("FULLY_UNKNOWN_OPAQUE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for OpticalFlowExecuteFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
OpticalFlowExecuteFlagsNV::DISABLE_TEMPORAL_HINTS.0,
"DISABLE_TEMPORAL_HINTS",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for OpticalFlowGridSizeFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(OpticalFlowGridSizeFlagsNV::UNKNOWN.0, "UNKNOWN"),
(OpticalFlowGridSizeFlagsNV::TYPE_1X1.0, "TYPE_1X1"),
(OpticalFlowGridSizeFlagsNV::TYPE_2X2.0, "TYPE_2X2"),
(OpticalFlowGridSizeFlagsNV::TYPE_4X4.0, "TYPE_4X4"),
(OpticalFlowGridSizeFlagsNV::TYPE_8X8.0, "TYPE_8X8"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for OpticalFlowPerformanceLevelNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UNKNOWN => Some("UNKNOWN"),
Self::SLOW => Some("SLOW"),
Self::MEDIUM => Some("MEDIUM"),
Self::FAST => Some("FAST"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for OpticalFlowSessionBindingPointNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UNKNOWN => Some("UNKNOWN"),
Self::INPUT => Some("INPUT"),
Self::REFERENCE => Some("REFERENCE"),
Self::HINT => Some("HINT"),
Self::FLOW_VECTOR => Some("FLOW_VECTOR"),
Self::BACKWARD_FLOW_VECTOR => Some("BACKWARD_FLOW_VECTOR"),
Self::COST => Some("COST"),
Self::BACKWARD_COST => Some("BACKWARD_COST"),
Self::GLOBAL_FLOW => Some("GLOBAL_FLOW"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for OpticalFlowSessionCreateFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
OpticalFlowSessionCreateFlagsNV::ENABLE_HINT.0,
"ENABLE_HINT",
),
(
OpticalFlowSessionCreateFlagsNV::ENABLE_COST.0,
"ENABLE_COST",
),
(
OpticalFlowSessionCreateFlagsNV::ENABLE_GLOBAL_FLOW.0,
"ENABLE_GLOBAL_FLOW",
),
(
OpticalFlowSessionCreateFlagsNV::ALLOW_REGIONS.0,
"ALLOW_REGIONS",
),
(
OpticalFlowSessionCreateFlagsNV::BOTH_DIRECTIONS.0,
"BOTH_DIRECTIONS",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for OpticalFlowUsageFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(OpticalFlowUsageFlagsNV::UNKNOWN.0, "UNKNOWN"),
(OpticalFlowUsageFlagsNV::INPUT.0, "INPUT"),
(OpticalFlowUsageFlagsNV::OUTPUT.0, "OUTPUT"),
(OpticalFlowUsageFlagsNV::HINT.0, "HINT"),
(OpticalFlowUsageFlagsNV::COST.0, "COST"),
(OpticalFlowUsageFlagsNV::GLOBAL_FLOW.0, "GLOBAL_FLOW"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for OutOfBandQueueTypeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::RENDER => Some("RENDER"),
Self::PRESENT => Some("PRESENT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PeerMemoryFeatureFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(PeerMemoryFeatureFlags::COPY_SRC.0, "COPY_SRC"),
(PeerMemoryFeatureFlags::COPY_DST.0, "COPY_DST"),
(PeerMemoryFeatureFlags::GENERIC_SRC.0, "GENERIC_SRC"),
(PeerMemoryFeatureFlags::GENERIC_DST.0, "GENERIC_DST"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PerformanceConfigurationTypeINTEL {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::COMMAND_QUEUE_METRICS_DISCOVERY_ACTIVATED => {
Some("COMMAND_QUEUE_METRICS_DISCOVERY_ACTIVATED")
}
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PerformanceCounterDescriptionFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
PerformanceCounterDescriptionFlagsKHR::PERFORMANCE_IMPACTING.0,
"PERFORMANCE_IMPACTING",
),
(
PerformanceCounterDescriptionFlagsKHR::CONCURRENTLY_IMPACTED.0,
"CONCURRENTLY_IMPACTED",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PerformanceCounterScopeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::COMMAND_BUFFER => Some("COMMAND_BUFFER"),
Self::RENDER_PASS => Some("RENDER_PASS"),
Self::COMMAND => Some("COMMAND"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PerformanceCounterStorageKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::INT32 => Some("INT32"),
Self::INT64 => Some("INT64"),
Self::UINT32 => Some("UINT32"),
Self::UINT64 => Some("UINT64"),
Self::FLOAT32 => Some("FLOAT32"),
Self::FLOAT64 => Some("FLOAT64"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PerformanceCounterUnitKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::GENERIC => Some("GENERIC"),
Self::PERCENTAGE => Some("PERCENTAGE"),
Self::NANOSECONDS => Some("NANOSECONDS"),
Self::BYTES => Some("BYTES"),
Self::BYTES_PER_SECOND => Some("BYTES_PER_SECOND"),
Self::KELVIN => Some("KELVIN"),
Self::WATTS => Some("WATTS"),
Self::VOLTS => Some("VOLTS"),
Self::AMPS => Some("AMPS"),
Self::HERTZ => Some("HERTZ"),
Self::CYCLES => Some("CYCLES"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PerformanceOverrideTypeINTEL {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NULL_HARDWARE => Some("NULL_HARDWARE"),
Self::FLUSH_GPU_CACHES => Some("FLUSH_GPU_CACHES"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PerformanceParameterTypeINTEL {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::HW_COUNTERS_SUPPORTED => Some("HW_COUNTERS_SUPPORTED"),
Self::STREAM_MARKER_VALIDS => Some("STREAM_MARKER_VALIDS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PerformanceValueTypeINTEL {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UINT32 => Some("UINT32"),
Self::UINT64 => Some("UINT64"),
Self::FLOAT => Some("FLOAT"),
Self::BOOL => Some("BOOL"),
Self::STRING => Some("STRING"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PhysicalDeviceSchedulingControlsFlagsARM {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags64, &str)] = &[(
PhysicalDeviceSchedulingControlsFlagsARM::SHADER_CORE_COUNT.0,
"SHADER_CORE_COUNT",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PhysicalDeviceType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::OTHER => Some("OTHER"),
Self::INTEGRATED_GPU => Some("INTEGRATED_GPU"),
Self::DISCRETE_GPU => Some("DISCRETE_GPU"),
Self::VIRTUAL_GPU => Some("VIRTUAL_GPU"),
Self::CPU => Some("CPU"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PipelineBindPoint {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::GRAPHICS => Some("GRAPHICS"),
Self::COMPUTE => Some("COMPUTE"),
Self::EXECUTION_GRAPH_AMDX => Some("EXECUTION_GRAPH_AMDX"),
Self::RAY_TRACING_KHR => Some("RAY_TRACING_KHR"),
Self::SUBPASS_SHADING_HUAWEI => Some("SUBPASS_SHADING_HUAWEI"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PipelineCacheCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
PipelineCacheCreateFlags::EXTERNALLY_SYNCHRONIZED.0,
"EXTERNALLY_SYNCHRONIZED",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCacheHeaderVersion {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ONE => Some("ONE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PipelineColorBlendStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
PipelineColorBlendStateCreateFlags::RASTERIZATION_ORDER_ATTACHMENT_ACCESS_EXT.0,
"RASTERIZATION_ORDER_ATTACHMENT_ACCESS_EXT",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCompilerControlFlagsAMD {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCoverageModulationStateCreateFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCoverageReductionStateCreateFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCoverageToColorStateCreateFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
PipelineCreateFlags::DISABLE_OPTIMIZATION.0,
"DISABLE_OPTIMIZATION",
),
(
PipelineCreateFlags::ALLOW_DERIVATIVES.0,
"ALLOW_DERIVATIVES",
),
(PipelineCreateFlags::DERIVATIVE.0, "DERIVATIVE"),
(
PipelineCreateFlags::RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_KHR.0,
"RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_KHR",
),
(
PipelineCreateFlags::RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_EXT.0,
"RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_EXT",
),
(
PipelineCreateFlags::RAY_TRACING_NO_NULL_ANY_HIT_SHADERS_KHR.0,
"RAY_TRACING_NO_NULL_ANY_HIT_SHADERS_KHR",
),
(
PipelineCreateFlags::RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS_KHR.0,
"RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS_KHR",
),
(
PipelineCreateFlags::RAY_TRACING_NO_NULL_MISS_SHADERS_KHR.0,
"RAY_TRACING_NO_NULL_MISS_SHADERS_KHR",
),
(
PipelineCreateFlags::RAY_TRACING_NO_NULL_INTERSECTION_SHADERS_KHR.0,
"RAY_TRACING_NO_NULL_INTERSECTION_SHADERS_KHR",
),
(
PipelineCreateFlags::RAY_TRACING_SKIP_TRIANGLES_KHR.0,
"RAY_TRACING_SKIP_TRIANGLES_KHR",
),
(
PipelineCreateFlags::RAY_TRACING_SKIP_AABBS_KHR.0,
"RAY_TRACING_SKIP_AABBS_KHR",
),
(
PipelineCreateFlags::RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY_KHR.0,
"RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY_KHR",
),
(PipelineCreateFlags::DEFER_COMPILE_NV.0, "DEFER_COMPILE_NV"),
(
PipelineCreateFlags::CAPTURE_STATISTICS_KHR.0,
"CAPTURE_STATISTICS_KHR",
),
(
PipelineCreateFlags::CAPTURE_INTERNAL_REPRESENTATIONS_KHR.0,
"CAPTURE_INTERNAL_REPRESENTATIONS_KHR",
),
(
PipelineCreateFlags::INDIRECT_BINDABLE_NV.0,
"INDIRECT_BINDABLE_NV",
),
(PipelineCreateFlags::LIBRARY_KHR.0, "LIBRARY_KHR"),
(
PipelineCreateFlags::DESCRIPTOR_BUFFER_EXT.0,
"DESCRIPTOR_BUFFER_EXT",
),
(
PipelineCreateFlags::RETAIN_LINK_TIME_OPTIMIZATION_INFO_EXT.0,
"RETAIN_LINK_TIME_OPTIMIZATION_INFO_EXT",
),
(
PipelineCreateFlags::LINK_TIME_OPTIMIZATION_EXT.0,
"LINK_TIME_OPTIMIZATION_EXT",
),
(
PipelineCreateFlags::RAY_TRACING_ALLOW_MOTION_NV.0,
"RAY_TRACING_ALLOW_MOTION_NV",
),
(
PipelineCreateFlags::COLOR_ATTACHMENT_FEEDBACK_LOOP_EXT.0,
"COLOR_ATTACHMENT_FEEDBACK_LOOP_EXT",
),
(
PipelineCreateFlags::DEPTH_STENCIL_ATTACHMENT_FEEDBACK_LOOP_EXT.0,
"DEPTH_STENCIL_ATTACHMENT_FEEDBACK_LOOP_EXT",
),
(
PipelineCreateFlags::RAY_TRACING_OPACITY_MICROMAP_EXT.0,
"RAY_TRACING_OPACITY_MICROMAP_EXT",
),
(
PipelineCreateFlags::RAY_TRACING_DISPLACEMENT_MICROMAP_NV.0,
"RAY_TRACING_DISPLACEMENT_MICROMAP_NV",
),
(
PipelineCreateFlags::NO_PROTECTED_ACCESS_EXT.0,
"NO_PROTECTED_ACCESS_EXT",
),
(
PipelineCreateFlags::PROTECTED_ACCESS_ONLY_EXT.0,
"PROTECTED_ACCESS_ONLY_EXT",
),
(
PipelineCreateFlags::VIEW_INDEX_FROM_DEVICE_INDEX.0,
"VIEW_INDEX_FROM_DEVICE_INDEX",
),
(PipelineCreateFlags::DISPATCH_BASE.0, "DISPATCH_BASE"),
(
PipelineCreateFlags::FAIL_ON_PIPELINE_COMPILE_REQUIRED.0,
"FAIL_ON_PIPELINE_COMPILE_REQUIRED",
),
(
PipelineCreateFlags::EARLY_RETURN_ON_FAILURE.0,
"EARLY_RETURN_ON_FAILURE",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCreateFlags2KHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags64, &str)] = &[
(
PipelineCreateFlags2KHR::DISABLE_OPTIMIZATION.0,
"DISABLE_OPTIMIZATION",
),
(
PipelineCreateFlags2KHR::ALLOW_DERIVATIVES.0,
"ALLOW_DERIVATIVES",
),
(PipelineCreateFlags2KHR::DERIVATIVE.0, "DERIVATIVE"),
(
PipelineCreateFlags2KHR::VIEW_INDEX_FROM_DEVICE_INDEX.0,
"VIEW_INDEX_FROM_DEVICE_INDEX",
),
(PipelineCreateFlags2KHR::DISPATCH_BASE.0, "DISPATCH_BASE"),
(
PipelineCreateFlags2KHR::DEFER_COMPILE_NV.0,
"DEFER_COMPILE_NV",
),
(
PipelineCreateFlags2KHR::CAPTURE_STATISTICS.0,
"CAPTURE_STATISTICS",
),
(
PipelineCreateFlags2KHR::CAPTURE_INTERNAL_REPRESENTATIONS.0,
"CAPTURE_INTERNAL_REPRESENTATIONS",
),
(
PipelineCreateFlags2KHR::FAIL_ON_PIPELINE_COMPILE_REQUIRED.0,
"FAIL_ON_PIPELINE_COMPILE_REQUIRED",
),
(
PipelineCreateFlags2KHR::EARLY_RETURN_ON_FAILURE.0,
"EARLY_RETURN_ON_FAILURE",
),
(
PipelineCreateFlags2KHR::LINK_TIME_OPTIMIZATION_EXT.0,
"LINK_TIME_OPTIMIZATION_EXT",
),
(
PipelineCreateFlags2KHR::RETAIN_LINK_TIME_OPTIMIZATION_INFO_EXT.0,
"RETAIN_LINK_TIME_OPTIMIZATION_INFO_EXT",
),
(PipelineCreateFlags2KHR::LIBRARY.0, "LIBRARY"),
(
PipelineCreateFlags2KHR::RAY_TRACING_SKIP_TRIANGLES.0,
"RAY_TRACING_SKIP_TRIANGLES",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_SKIP_AABBS.0,
"RAY_TRACING_SKIP_AABBS",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_NO_NULL_ANY_HIT_SHADERS.0,
"RAY_TRACING_NO_NULL_ANY_HIT_SHADERS",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS.0,
"RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_NO_NULL_MISS_SHADERS.0,
"RAY_TRACING_NO_NULL_MISS_SHADERS",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_NO_NULL_INTERSECTION_SHADERS.0,
"RAY_TRACING_NO_NULL_INTERSECTION_SHADERS",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY.0,
"RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY",
),
(
PipelineCreateFlags2KHR::INDIRECT_BINDABLE_NV.0,
"INDIRECT_BINDABLE_NV",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_ALLOW_MOTION_NV.0,
"RAY_TRACING_ALLOW_MOTION_NV",
),
(
PipelineCreateFlags2KHR::RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT.0,
"RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT",
),
(
PipelineCreateFlags2KHR::RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_EXT.0,
"RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_EXT",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_OPACITY_MICROMAP_EXT.0,
"RAY_TRACING_OPACITY_MICROMAP_EXT",
),
(
PipelineCreateFlags2KHR::COLOR_ATTACHMENT_FEEDBACK_LOOP_EXT.0,
"COLOR_ATTACHMENT_FEEDBACK_LOOP_EXT",
),
(
PipelineCreateFlags2KHR::DEPTH_STENCIL_ATTACHMENT_FEEDBACK_LOOP_EXT.0,
"DEPTH_STENCIL_ATTACHMENT_FEEDBACK_LOOP_EXT",
),
(
PipelineCreateFlags2KHR::NO_PROTECTED_ACCESS_EXT.0,
"NO_PROTECTED_ACCESS_EXT",
),
(
PipelineCreateFlags2KHR::PROTECTED_ACCESS_ONLY_EXT.0,
"PROTECTED_ACCESS_ONLY_EXT",
),
(
PipelineCreateFlags2KHR::RAY_TRACING_DISPLACEMENT_MICROMAP_NV.0,
"RAY_TRACING_DISPLACEMENT_MICROMAP_NV",
),
(
PipelineCreateFlags2KHR::DESCRIPTOR_BUFFER_EXT.0,
"DESCRIPTOR_BUFFER_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineCreationFeedbackFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(PipelineCreationFeedbackFlags::VALID.0, "VALID"),
(
PipelineCreationFeedbackFlags::APPLICATION_PIPELINE_CACHE_HIT.0,
"APPLICATION_PIPELINE_CACHE_HIT",
),
(
PipelineCreationFeedbackFlags::BASE_PIPELINE_ACCELERATION.0,
"BASE_PIPELINE_ACCELERATION",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineDepthStencilStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN : & [(Flags , & str)] = & [(PipelineDepthStencilStateCreateFlags :: RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_EXT . 0 , "RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_EXT") , (PipelineDepthStencilStateCreateFlags :: RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_EXT . 0 , "RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_EXT")] ;
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineDiscardRectangleStateCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineDynamicStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineExecutableStatisticFormatKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BOOL32 => Some("BOOL32"),
Self::INT64 => Some("INT64"),
Self::UINT64 => Some("UINT64"),
Self::FLOAT64 => Some("FLOAT64"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PipelineInputAssemblyStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineLayoutCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(
PipelineLayoutCreateFlags::INDEPENDENT_SETS_EXT.0,
"INDEPENDENT_SETS_EXT",
)];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineMultisampleStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineRasterizationConservativeStateCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineRasterizationDepthClipStateCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineRasterizationStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineRasterizationStateStreamCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineRobustnessBufferBehaviorEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEVICE_DEFAULT => Some("DEVICE_DEFAULT"),
Self::DISABLED => Some("DISABLED"),
Self::ROBUST_BUFFER_ACCESS => Some("ROBUST_BUFFER_ACCESS"),
Self::ROBUST_BUFFER_ACCESS_2 => Some("ROBUST_BUFFER_ACCESS_2"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PipelineRobustnessImageBehaviorEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEVICE_DEFAULT => Some("DEVICE_DEFAULT"),
Self::DISABLED => Some("DISABLED"),
Self::ROBUST_IMAGE_ACCESS => Some("ROBUST_IMAGE_ACCESS"),
Self::ROBUST_IMAGE_ACCESS_2 => Some("ROBUST_IMAGE_ACCESS_2"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PipelineShaderStageCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
PipelineShaderStageCreateFlags::ALLOW_VARYING_SUBGROUP_SIZE.0,
"ALLOW_VARYING_SUBGROUP_SIZE",
),
(
PipelineShaderStageCreateFlags::REQUIRE_FULL_SUBGROUPS.0,
"REQUIRE_FULL_SUBGROUPS",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineStageFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(PipelineStageFlags::TOP_OF_PIPE.0, "TOP_OF_PIPE"),
(PipelineStageFlags::DRAW_INDIRECT.0, "DRAW_INDIRECT"),
(PipelineStageFlags::VERTEX_INPUT.0, "VERTEX_INPUT"),
(PipelineStageFlags::VERTEX_SHADER.0, "VERTEX_SHADER"),
(
PipelineStageFlags::TESSELLATION_CONTROL_SHADER.0,
"TESSELLATION_CONTROL_SHADER",
),
(
PipelineStageFlags::TESSELLATION_EVALUATION_SHADER.0,
"TESSELLATION_EVALUATION_SHADER",
),
(PipelineStageFlags::GEOMETRY_SHADER.0, "GEOMETRY_SHADER"),
(PipelineStageFlags::FRAGMENT_SHADER.0, "FRAGMENT_SHADER"),
(
PipelineStageFlags::EARLY_FRAGMENT_TESTS.0,
"EARLY_FRAGMENT_TESTS",
),
(
PipelineStageFlags::LATE_FRAGMENT_TESTS.0,
"LATE_FRAGMENT_TESTS",
),
(
PipelineStageFlags::COLOR_ATTACHMENT_OUTPUT.0,
"COLOR_ATTACHMENT_OUTPUT",
),
(PipelineStageFlags::COMPUTE_SHADER.0, "COMPUTE_SHADER"),
(PipelineStageFlags::TRANSFER.0, "TRANSFER"),
(PipelineStageFlags::BOTTOM_OF_PIPE.0, "BOTTOM_OF_PIPE"),
(PipelineStageFlags::HOST.0, "HOST"),
(PipelineStageFlags::ALL_GRAPHICS.0, "ALL_GRAPHICS"),
(PipelineStageFlags::ALL_COMMANDS.0, "ALL_COMMANDS"),
(
PipelineStageFlags::TRANSFORM_FEEDBACK_EXT.0,
"TRANSFORM_FEEDBACK_EXT",
),
(
PipelineStageFlags::CONDITIONAL_RENDERING_EXT.0,
"CONDITIONAL_RENDERING_EXT",
),
(
PipelineStageFlags::ACCELERATION_STRUCTURE_BUILD_KHR.0,
"ACCELERATION_STRUCTURE_BUILD_KHR",
),
(
PipelineStageFlags::RAY_TRACING_SHADER_KHR.0,
"RAY_TRACING_SHADER_KHR",
),
(
PipelineStageFlags::FRAGMENT_DENSITY_PROCESS_EXT.0,
"FRAGMENT_DENSITY_PROCESS_EXT",
),
(
PipelineStageFlags::FRAGMENT_SHADING_RATE_ATTACHMENT_KHR.0,
"FRAGMENT_SHADING_RATE_ATTACHMENT_KHR",
),
(
PipelineStageFlags::COMMAND_PREPROCESS_NV.0,
"COMMAND_PREPROCESS_NV",
),
(PipelineStageFlags::TASK_SHADER_EXT.0, "TASK_SHADER_EXT"),
(PipelineStageFlags::MESH_SHADER_EXT.0, "MESH_SHADER_EXT"),
(PipelineStageFlags::NONE.0, "NONE"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineStageFlags2 {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags64, &str)] = &[
(PipelineStageFlags2::NONE.0, "NONE"),
(PipelineStageFlags2::TOP_OF_PIPE.0, "TOP_OF_PIPE"),
(PipelineStageFlags2::DRAW_INDIRECT.0, "DRAW_INDIRECT"),
(PipelineStageFlags2::VERTEX_INPUT.0, "VERTEX_INPUT"),
(PipelineStageFlags2::VERTEX_SHADER.0, "VERTEX_SHADER"),
(
PipelineStageFlags2::TESSELLATION_CONTROL_SHADER.0,
"TESSELLATION_CONTROL_SHADER",
),
(
PipelineStageFlags2::TESSELLATION_EVALUATION_SHADER.0,
"TESSELLATION_EVALUATION_SHADER",
),
(PipelineStageFlags2::GEOMETRY_SHADER.0, "GEOMETRY_SHADER"),
(PipelineStageFlags2::FRAGMENT_SHADER.0, "FRAGMENT_SHADER"),
(
PipelineStageFlags2::EARLY_FRAGMENT_TESTS.0,
"EARLY_FRAGMENT_TESTS",
),
(
PipelineStageFlags2::LATE_FRAGMENT_TESTS.0,
"LATE_FRAGMENT_TESTS",
),
(
PipelineStageFlags2::COLOR_ATTACHMENT_OUTPUT.0,
"COLOR_ATTACHMENT_OUTPUT",
),
(PipelineStageFlags2::COMPUTE_SHADER.0, "COMPUTE_SHADER"),
(PipelineStageFlags2::ALL_TRANSFER.0, "ALL_TRANSFER"),
(PipelineStageFlags2::BOTTOM_OF_PIPE.0, "BOTTOM_OF_PIPE"),
(PipelineStageFlags2::HOST.0, "HOST"),
(PipelineStageFlags2::ALL_GRAPHICS.0, "ALL_GRAPHICS"),
(PipelineStageFlags2::ALL_COMMANDS.0, "ALL_COMMANDS"),
(PipelineStageFlags2::COPY.0, "COPY"),
(PipelineStageFlags2::RESOLVE.0, "RESOLVE"),
(PipelineStageFlags2::BLIT.0, "BLIT"),
(PipelineStageFlags2::CLEAR.0, "CLEAR"),
(PipelineStageFlags2::INDEX_INPUT.0, "INDEX_INPUT"),
(
PipelineStageFlags2::VERTEX_ATTRIBUTE_INPUT.0,
"VERTEX_ATTRIBUTE_INPUT",
),
(
PipelineStageFlags2::PRE_RASTERIZATION_SHADERS.0,
"PRE_RASTERIZATION_SHADERS",
),
(PipelineStageFlags2::VIDEO_DECODE_KHR.0, "VIDEO_DECODE_KHR"),
(PipelineStageFlags2::VIDEO_ENCODE_KHR.0, "VIDEO_ENCODE_KHR"),
(
PipelineStageFlags2::TRANSFORM_FEEDBACK_EXT.0,
"TRANSFORM_FEEDBACK_EXT",
),
(
PipelineStageFlags2::CONDITIONAL_RENDERING_EXT.0,
"CONDITIONAL_RENDERING_EXT",
),
(
PipelineStageFlags2::COMMAND_PREPROCESS_NV.0,
"COMMAND_PREPROCESS_NV",
),
(
PipelineStageFlags2::FRAGMENT_SHADING_RATE_ATTACHMENT_KHR.0,
"FRAGMENT_SHADING_RATE_ATTACHMENT_KHR",
),
(
PipelineStageFlags2::ACCELERATION_STRUCTURE_BUILD_KHR.0,
"ACCELERATION_STRUCTURE_BUILD_KHR",
),
(
PipelineStageFlags2::RAY_TRACING_SHADER_KHR.0,
"RAY_TRACING_SHADER_KHR",
),
(
PipelineStageFlags2::FRAGMENT_DENSITY_PROCESS_EXT.0,
"FRAGMENT_DENSITY_PROCESS_EXT",
),
(PipelineStageFlags2::TASK_SHADER_EXT.0, "TASK_SHADER_EXT"),
(PipelineStageFlags2::MESH_SHADER_EXT.0, "MESH_SHADER_EXT"),
(
PipelineStageFlags2::SUBPASS_SHADER_HUAWEI.0,
"SUBPASS_SHADER_HUAWEI",
),
(
PipelineStageFlags2::INVOCATION_MASK_HUAWEI.0,
"INVOCATION_MASK_HUAWEI",
),
(
PipelineStageFlags2::ACCELERATION_STRUCTURE_COPY_KHR.0,
"ACCELERATION_STRUCTURE_COPY_KHR",
),
(
PipelineStageFlags2::MICROMAP_BUILD_EXT.0,
"MICROMAP_BUILD_EXT",
),
(
PipelineStageFlags2::CLUSTER_CULLING_SHADER_HUAWEI.0,
"CLUSTER_CULLING_SHADER_HUAWEI",
),
(PipelineStageFlags2::OPTICAL_FLOW_NV.0, "OPTICAL_FLOW_NV"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineTessellationStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineVertexInputStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineViewportStateCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PipelineViewportSwizzleStateCreateFlagsNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PointClippingBehavior {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ALL_CLIP_PLANES => Some("ALL_CLIP_PLANES"),
Self::USER_CLIP_PLANES_ONLY => Some("USER_CLIP_PLANES_ONLY"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PolygonMode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FILL => Some("FILL"),
Self::LINE => Some("LINE"),
Self::POINT => Some("POINT"),
Self::FILL_RECTANGLE_NV => Some("FILL_RECTANGLE_NV"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PresentGravityFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(PresentGravityFlagsEXT::MIN.0, "MIN"),
(PresentGravityFlagsEXT::MAX.0, "MAX"),
(PresentGravityFlagsEXT::CENTERED.0, "CENTERED"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PresentModeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::IMMEDIATE => Some("IMMEDIATE"),
Self::MAILBOX => Some("MAILBOX"),
Self::FIFO => Some("FIFO"),
Self::FIFO_RELAXED => Some("FIFO_RELAXED"),
Self::SHARED_DEMAND_REFRESH => Some("SHARED_DEMAND_REFRESH"),
Self::SHARED_CONTINUOUS_REFRESH => Some("SHARED_CONTINUOUS_REFRESH"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PresentScalingFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(PresentScalingFlagsEXT::ONE_TO_ONE.0, "ONE_TO_ONE"),
(
PresentScalingFlagsEXT::ASPECT_RATIO_STRETCH.0,
"ASPECT_RATIO_STRETCH",
),
(PresentScalingFlagsEXT::STRETCH.0, "STRETCH"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for PrimitiveTopology {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::POINT_LIST => Some("POINT_LIST"),
Self::LINE_LIST => Some("LINE_LIST"),
Self::LINE_STRIP => Some("LINE_STRIP"),
Self::TRIANGLE_LIST => Some("TRIANGLE_LIST"),
Self::TRIANGLE_STRIP => Some("TRIANGLE_STRIP"),
Self::TRIANGLE_FAN => Some("TRIANGLE_FAN"),
Self::LINE_LIST_WITH_ADJACENCY => Some("LINE_LIST_WITH_ADJACENCY"),
Self::LINE_STRIP_WITH_ADJACENCY => Some("LINE_STRIP_WITH_ADJACENCY"),
Self::TRIANGLE_LIST_WITH_ADJACENCY => Some("TRIANGLE_LIST_WITH_ADJACENCY"),
Self::TRIANGLE_STRIP_WITH_ADJACENCY => Some("TRIANGLE_STRIP_WITH_ADJACENCY"),
Self::PATCH_LIST => Some("PATCH_LIST"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for PrivateDataSlotCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ProvokingVertexModeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::FIRST_VERTEX => Some("FIRST_VERTEX"),
Self::LAST_VERTEX => Some("LAST_VERTEX"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for QueryControlFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(QueryControlFlags::PRECISE.0, "PRECISE")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for QueryPipelineStatisticFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
QueryPipelineStatisticFlags::INPUT_ASSEMBLY_VERTICES.0,
"INPUT_ASSEMBLY_VERTICES",
),
(
QueryPipelineStatisticFlags::INPUT_ASSEMBLY_PRIMITIVES.0,
"INPUT_ASSEMBLY_PRIMITIVES",
),
(
QueryPipelineStatisticFlags::VERTEX_SHADER_INVOCATIONS.0,
"VERTEX_SHADER_INVOCATIONS",
),
(
QueryPipelineStatisticFlags::GEOMETRY_SHADER_INVOCATIONS.0,
"GEOMETRY_SHADER_INVOCATIONS",
),
(
QueryPipelineStatisticFlags::GEOMETRY_SHADER_PRIMITIVES.0,
"GEOMETRY_SHADER_PRIMITIVES",
),
(
QueryPipelineStatisticFlags::CLIPPING_INVOCATIONS.0,
"CLIPPING_INVOCATIONS",
),
(
QueryPipelineStatisticFlags::CLIPPING_PRIMITIVES.0,
"CLIPPING_PRIMITIVES",
),
(
QueryPipelineStatisticFlags::FRAGMENT_SHADER_INVOCATIONS.0,
"FRAGMENT_SHADER_INVOCATIONS",
),
(
QueryPipelineStatisticFlags::TESSELLATION_CONTROL_SHADER_PATCHES.0,
"TESSELLATION_CONTROL_SHADER_PATCHES",
),
(
QueryPipelineStatisticFlags::TESSELLATION_EVALUATION_SHADER_INVOCATIONS.0,
"TESSELLATION_EVALUATION_SHADER_INVOCATIONS",
),
(
QueryPipelineStatisticFlags::COMPUTE_SHADER_INVOCATIONS.0,
"COMPUTE_SHADER_INVOCATIONS",
),
(
QueryPipelineStatisticFlags::TASK_SHADER_INVOCATIONS_EXT.0,
"TASK_SHADER_INVOCATIONS_EXT",
),
(
QueryPipelineStatisticFlags::MESH_SHADER_INVOCATIONS_EXT.0,
"MESH_SHADER_INVOCATIONS_EXT",
),
(
QueryPipelineStatisticFlags::CLUSTER_CULLING_SHADER_INVOCATIONS_HUAWEI.0,
"CLUSTER_CULLING_SHADER_INVOCATIONS_HUAWEI",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for QueryPoolCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for QueryPoolSamplingModeINTEL {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::MANUAL => Some("MANUAL"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for QueryResultFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(QueryResultFlags::TYPE_64.0, "TYPE_64"),
(QueryResultFlags::WAIT.0, "WAIT"),
(QueryResultFlags::WITH_AVAILABILITY.0, "WITH_AVAILABILITY"),
(QueryResultFlags::PARTIAL.0, "PARTIAL"),
(QueryResultFlags::WITH_STATUS_KHR.0, "WITH_STATUS_KHR"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for QueryResultStatusKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ERROR => Some("ERROR"),
Self::NOT_READY => Some("NOT_READY"),
Self::COMPLETE => Some("COMPLETE"),
Self::INSUFFICIENTSTREAM_BUFFER_RANGE => Some("INSUFFICIENTSTREAM_BUFFER_RANGE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for QueryType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::OCCLUSION => Some("OCCLUSION"),
Self::PIPELINE_STATISTICS => Some("PIPELINE_STATISTICS"),
Self::TIMESTAMP => Some("TIMESTAMP"),
Self::RESULT_STATUS_ONLY_KHR => Some("RESULT_STATUS_ONLY_KHR"),
Self::TRANSFORM_FEEDBACK_STREAM_EXT => Some("TRANSFORM_FEEDBACK_STREAM_EXT"),
Self::PERFORMANCE_QUERY_KHR => Some("PERFORMANCE_QUERY_KHR"),
Self::ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR => {
Some("ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR")
}
Self::ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR => {
Some("ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR")
}
Self::ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV => {
Some("ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV")
}
Self::PERFORMANCE_QUERY_INTEL => Some("PERFORMANCE_QUERY_INTEL"),
Self::VIDEO_ENCODE_FEEDBACK_KHR => Some("VIDEO_ENCODE_FEEDBACK_KHR"),
Self::MESH_PRIMITIVES_GENERATED_EXT => Some("MESH_PRIMITIVES_GENERATED_EXT"),
Self::PRIMITIVES_GENERATED_EXT => Some("PRIMITIVES_GENERATED_EXT"),
Self::ACCELERATION_STRUCTURE_SERIALIZATION_BOTTOM_LEVEL_POINTERS_KHR => {
Some("ACCELERATION_STRUCTURE_SERIALIZATION_BOTTOM_LEVEL_POINTERS_KHR")
}
Self::ACCELERATION_STRUCTURE_SIZE_KHR => Some("ACCELERATION_STRUCTURE_SIZE_KHR"),
Self::MICROMAP_SERIALIZATION_SIZE_EXT => Some("MICROMAP_SERIALIZATION_SIZE_EXT"),
Self::MICROMAP_COMPACTED_SIZE_EXT => Some("MICROMAP_COMPACTED_SIZE_EXT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for QueueFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(QueueFlags::GRAPHICS.0, "GRAPHICS"),
(QueueFlags::COMPUTE.0, "COMPUTE"),
(QueueFlags::TRANSFER.0, "TRANSFER"),
(QueueFlags::SPARSE_BINDING.0, "SPARSE_BINDING"),
(QueueFlags::VIDEO_DECODE_KHR.0, "VIDEO_DECODE_KHR"),
(QueueFlags::VIDEO_ENCODE_KHR.0, "VIDEO_ENCODE_KHR"),
(QueueFlags::OPTICAL_FLOW_NV.0, "OPTICAL_FLOW_NV"),
(QueueFlags::PROTECTED.0, "PROTECTED"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for QueueGlobalPriorityKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::LOW => Some("LOW"),
Self::MEDIUM => Some("MEDIUM"),
Self::HIGH => Some("HIGH"),
Self::REALTIME => Some("REALTIME"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for RasterizationOrderAMD {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::STRICT => Some("STRICT"),
Self::RELAXED => Some("RELAXED"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for RayTracingInvocationReorderModeNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NONE => Some("NONE"),
Self::REORDER => Some("REORDER"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for RayTracingShaderGroupTypeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::GENERAL => Some("GENERAL"),
Self::TRIANGLES_HIT_GROUP => Some("TRIANGLES_HIT_GROUP"),
Self::PROCEDURAL_HIT_GROUP => Some("PROCEDURAL_HIT_GROUP"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for RenderPassCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] =
&[(RenderPassCreateFlags::TRANSFORM_QCOM.0, "TRANSFORM_QCOM")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for RenderingFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
RenderingFlags::CONTENTS_SECONDARY_COMMAND_BUFFERS.0,
"CONTENTS_SECONDARY_COMMAND_BUFFERS",
),
(RenderingFlags::SUSPENDING.0, "SUSPENDING"),
(RenderingFlags::RESUMING.0, "RESUMING"),
(RenderingFlags::CONTENTS_INLINE_EXT.0, "CONTENTS_INLINE_EXT"),
(
RenderingFlags::ENABLE_LEGACY_DITHERING_EXT.0,
"ENABLE_LEGACY_DITHERING_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ResolveModeFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ResolveModeFlags::NONE.0, "NONE"),
(ResolveModeFlags::SAMPLE_ZERO.0, "SAMPLE_ZERO"),
(ResolveModeFlags::AVERAGE.0, "AVERAGE"),
(ResolveModeFlags::MIN.0, "MIN"),
(ResolveModeFlags::MAX.0, "MAX"),
(
ResolveModeFlags::EXTERNAL_FORMAT_DOWNSAMPLE_ANDROID.0,
"EXTERNAL_FORMAT_DOWNSAMPLE_ANDROID",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SampleCountFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(SampleCountFlags::TYPE_1.0, "TYPE_1"),
(SampleCountFlags::TYPE_2.0, "TYPE_2"),
(SampleCountFlags::TYPE_4.0, "TYPE_4"),
(SampleCountFlags::TYPE_8.0, "TYPE_8"),
(SampleCountFlags::TYPE_16.0, "TYPE_16"),
(SampleCountFlags::TYPE_32.0, "TYPE_32"),
(SampleCountFlags::TYPE_64.0, "TYPE_64"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SamplerAddressMode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::REPEAT => Some("REPEAT"),
Self::MIRRORED_REPEAT => Some("MIRRORED_REPEAT"),
Self::CLAMP_TO_EDGE => Some("CLAMP_TO_EDGE"),
Self::CLAMP_TO_BORDER => Some("CLAMP_TO_BORDER"),
Self::MIRROR_CLAMP_TO_EDGE => Some("MIRROR_CLAMP_TO_EDGE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SamplerCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(SamplerCreateFlags::SUBSAMPLED_EXT.0, "SUBSAMPLED_EXT"),
(
SamplerCreateFlags::SUBSAMPLED_COARSE_RECONSTRUCTION_EXT.0,
"SUBSAMPLED_COARSE_RECONSTRUCTION_EXT",
),
(
SamplerCreateFlags::DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT.0,
"DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT",
),
(
SamplerCreateFlags::NON_SEAMLESS_CUBE_MAP_EXT.0,
"NON_SEAMLESS_CUBE_MAP_EXT",
),
(
SamplerCreateFlags::IMAGE_PROCESSING_QCOM.0,
"IMAGE_PROCESSING_QCOM",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SamplerMipmapMode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NEAREST => Some("NEAREST"),
Self::LINEAR => Some("LINEAR"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SamplerReductionMode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::WEIGHTED_AVERAGE => Some("WEIGHTED_AVERAGE"),
Self::MIN => Some("MIN"),
Self::MAX => Some("MAX"),
Self::WEIGHTED_AVERAGE_RANGECLAMP_QCOM => Some("WEIGHTED_AVERAGE_RANGECLAMP_QCOM"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SamplerYcbcrModelConversion {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::RGB_IDENTITY => Some("RGB_IDENTITY"),
Self::YCBCR_IDENTITY => Some("YCBCR_IDENTITY"),
Self::YCBCR_709 => Some("YCBCR_709"),
Self::YCBCR_601 => Some("YCBCR_601"),
Self::YCBCR_2020 => Some("YCBCR_2020"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SamplerYcbcrRange {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ITU_FULL => Some("ITU_FULL"),
Self::ITU_NARROW => Some("ITU_NARROW"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ScopeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEVICE => Some("DEVICE"),
Self::WORKGROUP => Some("WORKGROUP"),
Self::SUBGROUP => Some("SUBGROUP"),
Self::QUEUE_FAMILY => Some("QUEUE_FAMILY"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ScreenSurfaceCreateFlagsQNX {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SemaphoreCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SemaphoreImportFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(SemaphoreImportFlags::TEMPORARY.0, "TEMPORARY")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SemaphoreType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BINARY => Some("BINARY"),
Self::TIMELINE => Some("TIMELINE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SemaphoreWaitFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(SemaphoreWaitFlags::ANY.0, "ANY")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ShaderCodeTypeEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::BINARY => Some("BINARY"),
Self::SPIRV => Some("SPIRV"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ShaderCorePropertiesFlagsAMD {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ShaderCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ShaderCreateFlagsEXT::LINK_STAGE.0, "LINK_STAGE"),
(
ShaderCreateFlagsEXT::ALLOW_VARYING_SUBGROUP_SIZE.0,
"ALLOW_VARYING_SUBGROUP_SIZE",
),
(
ShaderCreateFlagsEXT::REQUIRE_FULL_SUBGROUPS.0,
"REQUIRE_FULL_SUBGROUPS",
),
(ShaderCreateFlagsEXT::NO_TASK_SHADER.0, "NO_TASK_SHADER"),
(ShaderCreateFlagsEXT::DISPATCH_BASE.0, "DISPATCH_BASE"),
(
ShaderCreateFlagsEXT::FRAGMENT_SHADING_RATE_ATTACHMENT.0,
"FRAGMENT_SHADING_RATE_ATTACHMENT",
),
(
ShaderCreateFlagsEXT::FRAGMENT_DENSITY_MAP_ATTACHMENT.0,
"FRAGMENT_DENSITY_MAP_ATTACHMENT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ShaderFloatControlsIndependence {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::TYPE_32_ONLY => Some("TYPE_32_ONLY"),
Self::ALL => Some("ALL"),
Self::NONE => Some("NONE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ShaderGroupShaderKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::GENERAL => Some("GENERAL"),
Self::CLOSEST_HIT => Some("CLOSEST_HIT"),
Self::ANY_HIT => Some("ANY_HIT"),
Self::INTERSECTION => Some("INTERSECTION"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ShaderInfoTypeAMD {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::STATISTICS => Some("STATISTICS"),
Self::BINARY => Some("BINARY"),
Self::DISASSEMBLY => Some("DISASSEMBLY"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ShaderModuleCreateFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ShaderStageFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ShaderStageFlags::VERTEX.0, "VERTEX"),
(
ShaderStageFlags::TESSELLATION_CONTROL.0,
"TESSELLATION_CONTROL",
),
(
ShaderStageFlags::TESSELLATION_EVALUATION.0,
"TESSELLATION_EVALUATION",
),
(ShaderStageFlags::GEOMETRY.0, "GEOMETRY"),
(ShaderStageFlags::FRAGMENT.0, "FRAGMENT"),
(ShaderStageFlags::COMPUTE.0, "COMPUTE"),
(ShaderStageFlags::ALL_GRAPHICS.0, "ALL_GRAPHICS"),
(ShaderStageFlags::ALL.0, "ALL"),
(ShaderStageFlags::RAYGEN_KHR.0, "RAYGEN_KHR"),
(ShaderStageFlags::ANY_HIT_KHR.0, "ANY_HIT_KHR"),
(ShaderStageFlags::CLOSEST_HIT_KHR.0, "CLOSEST_HIT_KHR"),
(ShaderStageFlags::MISS_KHR.0, "MISS_KHR"),
(ShaderStageFlags::INTERSECTION_KHR.0, "INTERSECTION_KHR"),
(ShaderStageFlags::CALLABLE_KHR.0, "CALLABLE_KHR"),
(ShaderStageFlags::TASK_EXT.0, "TASK_EXT"),
(ShaderStageFlags::MESH_EXT.0, "MESH_EXT"),
(
ShaderStageFlags::SUBPASS_SHADING_HUAWEI.0,
"SUBPASS_SHADING_HUAWEI",
),
(
ShaderStageFlags::CLUSTER_CULLING_HUAWEI.0,
"CLUSTER_CULLING_HUAWEI",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ShadingRatePaletteEntryNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::NO_INVOCATIONS => Some("NO_INVOCATIONS"),
Self::TYPE_16_INVOCATIONS_PER_PIXEL => Some("TYPE_16_INVOCATIONS_PER_PIXEL"),
Self::TYPE_8_INVOCATIONS_PER_PIXEL => Some("TYPE_8_INVOCATIONS_PER_PIXEL"),
Self::TYPE_4_INVOCATIONS_PER_PIXEL => Some("TYPE_4_INVOCATIONS_PER_PIXEL"),
Self::TYPE_2_INVOCATIONS_PER_PIXEL => Some("TYPE_2_INVOCATIONS_PER_PIXEL"),
Self::TYPE_1_INVOCATION_PER_PIXEL => Some("TYPE_1_INVOCATION_PER_PIXEL"),
Self::TYPE_1_INVOCATION_PER_2X1_PIXELS => Some("TYPE_1_INVOCATION_PER_2X1_PIXELS"),
Self::TYPE_1_INVOCATION_PER_1X2_PIXELS => Some("TYPE_1_INVOCATION_PER_1X2_PIXELS"),
Self::TYPE_1_INVOCATION_PER_2X2_PIXELS => Some("TYPE_1_INVOCATION_PER_2X2_PIXELS"),
Self::TYPE_1_INVOCATION_PER_4X2_PIXELS => Some("TYPE_1_INVOCATION_PER_4X2_PIXELS"),
Self::TYPE_1_INVOCATION_PER_2X4_PIXELS => Some("TYPE_1_INVOCATION_PER_2X4_PIXELS"),
Self::TYPE_1_INVOCATION_PER_4X4_PIXELS => Some("TYPE_1_INVOCATION_PER_4X4_PIXELS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SharingMode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::EXCLUSIVE => Some("EXCLUSIVE"),
Self::CONCURRENT => Some("CONCURRENT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SparseImageFormatFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(SparseImageFormatFlags::SINGLE_MIPTAIL.0, "SINGLE_MIPTAIL"),
(
SparseImageFormatFlags::ALIGNED_MIP_SIZE.0,
"ALIGNED_MIP_SIZE",
),
(
SparseImageFormatFlags::NONSTANDARD_BLOCK_SIZE.0,
"NONSTANDARD_BLOCK_SIZE",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SparseMemoryBindFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(SparseMemoryBindFlags::METADATA.0, "METADATA")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for StencilFaceFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(StencilFaceFlags::FRONT.0, "FRONT"),
(StencilFaceFlags::BACK.0, "BACK"),
(StencilFaceFlags::FRONT_AND_BACK.0, "FRONT_AND_BACK"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for StencilOp {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::KEEP => Some("KEEP"),
Self::ZERO => Some("ZERO"),
Self::REPLACE => Some("REPLACE"),
Self::INCREMENT_AND_CLAMP => Some("INCREMENT_AND_CLAMP"),
Self::DECREMENT_AND_CLAMP => Some("DECREMENT_AND_CLAMP"),
Self::INVERT => Some("INVERT"),
Self::INCREMENT_AND_WRAP => Some("INCREMENT_AND_WRAP"),
Self::DECREMENT_AND_WRAP => Some("DECREMENT_AND_WRAP"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for StreamDescriptorSurfaceCreateFlagsGGP {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for StructureType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::APPLICATION_INFO => Some("APPLICATION_INFO"),
Self::INSTANCE_CREATE_INFO => Some("INSTANCE_CREATE_INFO"),
Self::DEVICE_QUEUE_CREATE_INFO => Some("DEVICE_QUEUE_CREATE_INFO"),
Self::DEVICE_CREATE_INFO => Some("DEVICE_CREATE_INFO"),
Self::SUBMIT_INFO => Some("SUBMIT_INFO"),
Self::MEMORY_ALLOCATE_INFO => Some("MEMORY_ALLOCATE_INFO"),
Self::MAPPED_MEMORY_RANGE => Some("MAPPED_MEMORY_RANGE"),
Self::BIND_SPARSE_INFO => Some("BIND_SPARSE_INFO"),
Self::FENCE_CREATE_INFO => Some("FENCE_CREATE_INFO"),
Self::SEMAPHORE_CREATE_INFO => Some("SEMAPHORE_CREATE_INFO"),
Self::EVENT_CREATE_INFO => Some("EVENT_CREATE_INFO"),
Self::QUERY_POOL_CREATE_INFO => Some("QUERY_POOL_CREATE_INFO"),
Self::BUFFER_CREATE_INFO => Some("BUFFER_CREATE_INFO"),
Self::BUFFER_VIEW_CREATE_INFO => Some("BUFFER_VIEW_CREATE_INFO"),
Self::IMAGE_CREATE_INFO => Some("IMAGE_CREATE_INFO"),
Self::IMAGE_VIEW_CREATE_INFO => Some("IMAGE_VIEW_CREATE_INFO"),
Self::SHADER_MODULE_CREATE_INFO => Some("SHADER_MODULE_CREATE_INFO"),
Self::PIPELINE_CACHE_CREATE_INFO => Some("PIPELINE_CACHE_CREATE_INFO"),
Self::PIPELINE_SHADER_STAGE_CREATE_INFO => Some("PIPELINE_SHADER_STAGE_CREATE_INFO"),
Self::PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO => {
Some("PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO")
}
Self::PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO => {
Some("PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO")
}
Self::PIPELINE_TESSELLATION_STATE_CREATE_INFO => {
Some("PIPELINE_TESSELLATION_STATE_CREATE_INFO")
}
Self::PIPELINE_VIEWPORT_STATE_CREATE_INFO => {
Some("PIPELINE_VIEWPORT_STATE_CREATE_INFO")
}
Self::PIPELINE_RASTERIZATION_STATE_CREATE_INFO => {
Some("PIPELINE_RASTERIZATION_STATE_CREATE_INFO")
}
Self::PIPELINE_MULTISAMPLE_STATE_CREATE_INFO => {
Some("PIPELINE_MULTISAMPLE_STATE_CREATE_INFO")
}
Self::PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO => {
Some("PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO")
}
Self::PIPELINE_COLOR_BLEND_STATE_CREATE_INFO => {
Some("PIPELINE_COLOR_BLEND_STATE_CREATE_INFO")
}
Self::PIPELINE_DYNAMIC_STATE_CREATE_INFO => Some("PIPELINE_DYNAMIC_STATE_CREATE_INFO"),
Self::GRAPHICS_PIPELINE_CREATE_INFO => Some("GRAPHICS_PIPELINE_CREATE_INFO"),
Self::COMPUTE_PIPELINE_CREATE_INFO => Some("COMPUTE_PIPELINE_CREATE_INFO"),
Self::PIPELINE_LAYOUT_CREATE_INFO => Some("PIPELINE_LAYOUT_CREATE_INFO"),
Self::SAMPLER_CREATE_INFO => Some("SAMPLER_CREATE_INFO"),
Self::DESCRIPTOR_SET_LAYOUT_CREATE_INFO => Some("DESCRIPTOR_SET_LAYOUT_CREATE_INFO"),
Self::DESCRIPTOR_POOL_CREATE_INFO => Some("DESCRIPTOR_POOL_CREATE_INFO"),
Self::DESCRIPTOR_SET_ALLOCATE_INFO => Some("DESCRIPTOR_SET_ALLOCATE_INFO"),
Self::WRITE_DESCRIPTOR_SET => Some("WRITE_DESCRIPTOR_SET"),
Self::COPY_DESCRIPTOR_SET => Some("COPY_DESCRIPTOR_SET"),
Self::FRAMEBUFFER_CREATE_INFO => Some("FRAMEBUFFER_CREATE_INFO"),
Self::RENDER_PASS_CREATE_INFO => Some("RENDER_PASS_CREATE_INFO"),
Self::COMMAND_POOL_CREATE_INFO => Some("COMMAND_POOL_CREATE_INFO"),
Self::COMMAND_BUFFER_ALLOCATE_INFO => Some("COMMAND_BUFFER_ALLOCATE_INFO"),
Self::COMMAND_BUFFER_INHERITANCE_INFO => Some("COMMAND_BUFFER_INHERITANCE_INFO"),
Self::COMMAND_BUFFER_BEGIN_INFO => Some("COMMAND_BUFFER_BEGIN_INFO"),
Self::RENDER_PASS_BEGIN_INFO => Some("RENDER_PASS_BEGIN_INFO"),
Self::BUFFER_MEMORY_BARRIER => Some("BUFFER_MEMORY_BARRIER"),
Self::IMAGE_MEMORY_BARRIER => Some("IMAGE_MEMORY_BARRIER"),
Self::MEMORY_BARRIER => Some("MEMORY_BARRIER"),
Self::LOADER_INSTANCE_CREATE_INFO => Some("LOADER_INSTANCE_CREATE_INFO"),
Self::LOADER_DEVICE_CREATE_INFO => Some("LOADER_DEVICE_CREATE_INFO"),
Self::SWAPCHAIN_CREATE_INFO_KHR => Some("SWAPCHAIN_CREATE_INFO_KHR"),
Self::PRESENT_INFO_KHR => Some("PRESENT_INFO_KHR"),
Self::DEVICE_GROUP_PRESENT_CAPABILITIES_KHR => {
Some("DEVICE_GROUP_PRESENT_CAPABILITIES_KHR")
}
Self::IMAGE_SWAPCHAIN_CREATE_INFO_KHR => Some("IMAGE_SWAPCHAIN_CREATE_INFO_KHR"),
Self::BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR => {
Some("BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR")
}
Self::ACQUIRE_NEXT_IMAGE_INFO_KHR => Some("ACQUIRE_NEXT_IMAGE_INFO_KHR"),
Self::DEVICE_GROUP_PRESENT_INFO_KHR => Some("DEVICE_GROUP_PRESENT_INFO_KHR"),
Self::DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR => {
Some("DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR")
}
Self::DISPLAY_MODE_CREATE_INFO_KHR => Some("DISPLAY_MODE_CREATE_INFO_KHR"),
Self::DISPLAY_SURFACE_CREATE_INFO_KHR => Some("DISPLAY_SURFACE_CREATE_INFO_KHR"),
Self::DISPLAY_PRESENT_INFO_KHR => Some("DISPLAY_PRESENT_INFO_KHR"),
Self::XLIB_SURFACE_CREATE_INFO_KHR => Some("XLIB_SURFACE_CREATE_INFO_KHR"),
Self::XCB_SURFACE_CREATE_INFO_KHR => Some("XCB_SURFACE_CREATE_INFO_KHR"),
Self::WAYLAND_SURFACE_CREATE_INFO_KHR => Some("WAYLAND_SURFACE_CREATE_INFO_KHR"),
Self::ANDROID_SURFACE_CREATE_INFO_KHR => Some("ANDROID_SURFACE_CREATE_INFO_KHR"),
Self::WIN32_SURFACE_CREATE_INFO_KHR => Some("WIN32_SURFACE_CREATE_INFO_KHR"),
Self::NATIVE_BUFFER_ANDROID => Some("NATIVE_BUFFER_ANDROID"),
Self::SWAPCHAIN_IMAGE_CREATE_INFO_ANDROID => {
Some("SWAPCHAIN_IMAGE_CREATE_INFO_ANDROID")
}
Self::PHYSICAL_DEVICE_PRESENTATION_PROPERTIES_ANDROID => {
Some("PHYSICAL_DEVICE_PRESENTATION_PROPERTIES_ANDROID")
}
Self::DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT => {
Some("DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT")
}
Self::PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD => {
Some("PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD")
}
Self::DEBUG_MARKER_OBJECT_NAME_INFO_EXT => Some("DEBUG_MARKER_OBJECT_NAME_INFO_EXT"),
Self::DEBUG_MARKER_OBJECT_TAG_INFO_EXT => Some("DEBUG_MARKER_OBJECT_TAG_INFO_EXT"),
Self::DEBUG_MARKER_MARKER_INFO_EXT => Some("DEBUG_MARKER_MARKER_INFO_EXT"),
Self::VIDEO_PROFILE_INFO_KHR => Some("VIDEO_PROFILE_INFO_KHR"),
Self::VIDEO_CAPABILITIES_KHR => Some("VIDEO_CAPABILITIES_KHR"),
Self::VIDEO_PICTURE_RESOURCE_INFO_KHR => Some("VIDEO_PICTURE_RESOURCE_INFO_KHR"),
Self::VIDEO_SESSION_MEMORY_REQUIREMENTS_KHR => {
Some("VIDEO_SESSION_MEMORY_REQUIREMENTS_KHR")
}
Self::BIND_VIDEO_SESSION_MEMORY_INFO_KHR => Some("BIND_VIDEO_SESSION_MEMORY_INFO_KHR"),
Self::VIDEO_SESSION_CREATE_INFO_KHR => Some("VIDEO_SESSION_CREATE_INFO_KHR"),
Self::VIDEO_SESSION_PARAMETERS_CREATE_INFO_KHR => {
Some("VIDEO_SESSION_PARAMETERS_CREATE_INFO_KHR")
}
Self::VIDEO_SESSION_PARAMETERS_UPDATE_INFO_KHR => {
Some("VIDEO_SESSION_PARAMETERS_UPDATE_INFO_KHR")
}
Self::VIDEO_BEGIN_CODING_INFO_KHR => Some("VIDEO_BEGIN_CODING_INFO_KHR"),
Self::VIDEO_END_CODING_INFO_KHR => Some("VIDEO_END_CODING_INFO_KHR"),
Self::VIDEO_CODING_CONTROL_INFO_KHR => Some("VIDEO_CODING_CONTROL_INFO_KHR"),
Self::VIDEO_REFERENCE_SLOT_INFO_KHR => Some("VIDEO_REFERENCE_SLOT_INFO_KHR"),
Self::QUEUE_FAMILY_VIDEO_PROPERTIES_KHR => Some("QUEUE_FAMILY_VIDEO_PROPERTIES_KHR"),
Self::VIDEO_PROFILE_LIST_INFO_KHR => Some("VIDEO_PROFILE_LIST_INFO_KHR"),
Self::PHYSICAL_DEVICE_VIDEO_FORMAT_INFO_KHR => {
Some("PHYSICAL_DEVICE_VIDEO_FORMAT_INFO_KHR")
}
Self::VIDEO_FORMAT_PROPERTIES_KHR => Some("VIDEO_FORMAT_PROPERTIES_KHR"),
Self::QUEUE_FAMILY_QUERY_RESULT_STATUS_PROPERTIES_KHR => {
Some("QUEUE_FAMILY_QUERY_RESULT_STATUS_PROPERTIES_KHR")
}
Self::VIDEO_DECODE_INFO_KHR => Some("VIDEO_DECODE_INFO_KHR"),
Self::VIDEO_DECODE_CAPABILITIES_KHR => Some("VIDEO_DECODE_CAPABILITIES_KHR"),
Self::VIDEO_DECODE_USAGE_INFO_KHR => Some("VIDEO_DECODE_USAGE_INFO_KHR"),
Self::DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV => {
Some("DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV")
}
Self::DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV => {
Some("DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV")
}
Self::DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV => {
Some("DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV")
}
Self::PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT")
}
Self::PIPELINE_RASTERIZATION_STATE_STREAM_CREATE_INFO_EXT => {
Some("PIPELINE_RASTERIZATION_STATE_STREAM_CREATE_INFO_EXT")
}
Self::CU_MODULE_CREATE_INFO_NVX => Some("CU_MODULE_CREATE_INFO_NVX"),
Self::CU_FUNCTION_CREATE_INFO_NVX => Some("CU_FUNCTION_CREATE_INFO_NVX"),
Self::CU_LAUNCH_INFO_NVX => Some("CU_LAUNCH_INFO_NVX"),
Self::IMAGE_VIEW_HANDLE_INFO_NVX => Some("IMAGE_VIEW_HANDLE_INFO_NVX"),
Self::IMAGE_VIEW_ADDRESS_PROPERTIES_NVX => Some("IMAGE_VIEW_ADDRESS_PROPERTIES_NVX"),
Self::VIDEO_ENCODE_H264_CAPABILITIES_KHR => Some("VIDEO_ENCODE_H264_CAPABILITIES_KHR"),
Self::VIDEO_ENCODE_H264_SESSION_PARAMETERS_CREATE_INFO_KHR => {
Some("VIDEO_ENCODE_H264_SESSION_PARAMETERS_CREATE_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_SESSION_PARAMETERS_ADD_INFO_KHR => {
Some("VIDEO_ENCODE_H264_SESSION_PARAMETERS_ADD_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_PICTURE_INFO_KHR => Some("VIDEO_ENCODE_H264_PICTURE_INFO_KHR"),
Self::VIDEO_ENCODE_H264_DPB_SLOT_INFO_KHR => {
Some("VIDEO_ENCODE_H264_DPB_SLOT_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_NALU_SLICE_INFO_KHR => {
Some("VIDEO_ENCODE_H264_NALU_SLICE_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_GOP_REMAINING_FRAME_INFO_KHR => {
Some("VIDEO_ENCODE_H264_GOP_REMAINING_FRAME_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_PROFILE_INFO_KHR => Some("VIDEO_ENCODE_H264_PROFILE_INFO_KHR"),
Self::VIDEO_ENCODE_H264_RATE_CONTROL_INFO_KHR => {
Some("VIDEO_ENCODE_H264_RATE_CONTROL_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_RATE_CONTROL_LAYER_INFO_KHR => {
Some("VIDEO_ENCODE_H264_RATE_CONTROL_LAYER_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_SESSION_CREATE_INFO_KHR => {
Some("VIDEO_ENCODE_H264_SESSION_CREATE_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_QUALITY_LEVEL_PROPERTIES_KHR => {
Some("VIDEO_ENCODE_H264_QUALITY_LEVEL_PROPERTIES_KHR")
}
Self::VIDEO_ENCODE_H264_SESSION_PARAMETERS_GET_INFO_KHR => {
Some("VIDEO_ENCODE_H264_SESSION_PARAMETERS_GET_INFO_KHR")
}
Self::VIDEO_ENCODE_H264_SESSION_PARAMETERS_FEEDBACK_INFO_KHR => {
Some("VIDEO_ENCODE_H264_SESSION_PARAMETERS_FEEDBACK_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_CAPABILITIES_KHR => Some("VIDEO_ENCODE_H265_CAPABILITIES_KHR"),
Self::VIDEO_ENCODE_H265_SESSION_PARAMETERS_CREATE_INFO_KHR => {
Some("VIDEO_ENCODE_H265_SESSION_PARAMETERS_CREATE_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_SESSION_PARAMETERS_ADD_INFO_KHR => {
Some("VIDEO_ENCODE_H265_SESSION_PARAMETERS_ADD_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_PICTURE_INFO_KHR => Some("VIDEO_ENCODE_H265_PICTURE_INFO_KHR"),
Self::VIDEO_ENCODE_H265_DPB_SLOT_INFO_KHR => {
Some("VIDEO_ENCODE_H265_DPB_SLOT_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_NALU_SLICE_SEGMENT_INFO_KHR => {
Some("VIDEO_ENCODE_H265_NALU_SLICE_SEGMENT_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_GOP_REMAINING_FRAME_INFO_KHR => {
Some("VIDEO_ENCODE_H265_GOP_REMAINING_FRAME_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_PROFILE_INFO_KHR => Some("VIDEO_ENCODE_H265_PROFILE_INFO_KHR"),
Self::VIDEO_ENCODE_H265_RATE_CONTROL_INFO_KHR => {
Some("VIDEO_ENCODE_H265_RATE_CONTROL_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_RATE_CONTROL_LAYER_INFO_KHR => {
Some("VIDEO_ENCODE_H265_RATE_CONTROL_LAYER_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_SESSION_CREATE_INFO_KHR => {
Some("VIDEO_ENCODE_H265_SESSION_CREATE_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_QUALITY_LEVEL_PROPERTIES_KHR => {
Some("VIDEO_ENCODE_H265_QUALITY_LEVEL_PROPERTIES_KHR")
}
Self::VIDEO_ENCODE_H265_SESSION_PARAMETERS_GET_INFO_KHR => {
Some("VIDEO_ENCODE_H265_SESSION_PARAMETERS_GET_INFO_KHR")
}
Self::VIDEO_ENCODE_H265_SESSION_PARAMETERS_FEEDBACK_INFO_KHR => {
Some("VIDEO_ENCODE_H265_SESSION_PARAMETERS_FEEDBACK_INFO_KHR")
}
Self::VIDEO_DECODE_H264_CAPABILITIES_KHR => Some("VIDEO_DECODE_H264_CAPABILITIES_KHR"),
Self::VIDEO_DECODE_H264_PICTURE_INFO_KHR => Some("VIDEO_DECODE_H264_PICTURE_INFO_KHR"),
Self::VIDEO_DECODE_H264_PROFILE_INFO_KHR => Some("VIDEO_DECODE_H264_PROFILE_INFO_KHR"),
Self::VIDEO_DECODE_H264_SESSION_PARAMETERS_CREATE_INFO_KHR => {
Some("VIDEO_DECODE_H264_SESSION_PARAMETERS_CREATE_INFO_KHR")
}
Self::VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_KHR => {
Some("VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_KHR")
}
Self::VIDEO_DECODE_H264_DPB_SLOT_INFO_KHR => {
Some("VIDEO_DECODE_H264_DPB_SLOT_INFO_KHR")
}
Self::TEXTURE_LOD_GATHER_FORMAT_PROPERTIES_AMD => {
Some("TEXTURE_LOD_GATHER_FORMAT_PROPERTIES_AMD")
}
Self::RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR => {
Some("RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR")
}
Self::RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_INFO_EXT => {
Some("RENDERING_FRAGMENT_DENSITY_MAP_ATTACHMENT_INFO_EXT")
}
Self::ATTACHMENT_SAMPLE_COUNT_INFO_AMD => Some("ATTACHMENT_SAMPLE_COUNT_INFO_AMD"),
Self::MULTIVIEW_PER_VIEW_ATTRIBUTES_INFO_NVX => {
Some("MULTIVIEW_PER_VIEW_ATTRIBUTES_INFO_NVX")
}
Self::STREAM_DESCRIPTOR_SURFACE_CREATE_INFO_GGP => {
Some("STREAM_DESCRIPTOR_SURFACE_CREATE_INFO_GGP")
}
Self::PHYSICAL_DEVICE_CORNER_SAMPLED_IMAGE_FEATURES_NV => {
Some("PHYSICAL_DEVICE_CORNER_SAMPLED_IMAGE_FEATURES_NV")
}
Self::EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV => {
Some("EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV")
}
Self::EXPORT_MEMORY_ALLOCATE_INFO_NV => Some("EXPORT_MEMORY_ALLOCATE_INFO_NV"),
Self::IMPORT_MEMORY_WIN32_HANDLE_INFO_NV => Some("IMPORT_MEMORY_WIN32_HANDLE_INFO_NV"),
Self::EXPORT_MEMORY_WIN32_HANDLE_INFO_NV => Some("EXPORT_MEMORY_WIN32_HANDLE_INFO_NV"),
Self::WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV => {
Some("WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV")
}
Self::VALIDATION_FLAGS_EXT => Some("VALIDATION_FLAGS_EXT"),
Self::VI_SURFACE_CREATE_INFO_NN => Some("VI_SURFACE_CREATE_INFO_NN"),
Self::IMAGE_VIEW_ASTC_DECODE_MODE_EXT => Some("IMAGE_VIEW_ASTC_DECODE_MODE_EXT"),
Self::PHYSICAL_DEVICE_ASTC_DECODE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_ASTC_DECODE_FEATURES_EXT")
}
Self::PIPELINE_ROBUSTNESS_CREATE_INFO_EXT => {
Some("PIPELINE_ROBUSTNESS_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_PIPELINE_ROBUSTNESS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PIPELINE_ROBUSTNESS_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_PIPELINE_ROBUSTNESS_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_PIPELINE_ROBUSTNESS_PROPERTIES_EXT")
}
Self::IMPORT_MEMORY_WIN32_HANDLE_INFO_KHR => {
Some("IMPORT_MEMORY_WIN32_HANDLE_INFO_KHR")
}
Self::EXPORT_MEMORY_WIN32_HANDLE_INFO_KHR => {
Some("EXPORT_MEMORY_WIN32_HANDLE_INFO_KHR")
}
Self::MEMORY_WIN32_HANDLE_PROPERTIES_KHR => Some("MEMORY_WIN32_HANDLE_PROPERTIES_KHR"),
Self::MEMORY_GET_WIN32_HANDLE_INFO_KHR => Some("MEMORY_GET_WIN32_HANDLE_INFO_KHR"),
Self::IMPORT_MEMORY_FD_INFO_KHR => Some("IMPORT_MEMORY_FD_INFO_KHR"),
Self::MEMORY_FD_PROPERTIES_KHR => Some("MEMORY_FD_PROPERTIES_KHR"),
Self::MEMORY_GET_FD_INFO_KHR => Some("MEMORY_GET_FD_INFO_KHR"),
Self::WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_KHR => {
Some("WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_KHR")
}
Self::IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR => {
Some("IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR")
}
Self::EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR => {
Some("EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR")
}
Self::D3D12_FENCE_SUBMIT_INFO_KHR => Some("D3D12_FENCE_SUBMIT_INFO_KHR"),
Self::SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR => {
Some("SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR")
}
Self::IMPORT_SEMAPHORE_FD_INFO_KHR => Some("IMPORT_SEMAPHORE_FD_INFO_KHR"),
Self::SEMAPHORE_GET_FD_INFO_KHR => Some("SEMAPHORE_GET_FD_INFO_KHR"),
Self::PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR")
}
Self::COMMAND_BUFFER_INHERITANCE_CONDITIONAL_RENDERING_INFO_EXT => {
Some("COMMAND_BUFFER_INHERITANCE_CONDITIONAL_RENDERING_INFO_EXT")
}
Self::PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT")
}
Self::CONDITIONAL_RENDERING_BEGIN_INFO_EXT => {
Some("CONDITIONAL_RENDERING_BEGIN_INFO_EXT")
}
Self::PRESENT_REGIONS_KHR => Some("PRESENT_REGIONS_KHR"),
Self::PIPELINE_VIEWPORT_W_SCALING_STATE_CREATE_INFO_NV => {
Some("PIPELINE_VIEWPORT_W_SCALING_STATE_CREATE_INFO_NV")
}
Self::SURFACE_CAPABILITIES_2_EXT => Some("SURFACE_CAPABILITIES_2_EXT"),
Self::DISPLAY_POWER_INFO_EXT => Some("DISPLAY_POWER_INFO_EXT"),
Self::DEVICE_EVENT_INFO_EXT => Some("DEVICE_EVENT_INFO_EXT"),
Self::DISPLAY_EVENT_INFO_EXT => Some("DISPLAY_EVENT_INFO_EXT"),
Self::SWAPCHAIN_COUNTER_CREATE_INFO_EXT => Some("SWAPCHAIN_COUNTER_CREATE_INFO_EXT"),
Self::PRESENT_TIMES_INFO_GOOGLE => Some("PRESENT_TIMES_INFO_GOOGLE"),
Self::PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_ATTRIBUTES_PROPERTIES_NVX => {
Some("PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_ATTRIBUTES_PROPERTIES_NVX")
}
Self::PIPELINE_VIEWPORT_SWIZZLE_STATE_CREATE_INFO_NV => {
Some("PIPELINE_VIEWPORT_SWIZZLE_STATE_CREATE_INFO_NV")
}
Self::PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT")
}
Self::PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT => {
Some("PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT")
}
Self::PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT => {
Some("PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT")
}
Self::PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT => {
Some("PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT")
}
Self::HDR_METADATA_EXT => Some("HDR_METADATA_EXT"),
Self::PHYSICAL_DEVICE_RELAXED_LINE_RASTERIZATION_FEATURES_IMG => {
Some("PHYSICAL_DEVICE_RELAXED_LINE_RASTERIZATION_FEATURES_IMG")
}
Self::SHARED_PRESENT_SURFACE_CAPABILITIES_KHR => {
Some("SHARED_PRESENT_SURFACE_CAPABILITIES_KHR")
}
Self::IMPORT_FENCE_WIN32_HANDLE_INFO_KHR => Some("IMPORT_FENCE_WIN32_HANDLE_INFO_KHR"),
Self::EXPORT_FENCE_WIN32_HANDLE_INFO_KHR => Some("EXPORT_FENCE_WIN32_HANDLE_INFO_KHR"),
Self::FENCE_GET_WIN32_HANDLE_INFO_KHR => Some("FENCE_GET_WIN32_HANDLE_INFO_KHR"),
Self::IMPORT_FENCE_FD_INFO_KHR => Some("IMPORT_FENCE_FD_INFO_KHR"),
Self::FENCE_GET_FD_INFO_KHR => Some("FENCE_GET_FD_INFO_KHR"),
Self::PHYSICAL_DEVICE_PERFORMANCE_QUERY_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_PERFORMANCE_QUERY_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_PERFORMANCE_QUERY_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_PERFORMANCE_QUERY_PROPERTIES_KHR")
}
Self::QUERY_POOL_PERFORMANCE_CREATE_INFO_KHR => {
Some("QUERY_POOL_PERFORMANCE_CREATE_INFO_KHR")
}
Self::PERFORMANCE_QUERY_SUBMIT_INFO_KHR => Some("PERFORMANCE_QUERY_SUBMIT_INFO_KHR"),
Self::ACQUIRE_PROFILING_LOCK_INFO_KHR => Some("ACQUIRE_PROFILING_LOCK_INFO_KHR"),
Self::PERFORMANCE_COUNTER_KHR => Some("PERFORMANCE_COUNTER_KHR"),
Self::PERFORMANCE_COUNTER_DESCRIPTION_KHR => {
Some("PERFORMANCE_COUNTER_DESCRIPTION_KHR")
}
Self::PHYSICAL_DEVICE_SURFACE_INFO_2_KHR => Some("PHYSICAL_DEVICE_SURFACE_INFO_2_KHR"),
Self::SURFACE_CAPABILITIES_2_KHR => Some("SURFACE_CAPABILITIES_2_KHR"),
Self::SURFACE_FORMAT_2_KHR => Some("SURFACE_FORMAT_2_KHR"),
Self::DISPLAY_PROPERTIES_2_KHR => Some("DISPLAY_PROPERTIES_2_KHR"),
Self::DISPLAY_PLANE_PROPERTIES_2_KHR => Some("DISPLAY_PLANE_PROPERTIES_2_KHR"),
Self::DISPLAY_MODE_PROPERTIES_2_KHR => Some("DISPLAY_MODE_PROPERTIES_2_KHR"),
Self::DISPLAY_PLANE_INFO_2_KHR => Some("DISPLAY_PLANE_INFO_2_KHR"),
Self::DISPLAY_PLANE_CAPABILITIES_2_KHR => Some("DISPLAY_PLANE_CAPABILITIES_2_KHR"),
Self::IOS_SURFACE_CREATE_INFO_MVK => Some("IOS_SURFACE_CREATE_INFO_MVK"),
Self::MACOS_SURFACE_CREATE_INFO_MVK => Some("MACOS_SURFACE_CREATE_INFO_MVK"),
Self::DEBUG_UTILS_OBJECT_NAME_INFO_EXT => Some("DEBUG_UTILS_OBJECT_NAME_INFO_EXT"),
Self::DEBUG_UTILS_OBJECT_TAG_INFO_EXT => Some("DEBUG_UTILS_OBJECT_TAG_INFO_EXT"),
Self::DEBUG_UTILS_LABEL_EXT => Some("DEBUG_UTILS_LABEL_EXT"),
Self::DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT => {
Some("DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT")
}
Self::DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT => {
Some("DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT")
}
Self::ANDROID_HARDWARE_BUFFER_USAGE_ANDROID => {
Some("ANDROID_HARDWARE_BUFFER_USAGE_ANDROID")
}
Self::ANDROID_HARDWARE_BUFFER_PROPERTIES_ANDROID => {
Some("ANDROID_HARDWARE_BUFFER_PROPERTIES_ANDROID")
}
Self::ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_ANDROID => {
Some("ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_ANDROID")
}
Self::IMPORT_ANDROID_HARDWARE_BUFFER_INFO_ANDROID => {
Some("IMPORT_ANDROID_HARDWARE_BUFFER_INFO_ANDROID")
}
Self::MEMORY_GET_ANDROID_HARDWARE_BUFFER_INFO_ANDROID => {
Some("MEMORY_GET_ANDROID_HARDWARE_BUFFER_INFO_ANDROID")
}
Self::EXTERNAL_FORMAT_ANDROID => Some("EXTERNAL_FORMAT_ANDROID"),
Self::ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_2_ANDROID => {
Some("ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_2_ANDROID")
}
Self::PHYSICAL_DEVICE_SHADER_ENQUEUE_FEATURES_AMDX => {
Some("PHYSICAL_DEVICE_SHADER_ENQUEUE_FEATURES_AMDX")
}
Self::PHYSICAL_DEVICE_SHADER_ENQUEUE_PROPERTIES_AMDX => {
Some("PHYSICAL_DEVICE_SHADER_ENQUEUE_PROPERTIES_AMDX")
}
Self::EXECUTION_GRAPH_PIPELINE_SCRATCH_SIZE_AMDX => {
Some("EXECUTION_GRAPH_PIPELINE_SCRATCH_SIZE_AMDX")
}
Self::EXECUTION_GRAPH_PIPELINE_CREATE_INFO_AMDX => {
Some("EXECUTION_GRAPH_PIPELINE_CREATE_INFO_AMDX")
}
Self::PIPELINE_SHADER_STAGE_NODE_CREATE_INFO_AMDX => {
Some("PIPELINE_SHADER_STAGE_NODE_CREATE_INFO_AMDX")
}
Self::SAMPLE_LOCATIONS_INFO_EXT => Some("SAMPLE_LOCATIONS_INFO_EXT"),
Self::RENDER_PASS_SAMPLE_LOCATIONS_BEGIN_INFO_EXT => {
Some("RENDER_PASS_SAMPLE_LOCATIONS_BEGIN_INFO_EXT")
}
Self::PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT => {
Some("PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT")
}
Self::MULTISAMPLE_PROPERTIES_EXT => Some("MULTISAMPLE_PROPERTIES_EXT"),
Self::PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT")
}
Self::PIPELINE_COLOR_BLEND_ADVANCED_STATE_CREATE_INFO_EXT => {
Some("PIPELINE_COLOR_BLEND_ADVANCED_STATE_CREATE_INFO_EXT")
}
Self::PIPELINE_COVERAGE_TO_COLOR_STATE_CREATE_INFO_NV => {
Some("PIPELINE_COVERAGE_TO_COLOR_STATE_CREATE_INFO_NV")
}
Self::WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_KHR => {
Some("WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_KHR")
}
Self::ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR => {
Some("ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR")
}
Self::ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR => {
Some("ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR")
}
Self::ACCELERATION_STRUCTURE_GEOMETRY_AABBS_DATA_KHR => {
Some("ACCELERATION_STRUCTURE_GEOMETRY_AABBS_DATA_KHR")
}
Self::ACCELERATION_STRUCTURE_GEOMETRY_INSTANCES_DATA_KHR => {
Some("ACCELERATION_STRUCTURE_GEOMETRY_INSTANCES_DATA_KHR")
}
Self::ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR => {
Some("ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR")
}
Self::ACCELERATION_STRUCTURE_GEOMETRY_KHR => {
Some("ACCELERATION_STRUCTURE_GEOMETRY_KHR")
}
Self::ACCELERATION_STRUCTURE_VERSION_INFO_KHR => {
Some("ACCELERATION_STRUCTURE_VERSION_INFO_KHR")
}
Self::COPY_ACCELERATION_STRUCTURE_INFO_KHR => {
Some("COPY_ACCELERATION_STRUCTURE_INFO_KHR")
}
Self::COPY_ACCELERATION_STRUCTURE_TO_MEMORY_INFO_KHR => {
Some("COPY_ACCELERATION_STRUCTURE_TO_MEMORY_INFO_KHR")
}
Self::COPY_MEMORY_TO_ACCELERATION_STRUCTURE_INFO_KHR => {
Some("COPY_MEMORY_TO_ACCELERATION_STRUCTURE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_PROPERTIES_KHR")
}
Self::ACCELERATION_STRUCTURE_CREATE_INFO_KHR => {
Some("ACCELERATION_STRUCTURE_CREATE_INFO_KHR")
}
Self::ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR => {
Some("ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_PROPERTIES_KHR")
}
Self::RAY_TRACING_PIPELINE_CREATE_INFO_KHR => {
Some("RAY_TRACING_PIPELINE_CREATE_INFO_KHR")
}
Self::RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR => {
Some("RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR")
}
Self::RAY_TRACING_PIPELINE_INTERFACE_CREATE_INFO_KHR => {
Some("RAY_TRACING_PIPELINE_INTERFACE_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_RAY_QUERY_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_RAY_QUERY_FEATURES_KHR")
}
Self::PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV => {
Some("PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV")
}
Self::PHYSICAL_DEVICE_SHADER_SM_BUILTINS_FEATURES_NV => {
Some("PHYSICAL_DEVICE_SHADER_SM_BUILTINS_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_SHADER_SM_BUILTINS_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_SHADER_SM_BUILTINS_PROPERTIES_NV")
}
Self::DRM_FORMAT_MODIFIER_PROPERTIES_LIST_EXT => {
Some("DRM_FORMAT_MODIFIER_PROPERTIES_LIST_EXT")
}
Self::PHYSICAL_DEVICE_IMAGE_DRM_FORMAT_MODIFIER_INFO_EXT => {
Some("PHYSICAL_DEVICE_IMAGE_DRM_FORMAT_MODIFIER_INFO_EXT")
}
Self::IMAGE_DRM_FORMAT_MODIFIER_LIST_CREATE_INFO_EXT => {
Some("IMAGE_DRM_FORMAT_MODIFIER_LIST_CREATE_INFO_EXT")
}
Self::IMAGE_DRM_FORMAT_MODIFIER_EXPLICIT_CREATE_INFO_EXT => {
Some("IMAGE_DRM_FORMAT_MODIFIER_EXPLICIT_CREATE_INFO_EXT")
}
Self::IMAGE_DRM_FORMAT_MODIFIER_PROPERTIES_EXT => {
Some("IMAGE_DRM_FORMAT_MODIFIER_PROPERTIES_EXT")
}
Self::DRM_FORMAT_MODIFIER_PROPERTIES_LIST_2_EXT => {
Some("DRM_FORMAT_MODIFIER_PROPERTIES_LIST_2_EXT")
}
Self::VALIDATION_CACHE_CREATE_INFO_EXT => Some("VALIDATION_CACHE_CREATE_INFO_EXT"),
Self::SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT => {
Some("SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_PORTABILITY_SUBSET_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_PORTABILITY_SUBSET_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_PORTABILITY_SUBSET_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_PORTABILITY_SUBSET_PROPERTIES_KHR")
}
Self::PIPELINE_VIEWPORT_SHADING_RATE_IMAGE_STATE_CREATE_INFO_NV => {
Some("PIPELINE_VIEWPORT_SHADING_RATE_IMAGE_STATE_CREATE_INFO_NV")
}
Self::PHYSICAL_DEVICE_SHADING_RATE_IMAGE_FEATURES_NV => {
Some("PHYSICAL_DEVICE_SHADING_RATE_IMAGE_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_SHADING_RATE_IMAGE_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_SHADING_RATE_IMAGE_PROPERTIES_NV")
}
Self::PIPELINE_VIEWPORT_COARSE_SAMPLE_ORDER_STATE_CREATE_INFO_NV => {
Some("PIPELINE_VIEWPORT_COARSE_SAMPLE_ORDER_STATE_CREATE_INFO_NV")
}
Self::RAY_TRACING_PIPELINE_CREATE_INFO_NV => {
Some("RAY_TRACING_PIPELINE_CREATE_INFO_NV")
}
Self::ACCELERATION_STRUCTURE_CREATE_INFO_NV => {
Some("ACCELERATION_STRUCTURE_CREATE_INFO_NV")
}
Self::GEOMETRY_NV => Some("GEOMETRY_NV"),
Self::GEOMETRY_TRIANGLES_NV => Some("GEOMETRY_TRIANGLES_NV"),
Self::GEOMETRY_AABB_NV => Some("GEOMETRY_AABB_NV"),
Self::BIND_ACCELERATION_STRUCTURE_MEMORY_INFO_NV => {
Some("BIND_ACCELERATION_STRUCTURE_MEMORY_INFO_NV")
}
Self::WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_NV => {
Some("WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_NV")
}
Self::ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_INFO_NV => {
Some("ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_INFO_NV")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_RAY_TRACING_PROPERTIES_NV")
}
Self::RAY_TRACING_SHADER_GROUP_CREATE_INFO_NV => {
Some("RAY_TRACING_SHADER_GROUP_CREATE_INFO_NV")
}
Self::ACCELERATION_STRUCTURE_INFO_NV => Some("ACCELERATION_STRUCTURE_INFO_NV"),
Self::PHYSICAL_DEVICE_REPRESENTATIVE_FRAGMENT_TEST_FEATURES_NV => {
Some("PHYSICAL_DEVICE_REPRESENTATIVE_FRAGMENT_TEST_FEATURES_NV")
}
Self::PIPELINE_REPRESENTATIVE_FRAGMENT_TEST_STATE_CREATE_INFO_NV => {
Some("PIPELINE_REPRESENTATIVE_FRAGMENT_TEST_STATE_CREATE_INFO_NV")
}
Self::PHYSICAL_DEVICE_IMAGE_VIEW_IMAGE_FORMAT_INFO_EXT => {
Some("PHYSICAL_DEVICE_IMAGE_VIEW_IMAGE_FORMAT_INFO_EXT")
}
Self::FILTER_CUBIC_IMAGE_VIEW_IMAGE_FORMAT_PROPERTIES_EXT => {
Some("FILTER_CUBIC_IMAGE_VIEW_IMAGE_FORMAT_PROPERTIES_EXT")
}
Self::IMPORT_MEMORY_HOST_POINTER_INFO_EXT => {
Some("IMPORT_MEMORY_HOST_POINTER_INFO_EXT")
}
Self::MEMORY_HOST_POINTER_PROPERTIES_EXT => Some("MEMORY_HOST_POINTER_PROPERTIES_EXT"),
Self::PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_CLOCK_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_SHADER_CLOCK_FEATURES_KHR")
}
Self::PIPELINE_COMPILER_CONTROL_CREATE_INFO_AMD => {
Some("PIPELINE_COMPILER_CONTROL_CREATE_INFO_AMD")
}
Self::PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_AMD => {
Some("PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_AMD")
}
Self::VIDEO_DECODE_H265_CAPABILITIES_KHR => Some("VIDEO_DECODE_H265_CAPABILITIES_KHR"),
Self::VIDEO_DECODE_H265_SESSION_PARAMETERS_CREATE_INFO_KHR => {
Some("VIDEO_DECODE_H265_SESSION_PARAMETERS_CREATE_INFO_KHR")
}
Self::VIDEO_DECODE_H265_SESSION_PARAMETERS_ADD_INFO_KHR => {
Some("VIDEO_DECODE_H265_SESSION_PARAMETERS_ADD_INFO_KHR")
}
Self::VIDEO_DECODE_H265_PROFILE_INFO_KHR => Some("VIDEO_DECODE_H265_PROFILE_INFO_KHR"),
Self::VIDEO_DECODE_H265_PICTURE_INFO_KHR => Some("VIDEO_DECODE_H265_PICTURE_INFO_KHR"),
Self::VIDEO_DECODE_H265_DPB_SLOT_INFO_KHR => {
Some("VIDEO_DECODE_H265_DPB_SLOT_INFO_KHR")
}
Self::DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_KHR => {
Some("DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_GLOBAL_PRIORITY_QUERY_FEATURES_KHR")
}
Self::QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_KHR => {
Some("QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES_KHR")
}
Self::DEVICE_MEMORY_OVERALLOCATION_CREATE_INFO_AMD => {
Some("DEVICE_MEMORY_OVERALLOCATION_CREATE_INFO_AMD")
}
Self::PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT")
}
Self::PRESENT_FRAME_TOKEN_GGP => Some("PRESENT_FRAME_TOKEN_GGP"),
Self::PHYSICAL_DEVICE_COMPUTE_SHADER_DERIVATIVES_FEATURES_NV => {
Some("PHYSICAL_DEVICE_COMPUTE_SHADER_DERIVATIVES_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_MESH_SHADER_FEATURES_NV => {
Some("PHYSICAL_DEVICE_MESH_SHADER_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_SHADER_IMAGE_FOOTPRINT_FEATURES_NV => {
Some("PHYSICAL_DEVICE_SHADER_IMAGE_FOOTPRINT_FEATURES_NV")
}
Self::PIPELINE_VIEWPORT_EXCLUSIVE_SCISSOR_STATE_CREATE_INFO_NV => {
Some("PIPELINE_VIEWPORT_EXCLUSIVE_SCISSOR_STATE_CREATE_INFO_NV")
}
Self::PHYSICAL_DEVICE_EXCLUSIVE_SCISSOR_FEATURES_NV => {
Some("PHYSICAL_DEVICE_EXCLUSIVE_SCISSOR_FEATURES_NV")
}
Self::CHECKPOINT_DATA_NV => Some("CHECKPOINT_DATA_NV"),
Self::QUEUE_FAMILY_CHECKPOINT_PROPERTIES_NV => {
Some("QUEUE_FAMILY_CHECKPOINT_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_SHADER_INTEGER_FUNCTIONS_2_FEATURES_INTEL => {
Some("PHYSICAL_DEVICE_SHADER_INTEGER_FUNCTIONS_2_FEATURES_INTEL")
}
Self::QUERY_POOL_PERFORMANCE_QUERY_CREATE_INFO_INTEL => {
Some("QUERY_POOL_PERFORMANCE_QUERY_CREATE_INFO_INTEL")
}
Self::INITIALIZE_PERFORMANCE_API_INFO_INTEL => {
Some("INITIALIZE_PERFORMANCE_API_INFO_INTEL")
}
Self::PERFORMANCE_MARKER_INFO_INTEL => Some("PERFORMANCE_MARKER_INFO_INTEL"),
Self::PERFORMANCE_STREAM_MARKER_INFO_INTEL => {
Some("PERFORMANCE_STREAM_MARKER_INFO_INTEL")
}
Self::PERFORMANCE_OVERRIDE_INFO_INTEL => Some("PERFORMANCE_OVERRIDE_INFO_INTEL"),
Self::PERFORMANCE_CONFIGURATION_ACQUIRE_INFO_INTEL => {
Some("PERFORMANCE_CONFIGURATION_ACQUIRE_INFO_INTEL")
}
Self::PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT")
}
Self::DISPLAY_NATIVE_HDR_SURFACE_CAPABILITIES_AMD => {
Some("DISPLAY_NATIVE_HDR_SURFACE_CAPABILITIES_AMD")
}
Self::SWAPCHAIN_DISPLAY_NATIVE_HDR_CREATE_INFO_AMD => {
Some("SWAPCHAIN_DISPLAY_NATIVE_HDR_CREATE_INFO_AMD")
}
Self::IMAGEPIPE_SURFACE_CREATE_INFO_FUCHSIA => {
Some("IMAGEPIPE_SURFACE_CREATE_INFO_FUCHSIA")
}
Self::METAL_SURFACE_CREATE_INFO_EXT => Some("METAL_SURFACE_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_PROPERTIES_EXT")
}
Self::RENDER_PASS_FRAGMENT_DENSITY_MAP_CREATE_INFO_EXT => {
Some("RENDER_PASS_FRAGMENT_DENSITY_MAP_CREATE_INFO_EXT")
}
Self::FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR => {
Some("FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR")
}
Self::PIPELINE_FRAGMENT_SHADING_RATE_STATE_CREATE_INFO_KHR => {
Some("PIPELINE_FRAGMENT_SHADING_RATE_STATE_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_KHR => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_KHR")
}
Self::PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_2_AMD => {
Some("PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_2_AMD")
}
Self::PHYSICAL_DEVICE_COHERENT_MEMORY_FEATURES_AMD => {
Some("PHYSICAL_DEVICE_COHERENT_MEMORY_FEATURES_AMD")
}
Self::PHYSICAL_DEVICE_DYNAMIC_RENDERING_LOCAL_READ_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_DYNAMIC_RENDERING_LOCAL_READ_FEATURES_KHR")
}
Self::RENDERING_ATTACHMENT_LOCATION_INFO_KHR => {
Some("RENDERING_ATTACHMENT_LOCATION_INFO_KHR")
}
Self::RENDERING_INPUT_ATTACHMENT_INDEX_INFO_KHR => {
Some("RENDERING_INPUT_ATTACHMENT_INDEX_INFO_KHR")
}
Self::PHYSICAL_DEVICE_SHADER_IMAGE_ATOMIC_INT64_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_IMAGE_ATOMIC_INT64_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_QUAD_CONTROL_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_SHADER_QUAD_CONTROL_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_MEMORY_PRIORITY_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_MEMORY_PRIORITY_FEATURES_EXT")
}
Self::MEMORY_PRIORITY_ALLOCATE_INFO_EXT => Some("MEMORY_PRIORITY_ALLOCATE_INFO_EXT"),
Self::SURFACE_PROTECTED_CAPABILITIES_KHR => Some("SURFACE_PROTECTED_CAPABILITIES_KHR"),
Self::PHYSICAL_DEVICE_DEDICATED_ALLOCATION_IMAGE_ALIASING_FEATURES_NV => {
Some("PHYSICAL_DEVICE_DEDICATED_ALLOCATION_IMAGE_ALIASING_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT")
}
Self::BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT => {
Some("BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT")
}
Self::VALIDATION_FEATURES_EXT => Some("VALIDATION_FEATURES_EXT"),
Self::PHYSICAL_DEVICE_PRESENT_WAIT_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_PRESENT_WAIT_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV => {
Some("PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV")
}
Self::COOPERATIVE_MATRIX_PROPERTIES_NV => Some("COOPERATIVE_MATRIX_PROPERTIES_NV"),
Self::PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_COVERAGE_REDUCTION_MODE_FEATURES_NV => {
Some("PHYSICAL_DEVICE_COVERAGE_REDUCTION_MODE_FEATURES_NV")
}
Self::PIPELINE_COVERAGE_REDUCTION_STATE_CREATE_INFO_NV => {
Some("PIPELINE_COVERAGE_REDUCTION_STATE_CREATE_INFO_NV")
}
Self::FRAMEBUFFER_MIXED_SAMPLES_COMBINATION_NV => {
Some("FRAMEBUFFER_MIXED_SAMPLES_COMBINATION_NV")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADER_INTERLOCK_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADER_INTERLOCK_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_YCBCR_IMAGE_ARRAYS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_YCBCR_IMAGE_ARRAYS_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_PROVOKING_VERTEX_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PROVOKING_VERTEX_FEATURES_EXT")
}
Self::PIPELINE_RASTERIZATION_PROVOKING_VERTEX_STATE_CREATE_INFO_EXT => {
Some("PIPELINE_RASTERIZATION_PROVOKING_VERTEX_STATE_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_PROVOKING_VERTEX_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_PROVOKING_VERTEX_PROPERTIES_EXT")
}
Self::SURFACE_FULL_SCREEN_EXCLUSIVE_INFO_EXT => {
Some("SURFACE_FULL_SCREEN_EXCLUSIVE_INFO_EXT")
}
Self::SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT => {
Some("SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT")
}
Self::SURFACE_FULL_SCREEN_EXCLUSIVE_WIN32_INFO_EXT => {
Some("SURFACE_FULL_SCREEN_EXCLUSIVE_WIN32_INFO_EXT")
}
Self::HEADLESS_SURFACE_CREATE_INFO_EXT => Some("HEADLESS_SURFACE_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR")
}
Self::PIPELINE_INFO_KHR => Some("PIPELINE_INFO_KHR"),
Self::PIPELINE_EXECUTABLE_PROPERTIES_KHR => Some("PIPELINE_EXECUTABLE_PROPERTIES_KHR"),
Self::PIPELINE_EXECUTABLE_INFO_KHR => Some("PIPELINE_EXECUTABLE_INFO_KHR"),
Self::PIPELINE_EXECUTABLE_STATISTIC_KHR => Some("PIPELINE_EXECUTABLE_STATISTIC_KHR"),
Self::PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR => {
Some("PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR")
}
Self::PHYSICAL_DEVICE_HOST_IMAGE_COPY_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_HOST_IMAGE_COPY_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_HOST_IMAGE_COPY_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_HOST_IMAGE_COPY_PROPERTIES_EXT")
}
Self::MEMORY_TO_IMAGE_COPY_EXT => Some("MEMORY_TO_IMAGE_COPY_EXT"),
Self::IMAGE_TO_MEMORY_COPY_EXT => Some("IMAGE_TO_MEMORY_COPY_EXT"),
Self::COPY_IMAGE_TO_MEMORY_INFO_EXT => Some("COPY_IMAGE_TO_MEMORY_INFO_EXT"),
Self::COPY_MEMORY_TO_IMAGE_INFO_EXT => Some("COPY_MEMORY_TO_IMAGE_INFO_EXT"),
Self::HOST_IMAGE_LAYOUT_TRANSITION_INFO_EXT => {
Some("HOST_IMAGE_LAYOUT_TRANSITION_INFO_EXT")
}
Self::COPY_IMAGE_TO_IMAGE_INFO_EXT => Some("COPY_IMAGE_TO_IMAGE_INFO_EXT"),
Self::SUBRESOURCE_HOST_MEMCPY_SIZE_EXT => Some("SUBRESOURCE_HOST_MEMCPY_SIZE_EXT"),
Self::HOST_IMAGE_COPY_DEVICE_PERFORMANCE_QUERY_EXT => {
Some("HOST_IMAGE_COPY_DEVICE_PERFORMANCE_QUERY_EXT")
}
Self::MEMORY_MAP_INFO_KHR => Some("MEMORY_MAP_INFO_KHR"),
Self::MEMORY_UNMAP_INFO_KHR => Some("MEMORY_UNMAP_INFO_KHR"),
Self::PHYSICAL_DEVICE_MAP_MEMORY_PLACED_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_MAP_MEMORY_PLACED_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_MAP_MEMORY_PLACED_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_MAP_MEMORY_PLACED_PROPERTIES_EXT")
}
Self::MEMORY_MAP_PLACED_INFO_EXT => Some("MEMORY_MAP_PLACED_INFO_EXT"),
Self::PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_2_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_2_FEATURES_EXT")
}
Self::SURFACE_PRESENT_MODE_EXT => Some("SURFACE_PRESENT_MODE_EXT"),
Self::SURFACE_PRESENT_SCALING_CAPABILITIES_EXT => {
Some("SURFACE_PRESENT_SCALING_CAPABILITIES_EXT")
}
Self::SURFACE_PRESENT_MODE_COMPATIBILITY_EXT => {
Some("SURFACE_PRESENT_MODE_COMPATIBILITY_EXT")
}
Self::PHYSICAL_DEVICE_SWAPCHAIN_MAINTENANCE_1_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SWAPCHAIN_MAINTENANCE_1_FEATURES_EXT")
}
Self::SWAPCHAIN_PRESENT_FENCE_INFO_EXT => Some("SWAPCHAIN_PRESENT_FENCE_INFO_EXT"),
Self::SWAPCHAIN_PRESENT_MODES_CREATE_INFO_EXT => {
Some("SWAPCHAIN_PRESENT_MODES_CREATE_INFO_EXT")
}
Self::SWAPCHAIN_PRESENT_MODE_INFO_EXT => Some("SWAPCHAIN_PRESENT_MODE_INFO_EXT"),
Self::SWAPCHAIN_PRESENT_SCALING_CREATE_INFO_EXT => {
Some("SWAPCHAIN_PRESENT_SCALING_CREATE_INFO_EXT")
}
Self::RELEASE_SWAPCHAIN_IMAGES_INFO_EXT => Some("RELEASE_SWAPCHAIN_IMAGES_INFO_EXT"),
Self::PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_PROPERTIES_NV")
}
Self::GRAPHICS_SHADER_GROUP_CREATE_INFO_NV => {
Some("GRAPHICS_SHADER_GROUP_CREATE_INFO_NV")
}
Self::GRAPHICS_PIPELINE_SHADER_GROUPS_CREATE_INFO_NV => {
Some("GRAPHICS_PIPELINE_SHADER_GROUPS_CREATE_INFO_NV")
}
Self::INDIRECT_COMMANDS_LAYOUT_TOKEN_NV => Some("INDIRECT_COMMANDS_LAYOUT_TOKEN_NV"),
Self::INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NV => {
Some("INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NV")
}
Self::GENERATED_COMMANDS_INFO_NV => Some("GENERATED_COMMANDS_INFO_NV"),
Self::GENERATED_COMMANDS_MEMORY_REQUIREMENTS_INFO_NV => {
Some("GENERATED_COMMANDS_MEMORY_REQUIREMENTS_INFO_NV")
}
Self::PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_FEATURES_NV => {
Some("PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_INHERITED_VIEWPORT_SCISSOR_FEATURES_NV => {
Some("PHYSICAL_DEVICE_INHERITED_VIEWPORT_SCISSOR_FEATURES_NV")
}
Self::COMMAND_BUFFER_INHERITANCE_VIEWPORT_SCISSOR_INFO_NV => {
Some("COMMAND_BUFFER_INHERITANCE_VIEWPORT_SCISSOR_INFO_NV")
}
Self::PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_FEATURES_EXT")
}
Self::COMMAND_BUFFER_INHERITANCE_RENDER_PASS_TRANSFORM_INFO_QCOM => {
Some("COMMAND_BUFFER_INHERITANCE_RENDER_PASS_TRANSFORM_INFO_QCOM")
}
Self::RENDER_PASS_TRANSFORM_BEGIN_INFO_QCOM => {
Some("RENDER_PASS_TRANSFORM_BEGIN_INFO_QCOM")
}
Self::PHYSICAL_DEVICE_DEPTH_BIAS_CONTROL_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_DEPTH_BIAS_CONTROL_FEATURES_EXT")
}
Self::DEPTH_BIAS_INFO_EXT => Some("DEPTH_BIAS_INFO_EXT"),
Self::DEPTH_BIAS_REPRESENTATION_INFO_EXT => Some("DEPTH_BIAS_REPRESENTATION_INFO_EXT"),
Self::PHYSICAL_DEVICE_DEVICE_MEMORY_REPORT_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_DEVICE_MEMORY_REPORT_FEATURES_EXT")
}
Self::DEVICE_DEVICE_MEMORY_REPORT_CREATE_INFO_EXT => {
Some("DEVICE_DEVICE_MEMORY_REPORT_CREATE_INFO_EXT")
}
Self::DEVICE_MEMORY_REPORT_CALLBACK_DATA_EXT => {
Some("DEVICE_MEMORY_REPORT_CALLBACK_DATA_EXT")
}
Self::PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_ROBUSTNESS_2_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_ROBUSTNESS_2_PROPERTIES_EXT")
}
Self::SAMPLER_CUSTOM_BORDER_COLOR_CREATE_INFO_EXT => {
Some("SAMPLER_CUSTOM_BORDER_COLOR_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_FEATURES_EXT")
}
Self::PIPELINE_LIBRARY_CREATE_INFO_KHR => Some("PIPELINE_LIBRARY_CREATE_INFO_KHR"),
Self::PHYSICAL_DEVICE_PRESENT_BARRIER_FEATURES_NV => {
Some("PHYSICAL_DEVICE_PRESENT_BARRIER_FEATURES_NV")
}
Self::SURFACE_CAPABILITIES_PRESENT_BARRIER_NV => {
Some("SURFACE_CAPABILITIES_PRESENT_BARRIER_NV")
}
Self::SWAPCHAIN_PRESENT_BARRIER_CREATE_INFO_NV => {
Some("SWAPCHAIN_PRESENT_BARRIER_CREATE_INFO_NV")
}
Self::PRESENT_ID_KHR => Some("PRESENT_ID_KHR"),
Self::PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR")
}
Self::VIDEO_ENCODE_INFO_KHR => Some("VIDEO_ENCODE_INFO_KHR"),
Self::VIDEO_ENCODE_RATE_CONTROL_INFO_KHR => Some("VIDEO_ENCODE_RATE_CONTROL_INFO_KHR"),
Self::VIDEO_ENCODE_RATE_CONTROL_LAYER_INFO_KHR => {
Some("VIDEO_ENCODE_RATE_CONTROL_LAYER_INFO_KHR")
}
Self::VIDEO_ENCODE_CAPABILITIES_KHR => Some("VIDEO_ENCODE_CAPABILITIES_KHR"),
Self::VIDEO_ENCODE_USAGE_INFO_KHR => Some("VIDEO_ENCODE_USAGE_INFO_KHR"),
Self::QUERY_POOL_VIDEO_ENCODE_FEEDBACK_CREATE_INFO_KHR => {
Some("QUERY_POOL_VIDEO_ENCODE_FEEDBACK_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_VIDEO_ENCODE_QUALITY_LEVEL_INFO_KHR => {
Some("PHYSICAL_DEVICE_VIDEO_ENCODE_QUALITY_LEVEL_INFO_KHR")
}
Self::VIDEO_ENCODE_QUALITY_LEVEL_PROPERTIES_KHR => {
Some("VIDEO_ENCODE_QUALITY_LEVEL_PROPERTIES_KHR")
}
Self::VIDEO_ENCODE_QUALITY_LEVEL_INFO_KHR => {
Some("VIDEO_ENCODE_QUALITY_LEVEL_INFO_KHR")
}
Self::VIDEO_ENCODE_SESSION_PARAMETERS_GET_INFO_KHR => {
Some("VIDEO_ENCODE_SESSION_PARAMETERS_GET_INFO_KHR")
}
Self::VIDEO_ENCODE_SESSION_PARAMETERS_FEEDBACK_INFO_KHR => {
Some("VIDEO_ENCODE_SESSION_PARAMETERS_FEEDBACK_INFO_KHR")
}
Self::PHYSICAL_DEVICE_DIAGNOSTICS_CONFIG_FEATURES_NV => {
Some("PHYSICAL_DEVICE_DIAGNOSTICS_CONFIG_FEATURES_NV")
}
Self::DEVICE_DIAGNOSTICS_CONFIG_CREATE_INFO_NV => {
Some("DEVICE_DIAGNOSTICS_CONFIG_CREATE_INFO_NV")
}
Self::CUDA_MODULE_CREATE_INFO_NV => Some("CUDA_MODULE_CREATE_INFO_NV"),
Self::CUDA_FUNCTION_CREATE_INFO_NV => Some("CUDA_FUNCTION_CREATE_INFO_NV"),
Self::CUDA_LAUNCH_INFO_NV => Some("CUDA_LAUNCH_INFO_NV"),
Self::PHYSICAL_DEVICE_CUDA_KERNEL_LAUNCH_FEATURES_NV => {
Some("PHYSICAL_DEVICE_CUDA_KERNEL_LAUNCH_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_CUDA_KERNEL_LAUNCH_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_CUDA_KERNEL_LAUNCH_PROPERTIES_NV")
}
Self::QUERY_LOW_LATENCY_SUPPORT_NV => Some("QUERY_LOW_LATENCY_SUPPORT_NV"),
Self::EXPORT_METAL_OBJECT_CREATE_INFO_EXT => {
Some("EXPORT_METAL_OBJECT_CREATE_INFO_EXT")
}
Self::EXPORT_METAL_OBJECTS_INFO_EXT => Some("EXPORT_METAL_OBJECTS_INFO_EXT"),
Self::EXPORT_METAL_DEVICE_INFO_EXT => Some("EXPORT_METAL_DEVICE_INFO_EXT"),
Self::EXPORT_METAL_COMMAND_QUEUE_INFO_EXT => {
Some("EXPORT_METAL_COMMAND_QUEUE_INFO_EXT")
}
Self::EXPORT_METAL_BUFFER_INFO_EXT => Some("EXPORT_METAL_BUFFER_INFO_EXT"),
Self::IMPORT_METAL_BUFFER_INFO_EXT => Some("IMPORT_METAL_BUFFER_INFO_EXT"),
Self::EXPORT_METAL_TEXTURE_INFO_EXT => Some("EXPORT_METAL_TEXTURE_INFO_EXT"),
Self::IMPORT_METAL_TEXTURE_INFO_EXT => Some("IMPORT_METAL_TEXTURE_INFO_EXT"),
Self::EXPORT_METAL_IO_SURFACE_INFO_EXT => Some("EXPORT_METAL_IO_SURFACE_INFO_EXT"),
Self::IMPORT_METAL_IO_SURFACE_INFO_EXT => Some("IMPORT_METAL_IO_SURFACE_INFO_EXT"),
Self::EXPORT_METAL_SHARED_EVENT_INFO_EXT => Some("EXPORT_METAL_SHARED_EVENT_INFO_EXT"),
Self::IMPORT_METAL_SHARED_EVENT_INFO_EXT => Some("IMPORT_METAL_SHARED_EVENT_INFO_EXT"),
Self::QUEUE_FAMILY_CHECKPOINT_PROPERTIES_2_NV => {
Some("QUEUE_FAMILY_CHECKPOINT_PROPERTIES_2_NV")
}
Self::CHECKPOINT_DATA_2_NV => Some("CHECKPOINT_DATA_2_NV"),
Self::PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_DENSITY_MAP_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_DENSITY_MAP_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_BUFFER_FEATURES_EXT")
}
Self::DESCRIPTOR_ADDRESS_INFO_EXT => Some("DESCRIPTOR_ADDRESS_INFO_EXT"),
Self::DESCRIPTOR_GET_INFO_EXT => Some("DESCRIPTOR_GET_INFO_EXT"),
Self::BUFFER_CAPTURE_DESCRIPTOR_DATA_INFO_EXT => {
Some("BUFFER_CAPTURE_DESCRIPTOR_DATA_INFO_EXT")
}
Self::IMAGE_CAPTURE_DESCRIPTOR_DATA_INFO_EXT => {
Some("IMAGE_CAPTURE_DESCRIPTOR_DATA_INFO_EXT")
}
Self::IMAGE_VIEW_CAPTURE_DESCRIPTOR_DATA_INFO_EXT => {
Some("IMAGE_VIEW_CAPTURE_DESCRIPTOR_DATA_INFO_EXT")
}
Self::SAMPLER_CAPTURE_DESCRIPTOR_DATA_INFO_EXT => {
Some("SAMPLER_CAPTURE_DESCRIPTOR_DATA_INFO_EXT")
}
Self::OPAQUE_CAPTURE_DESCRIPTOR_DATA_CREATE_INFO_EXT => {
Some("OPAQUE_CAPTURE_DESCRIPTOR_DATA_CREATE_INFO_EXT")
}
Self::DESCRIPTOR_BUFFER_BINDING_INFO_EXT => Some("DESCRIPTOR_BUFFER_BINDING_INFO_EXT"),
Self::DESCRIPTOR_BUFFER_BINDING_PUSH_DESCRIPTOR_BUFFER_HANDLE_EXT => {
Some("DESCRIPTOR_BUFFER_BINDING_PUSH_DESCRIPTOR_BUFFER_HANDLE_EXT")
}
Self::ACCELERATION_STRUCTURE_CAPTURE_DESCRIPTOR_DATA_INFO_EXT => {
Some("ACCELERATION_STRUCTURE_CAPTURE_DESCRIPTOR_DATA_INFO_EXT")
}
Self::PHYSICAL_DEVICE_GRAPHICS_PIPELINE_LIBRARY_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_GRAPHICS_PIPELINE_LIBRARY_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_GRAPHICS_PIPELINE_LIBRARY_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_GRAPHICS_PIPELINE_LIBRARY_PROPERTIES_EXT")
}
Self::GRAPHICS_PIPELINE_LIBRARY_CREATE_INFO_EXT => {
Some("GRAPHICS_PIPELINE_LIBRARY_CREATE_INFO_EXT")
}
Self::your_sha256_hashD => {
Some(your_sha256_hashD")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_PROPERTIES_KHR")
}
Self::your_sha256_hashR => {
Some(your_sha256_hashR")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_FEATURES_NV => {
Some("PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_FEATURES_NV")
}
Self::PIPELINE_FRAGMENT_SHADING_RATE_ENUM_STATE_CREATE_INFO_NV => {
Some("PIPELINE_FRAGMENT_SHADING_RATE_ENUM_STATE_CREATE_INFO_NV")
}
Self::ACCELERATION_STRUCTURE_GEOMETRY_MOTION_TRIANGLES_DATA_NV => {
Some("ACCELERATION_STRUCTURE_GEOMETRY_MOTION_TRIANGLES_DATA_NV")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_MOTION_BLUR_FEATURES_NV => {
Some("PHYSICAL_DEVICE_RAY_TRACING_MOTION_BLUR_FEATURES_NV")
}
Self::ACCELERATION_STRUCTURE_MOTION_INFO_NV => {
Some("ACCELERATION_STRUCTURE_MOTION_INFO_NV")
}
Self::PHYSICAL_DEVICE_MESH_SHADER_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_MESH_SHADER_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_YCBCR_2_PLANE_444_FORMATS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_YCBCR_2_PLANE_444_FORMATS_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_PROPERTIES_EXT")
}
Self::COPY_COMMAND_TRANSFORM_INFO_QCOM => Some("COPY_COMMAND_TRANSFORM_INFO_QCOM"),
Self::PHYSICAL_DEVICE_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_IMAGE_COMPRESSION_CONTROL_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_IMAGE_COMPRESSION_CONTROL_FEATURES_EXT")
}
Self::IMAGE_COMPRESSION_CONTROL_EXT => Some("IMAGE_COMPRESSION_CONTROL_EXT"),
Self::IMAGE_COMPRESSION_PROPERTIES_EXT => Some("IMAGE_COMPRESSION_PROPERTIES_EXT"),
Self::PHYSICAL_DEVICE_ATTACHMENT_FEEDBACK_LOOP_LAYOUT_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_ATTACHMENT_FEEDBACK_LOOP_LAYOUT_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_4444_FORMATS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_4444_FORMATS_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_FAULT_FEATURES_EXT => Some("PHYSICAL_DEVICE_FAULT_FEATURES_EXT"),
Self::DEVICE_FAULT_COUNTS_EXT => Some("DEVICE_FAULT_COUNTS_EXT"),
Self::DEVICE_FAULT_INFO_EXT => Some("DEVICE_FAULT_INFO_EXT"),
Self::PHYSICAL_DEVICE_RGBA10X6_FORMATS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_RGBA10X6_FORMATS_FEATURES_EXT")
}
Self::DIRECTFB_SURFACE_CREATE_INFO_EXT => Some("DIRECTFB_SURFACE_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_VERTEX_INPUT_DYNAMIC_STATE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_VERTEX_INPUT_DYNAMIC_STATE_FEATURES_EXT")
}
Self::VERTEX_INPUT_BINDING_DESCRIPTION_2_EXT => {
Some("VERTEX_INPUT_BINDING_DESCRIPTION_2_EXT")
}
Self::VERTEX_INPUT_ATTRIBUTE_DESCRIPTION_2_EXT => {
Some("VERTEX_INPUT_ATTRIBUTE_DESCRIPTION_2_EXT")
}
Self::PHYSICAL_DEVICE_DRM_PROPERTIES_EXT => Some("PHYSICAL_DEVICE_DRM_PROPERTIES_EXT"),
Self::PHYSICAL_DEVICE_ADDRESS_BINDING_REPORT_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_ADDRESS_BINDING_REPORT_FEATURES_EXT")
}
Self::DEVICE_ADDRESS_BINDING_CALLBACK_DATA_EXT => {
Some("DEVICE_ADDRESS_BINDING_CALLBACK_DATA_EXT")
}
Self::PHYSICAL_DEVICE_DEPTH_CLIP_CONTROL_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_DEPTH_CLIP_CONTROL_FEATURES_EXT")
}
Self::PIPELINE_VIEWPORT_DEPTH_CLIP_CONTROL_CREATE_INFO_EXT => {
Some("PIPELINE_VIEWPORT_DEPTH_CLIP_CONTROL_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_PRIMITIVE_TOPOLOGY_LIST_RESTART_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PRIMITIVE_TOPOLOGY_LIST_RESTART_FEATURES_EXT")
}
Self::IMPORT_MEMORY_ZIRCON_HANDLE_INFO_FUCHSIA => {
Some("IMPORT_MEMORY_ZIRCON_HANDLE_INFO_FUCHSIA")
}
Self::MEMORY_ZIRCON_HANDLE_PROPERTIES_FUCHSIA => {
Some("MEMORY_ZIRCON_HANDLE_PROPERTIES_FUCHSIA")
}
Self::MEMORY_GET_ZIRCON_HANDLE_INFO_FUCHSIA => {
Some("MEMORY_GET_ZIRCON_HANDLE_INFO_FUCHSIA")
}
Self::IMPORT_SEMAPHORE_ZIRCON_HANDLE_INFO_FUCHSIA => {
Some("IMPORT_SEMAPHORE_ZIRCON_HANDLE_INFO_FUCHSIA")
}
Self::SEMAPHORE_GET_ZIRCON_HANDLE_INFO_FUCHSIA => {
Some("SEMAPHORE_GET_ZIRCON_HANDLE_INFO_FUCHSIA")
}
Self::BUFFER_COLLECTION_CREATE_INFO_FUCHSIA => {
Some("BUFFER_COLLECTION_CREATE_INFO_FUCHSIA")
}
Self::IMPORT_MEMORY_BUFFER_COLLECTION_FUCHSIA => {
Some("IMPORT_MEMORY_BUFFER_COLLECTION_FUCHSIA")
}
Self::BUFFER_COLLECTION_IMAGE_CREATE_INFO_FUCHSIA => {
Some("BUFFER_COLLECTION_IMAGE_CREATE_INFO_FUCHSIA")
}
Self::BUFFER_COLLECTION_PROPERTIES_FUCHSIA => {
Some("BUFFER_COLLECTION_PROPERTIES_FUCHSIA")
}
Self::BUFFER_CONSTRAINTS_INFO_FUCHSIA => Some("BUFFER_CONSTRAINTS_INFO_FUCHSIA"),
Self::BUFFER_COLLECTION_BUFFER_CREATE_INFO_FUCHSIA => {
Some("BUFFER_COLLECTION_BUFFER_CREATE_INFO_FUCHSIA")
}
Self::IMAGE_CONSTRAINTS_INFO_FUCHSIA => Some("IMAGE_CONSTRAINTS_INFO_FUCHSIA"),
Self::IMAGE_FORMAT_CONSTRAINTS_INFO_FUCHSIA => {
Some("IMAGE_FORMAT_CONSTRAINTS_INFO_FUCHSIA")
}
Self::SYSMEM_COLOR_SPACE_FUCHSIA => Some("SYSMEM_COLOR_SPACE_FUCHSIA"),
Self::BUFFER_COLLECTION_CONSTRAINTS_INFO_FUCHSIA => {
Some("BUFFER_COLLECTION_CONSTRAINTS_INFO_FUCHSIA")
}
Self::SUBPASS_SHADING_PIPELINE_CREATE_INFO_HUAWEI => {
Some("SUBPASS_SHADING_PIPELINE_CREATE_INFO_HUAWEI")
}
Self::PHYSICAL_DEVICE_SUBPASS_SHADING_FEATURES_HUAWEI => {
Some("PHYSICAL_DEVICE_SUBPASS_SHADING_FEATURES_HUAWEI")
}
Self::PHYSICAL_DEVICE_SUBPASS_SHADING_PROPERTIES_HUAWEI => {
Some("PHYSICAL_DEVICE_SUBPASS_SHADING_PROPERTIES_HUAWEI")
}
Self::PHYSICAL_DEVICE_INVOCATION_MASK_FEATURES_HUAWEI => {
Some("PHYSICAL_DEVICE_INVOCATION_MASK_FEATURES_HUAWEI")
}
Self::MEMORY_GET_REMOTE_ADDRESS_INFO_NV => Some("MEMORY_GET_REMOTE_ADDRESS_INFO_NV"),
Self::PHYSICAL_DEVICE_EXTERNAL_MEMORY_RDMA_FEATURES_NV => {
Some("PHYSICAL_DEVICE_EXTERNAL_MEMORY_RDMA_FEATURES_NV")
}
Self::PIPELINE_PROPERTIES_IDENTIFIER_EXT => Some("PIPELINE_PROPERTIES_IDENTIFIER_EXT"),
Self::PHYSICAL_DEVICE_PIPELINE_PROPERTIES_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PIPELINE_PROPERTIES_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_FRAME_BOUNDARY_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_FRAME_BOUNDARY_FEATURES_EXT")
}
Self::FRAME_BOUNDARY_EXT => Some("FRAME_BOUNDARY_EXT"),
Self::your_sha256_hashXT => {
Some(your_sha256_hashXT")
}
Self::SUBPASS_RESOLVE_PERFORMANCE_QUERY_EXT => {
Some("SUBPASS_RESOLVE_PERFORMANCE_QUERY_EXT")
}
Self::MULTISAMPLED_RENDER_TO_SINGLE_SAMPLED_INFO_EXT => {
Some("MULTISAMPLED_RENDER_TO_SINGLE_SAMPLED_INFO_EXT")
}
Self::PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_2_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_2_FEATURES_EXT")
}
Self::SCREEN_SURFACE_CREATE_INFO_QNX => Some("SCREEN_SURFACE_CREATE_INFO_QNX"),
Self::PHYSICAL_DEVICE_COLOR_WRITE_ENABLE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_COLOR_WRITE_ENABLE_FEATURES_EXT")
}
Self::PIPELINE_COLOR_WRITE_CREATE_INFO_EXT => {
Some("PIPELINE_COLOR_WRITE_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_PRIMITIVES_GENERATED_QUERY_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PRIMITIVES_GENERATED_QUERY_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_MAINTENANCE_1_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_RAY_TRACING_MAINTENANCE_1_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_IMAGE_VIEW_MIN_LOD_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_IMAGE_VIEW_MIN_LOD_FEATURES_EXT")
}
Self::IMAGE_VIEW_MIN_LOD_CREATE_INFO_EXT => Some("IMAGE_VIEW_MIN_LOD_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_MULTI_DRAW_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_MULTI_DRAW_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_MULTI_DRAW_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_MULTI_DRAW_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_IMAGE_2D_VIEW_OF_3D_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_IMAGE_2D_VIEW_OF_3D_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_TILE_IMAGE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_TILE_IMAGE_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_TILE_IMAGE_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_TILE_IMAGE_PROPERTIES_EXT")
}
Self::MICROMAP_BUILD_INFO_EXT => Some("MICROMAP_BUILD_INFO_EXT"),
Self::MICROMAP_VERSION_INFO_EXT => Some("MICROMAP_VERSION_INFO_EXT"),
Self::COPY_MICROMAP_INFO_EXT => Some("COPY_MICROMAP_INFO_EXT"),
Self::COPY_MICROMAP_TO_MEMORY_INFO_EXT => Some("COPY_MICROMAP_TO_MEMORY_INFO_EXT"),
Self::COPY_MEMORY_TO_MICROMAP_INFO_EXT => Some("COPY_MEMORY_TO_MICROMAP_INFO_EXT"),
Self::PHYSICAL_DEVICE_OPACITY_MICROMAP_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_OPACITY_MICROMAP_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_OPACITY_MICROMAP_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_OPACITY_MICROMAP_PROPERTIES_EXT")
}
Self::MICROMAP_CREATE_INFO_EXT => Some("MICROMAP_CREATE_INFO_EXT"),
Self::MICROMAP_BUILD_SIZES_INFO_EXT => Some("MICROMAP_BUILD_SIZES_INFO_EXT"),
Self::ACCELERATION_STRUCTURE_TRIANGLES_OPACITY_MICROMAP_EXT => {
Some("ACCELERATION_STRUCTURE_TRIANGLES_OPACITY_MICROMAP_EXT")
}
Self::PHYSICAL_DEVICE_DISPLACEMENT_MICROMAP_FEATURES_NV => {
Some("PHYSICAL_DEVICE_DISPLACEMENT_MICROMAP_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_DISPLACEMENT_MICROMAP_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_DISPLACEMENT_MICROMAP_PROPERTIES_NV")
}
Self::ACCELERATION_STRUCTURE_TRIANGLES_DISPLACEMENT_MICROMAP_NV => {
Some("ACCELERATION_STRUCTURE_TRIANGLES_DISPLACEMENT_MICROMAP_NV")
}
Self::PHYSICAL_DEVICE_CLUSTER_CULLING_SHADER_FEATURES_HUAWEI => {
Some("PHYSICAL_DEVICE_CLUSTER_CULLING_SHADER_FEATURES_HUAWEI")
}
Self::PHYSICAL_DEVICE_CLUSTER_CULLING_SHADER_PROPERTIES_HUAWEI => {
Some("PHYSICAL_DEVICE_CLUSTER_CULLING_SHADER_PROPERTIES_HUAWEI")
}
Self::PHYSICAL_DEVICE_CLUSTER_CULLING_SHADER_VRS_FEATURES_HUAWEI => {
Some("PHYSICAL_DEVICE_CLUSTER_CULLING_SHADER_VRS_FEATURES_HUAWEI")
}
Self::PHYSICAL_DEVICE_BORDER_COLOR_SWIZZLE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_BORDER_COLOR_SWIZZLE_FEATURES_EXT")
}
Self::SAMPLER_BORDER_COLOR_COMPONENT_MAPPING_CREATE_INFO_EXT => {
Some("SAMPLER_BORDER_COLOR_COMPONENT_MAPPING_CREATE_INFO_EXT")
}
Self::PHYSICAL_DEVICE_PAGEABLE_DEVICE_LOCAL_MEMORY_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PAGEABLE_DEVICE_LOCAL_MEMORY_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_ARM => {
Some("PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_ARM")
}
Self::PHYSICAL_DEVICE_SHADER_SUBGROUP_ROTATE_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_SHADER_SUBGROUP_ROTATE_FEATURES_KHR")
}
Self::DEVICE_QUEUE_SHADER_CORE_CONTROL_CREATE_INFO_ARM => {
Some("DEVICE_QUEUE_SHADER_CORE_CONTROL_CREATE_INFO_ARM")
}
Self::PHYSICAL_DEVICE_SCHEDULING_CONTROLS_FEATURES_ARM => {
Some("PHYSICAL_DEVICE_SCHEDULING_CONTROLS_FEATURES_ARM")
}
Self::PHYSICAL_DEVICE_SCHEDULING_CONTROLS_PROPERTIES_ARM => {
Some("PHYSICAL_DEVICE_SCHEDULING_CONTROLS_PROPERTIES_ARM")
}
Self::PHYSICAL_DEVICE_IMAGE_SLICED_VIEW_OF_3D_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_IMAGE_SLICED_VIEW_OF_3D_FEATURES_EXT")
}
Self::IMAGE_VIEW_SLICED_CREATE_INFO_EXT => Some("IMAGE_VIEW_SLICED_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_DESCRIPTOR_SET_HOST_MAPPING_FEATURES_VALVE => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_SET_HOST_MAPPING_FEATURES_VALVE")
}
Self::DESCRIPTOR_SET_BINDING_REFERENCE_VALVE => {
Some("DESCRIPTOR_SET_BINDING_REFERENCE_VALVE")
}
Self::DESCRIPTOR_SET_LAYOUT_HOST_MAPPING_INFO_VALVE => {
Some("DESCRIPTOR_SET_LAYOUT_HOST_MAPPING_INFO_VALVE")
}
Self::PHYSICAL_DEVICE_DEPTH_CLAMP_ZERO_ONE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_DEPTH_CLAMP_ZERO_ONE_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_NON_SEAMLESS_CUBE_MAP_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_NON_SEAMLESS_CUBE_MAP_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_RENDER_PASS_STRIPED_FEATURES_ARM => {
Some("PHYSICAL_DEVICE_RENDER_PASS_STRIPED_FEATURES_ARM")
}
Self::PHYSICAL_DEVICE_RENDER_PASS_STRIPED_PROPERTIES_ARM => {
Some("PHYSICAL_DEVICE_RENDER_PASS_STRIPED_PROPERTIES_ARM")
}
Self::RENDER_PASS_STRIPE_BEGIN_INFO_ARM => Some("RENDER_PASS_STRIPE_BEGIN_INFO_ARM"),
Self::RENDER_PASS_STRIPE_INFO_ARM => Some("RENDER_PASS_STRIPE_INFO_ARM"),
Self::RENDER_PASS_STRIPE_SUBMIT_INFO_ARM => Some("RENDER_PASS_STRIPE_SUBMIT_INFO_ARM"),
Self::PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_FEATURES_QCOM")
}
Self::PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_PROPERTIES_QCOM => {
Some("PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_OFFSET_PROPERTIES_QCOM")
}
Self::SUBPASS_FRAGMENT_DENSITY_MAP_OFFSET_END_INFO_QCOM => {
Some("SUBPASS_FRAGMENT_DENSITY_MAP_OFFSET_END_INFO_QCOM")
}
Self::PHYSICAL_DEVICE_COPY_MEMORY_INDIRECT_FEATURES_NV => {
Some("PHYSICAL_DEVICE_COPY_MEMORY_INDIRECT_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_COPY_MEMORY_INDIRECT_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_COPY_MEMORY_INDIRECT_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_MEMORY_DECOMPRESSION_FEATURES_NV => {
Some("PHYSICAL_DEVICE_MEMORY_DECOMPRESSION_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_MEMORY_DECOMPRESSION_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_MEMORY_DECOMPRESSION_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_COMPUTE_FEATURES_NV => {
Some("PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_COMPUTE_FEATURES_NV")
}
Self::COMPUTE_PIPELINE_INDIRECT_BUFFER_INFO_NV => {
Some("COMPUTE_PIPELINE_INDIRECT_BUFFER_INFO_NV")
}
Self::PIPELINE_INDIRECT_DEVICE_ADDRESS_INFO_NV => {
Some("PIPELINE_INDIRECT_DEVICE_ADDRESS_INFO_NV")
}
Self::PHYSICAL_DEVICE_LINEAR_COLOR_ATTACHMENT_FEATURES_NV => {
Some("PHYSICAL_DEVICE_LINEAR_COLOR_ATTACHMENT_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_SHADER_MAXIMAL_RECONVERGENCE_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_SHADER_MAXIMAL_RECONVERGENCE_FEATURES_KHR")
}
Self::your_sha256_hash => {
Some(your_sha256_hash)
}
Self::PHYSICAL_DEVICE_IMAGE_PROCESSING_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_IMAGE_PROCESSING_FEATURES_QCOM")
}
Self::PHYSICAL_DEVICE_IMAGE_PROCESSING_PROPERTIES_QCOM => {
Some("PHYSICAL_DEVICE_IMAGE_PROCESSING_PROPERTIES_QCOM")
}
Self::IMAGE_VIEW_SAMPLE_WEIGHT_CREATE_INFO_QCOM => {
Some("IMAGE_VIEW_SAMPLE_WEIGHT_CREATE_INFO_QCOM")
}
Self::PHYSICAL_DEVICE_NESTED_COMMAND_BUFFER_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_NESTED_COMMAND_BUFFER_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_NESTED_COMMAND_BUFFER_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_NESTED_COMMAND_BUFFER_PROPERTIES_EXT")
}
Self::EXTERNAL_MEMORY_ACQUIRE_UNMODIFIED_EXT => {
Some("EXTERNAL_MEMORY_ACQUIRE_UNMODIFIED_EXT")
}
Self::PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_3_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_3_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_3_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_3_PROPERTIES_EXT")
}
Self::PHYSICAL_DEVICE_SUBPASS_MERGE_FEEDBACK_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SUBPASS_MERGE_FEEDBACK_FEATURES_EXT")
}
Self::RENDER_PASS_CREATION_CONTROL_EXT => Some("RENDER_PASS_CREATION_CONTROL_EXT"),
Self::RENDER_PASS_CREATION_FEEDBACK_CREATE_INFO_EXT => {
Some("RENDER_PASS_CREATION_FEEDBACK_CREATE_INFO_EXT")
}
Self::RENDER_PASS_SUBPASS_FEEDBACK_CREATE_INFO_EXT => {
Some("RENDER_PASS_SUBPASS_FEEDBACK_CREATE_INFO_EXT")
}
Self::DIRECT_DRIVER_LOADING_INFO_LUNARG => Some("DIRECT_DRIVER_LOADING_INFO_LUNARG"),
Self::DIRECT_DRIVER_LOADING_LIST_LUNARG => Some("DIRECT_DRIVER_LOADING_LIST_LUNARG"),
Self::PHYSICAL_DEVICE_SHADER_MODULE_IDENTIFIER_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_MODULE_IDENTIFIER_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_MODULE_IDENTIFIER_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_MODULE_IDENTIFIER_PROPERTIES_EXT")
}
Self::PIPELINE_SHADER_STAGE_MODULE_IDENTIFIER_CREATE_INFO_EXT => {
Some("PIPELINE_SHADER_STAGE_MODULE_IDENTIFIER_CREATE_INFO_EXT")
}
Self::SHADER_MODULE_IDENTIFIER_EXT => Some("SHADER_MODULE_IDENTIFIER_EXT"),
Self::your_sha256_hashXT => {
Some(your_sha256_hashXT")
}
Self::PHYSICAL_DEVICE_OPTICAL_FLOW_FEATURES_NV => {
Some("PHYSICAL_DEVICE_OPTICAL_FLOW_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_OPTICAL_FLOW_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_OPTICAL_FLOW_PROPERTIES_NV")
}
Self::OPTICAL_FLOW_IMAGE_FORMAT_INFO_NV => Some("OPTICAL_FLOW_IMAGE_FORMAT_INFO_NV"),
Self::OPTICAL_FLOW_IMAGE_FORMAT_PROPERTIES_NV => {
Some("OPTICAL_FLOW_IMAGE_FORMAT_PROPERTIES_NV")
}
Self::OPTICAL_FLOW_SESSION_CREATE_INFO_NV => {
Some("OPTICAL_FLOW_SESSION_CREATE_INFO_NV")
}
Self::OPTICAL_FLOW_EXECUTE_INFO_NV => Some("OPTICAL_FLOW_EXECUTE_INFO_NV"),
Self::OPTICAL_FLOW_SESSION_CREATE_PRIVATE_DATA_INFO_NV => {
Some("OPTICAL_FLOW_SESSION_CREATE_PRIVATE_DATA_INFO_NV")
}
Self::PHYSICAL_DEVICE_LEGACY_DITHERING_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_LEGACY_DITHERING_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_PIPELINE_PROTECTED_ACCESS_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PIPELINE_PROTECTED_ACCESS_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_EXTERNAL_FORMAT_RESOLVE_FEATURES_ANDROID => {
Some("PHYSICAL_DEVICE_EXTERNAL_FORMAT_RESOLVE_FEATURES_ANDROID")
}
Self::PHYSICAL_DEVICE_EXTERNAL_FORMAT_RESOLVE_PROPERTIES_ANDROID => {
Some("PHYSICAL_DEVICE_EXTERNAL_FORMAT_RESOLVE_PROPERTIES_ANDROID")
}
Self::ANDROID_HARDWARE_BUFFER_FORMAT_RESOLVE_PROPERTIES_ANDROID => {
Some("ANDROID_HARDWARE_BUFFER_FORMAT_RESOLVE_PROPERTIES_ANDROID")
}
Self::PHYSICAL_DEVICE_MAINTENANCE_5_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_MAINTENANCE_5_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_MAINTENANCE_5_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_MAINTENANCE_5_PROPERTIES_KHR")
}
Self::RENDERING_AREA_INFO_KHR => Some("RENDERING_AREA_INFO_KHR"),
Self::DEVICE_IMAGE_SUBRESOURCE_INFO_KHR => Some("DEVICE_IMAGE_SUBRESOURCE_INFO_KHR"),
Self::SUBRESOURCE_LAYOUT_2_KHR => Some("SUBRESOURCE_LAYOUT_2_KHR"),
Self::IMAGE_SUBRESOURCE_2_KHR => Some("IMAGE_SUBRESOURCE_2_KHR"),
Self::PIPELINE_CREATE_FLAGS_2_CREATE_INFO_KHR => {
Some("PIPELINE_CREATE_FLAGS_2_CREATE_INFO_KHR")
}
Self::BUFFER_USAGE_FLAGS_2_CREATE_INFO_KHR => {
Some("BUFFER_USAGE_FLAGS_2_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_POSITION_FETCH_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_RAY_TRACING_POSITION_FETCH_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_SHADER_OBJECT_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_OBJECT_FEATURES_EXT")
}
Self::PHYSICAL_DEVICE_SHADER_OBJECT_PROPERTIES_EXT => {
Some("PHYSICAL_DEVICE_SHADER_OBJECT_PROPERTIES_EXT")
}
Self::SHADER_CREATE_INFO_EXT => Some("SHADER_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_TILE_PROPERTIES_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_TILE_PROPERTIES_FEATURES_QCOM")
}
Self::TILE_PROPERTIES_QCOM => Some("TILE_PROPERTIES_QCOM"),
Self::PHYSICAL_DEVICE_AMIGO_PROFILING_FEATURES_SEC => {
Some("PHYSICAL_DEVICE_AMIGO_PROFILING_FEATURES_SEC")
}
Self::AMIGO_PROFILING_SUBMIT_INFO_SEC => Some("AMIGO_PROFILING_SUBMIT_INFO_SEC"),
Self::PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_VIEWPORTS_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_VIEWPORTS_FEATURES_QCOM")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_INVOCATION_REORDER_FEATURES_NV => {
Some("PHYSICAL_DEVICE_RAY_TRACING_INVOCATION_REORDER_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_INVOCATION_REORDER_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_RAY_TRACING_INVOCATION_REORDER_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_EXTENDED_SPARSE_ADDRESS_SPACE_FEATURES_NV => {
Some("PHYSICAL_DEVICE_EXTENDED_SPARSE_ADDRESS_SPACE_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_EXTENDED_SPARSE_ADDRESS_SPACE_PROPERTIES_NV => {
Some("PHYSICAL_DEVICE_EXTENDED_SPARSE_ADDRESS_SPACE_PROPERTIES_NV")
}
Self::PHYSICAL_DEVICE_MUTABLE_DESCRIPTOR_TYPE_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_MUTABLE_DESCRIPTOR_TYPE_FEATURES_EXT")
}
Self::MUTABLE_DESCRIPTOR_TYPE_CREATE_INFO_EXT => {
Some("MUTABLE_DESCRIPTOR_TYPE_CREATE_INFO_EXT")
}
Self::LAYER_SETTINGS_CREATE_INFO_EXT => Some("LAYER_SETTINGS_CREATE_INFO_EXT"),
Self::PHYSICAL_DEVICE_SHADER_CORE_BUILTINS_FEATURES_ARM => {
Some("PHYSICAL_DEVICE_SHADER_CORE_BUILTINS_FEATURES_ARM")
}
Self::PHYSICAL_DEVICE_SHADER_CORE_BUILTINS_PROPERTIES_ARM => {
Some("PHYSICAL_DEVICE_SHADER_CORE_BUILTINS_PROPERTIES_ARM")
}
Self::PHYSICAL_DEVICE_PIPELINE_LIBRARY_GROUP_HANDLES_FEATURES_EXT => {
Some("PHYSICAL_DEVICE_PIPELINE_LIBRARY_GROUP_HANDLES_FEATURES_EXT")
}
Self::your_sha256_hashT => {
Some(your_sha256_hashT")
}
Self::LATENCY_SLEEP_MODE_INFO_NV => Some("LATENCY_SLEEP_MODE_INFO_NV"),
Self::LATENCY_SLEEP_INFO_NV => Some("LATENCY_SLEEP_INFO_NV"),
Self::SET_LATENCY_MARKER_INFO_NV => Some("SET_LATENCY_MARKER_INFO_NV"),
Self::GET_LATENCY_MARKER_INFO_NV => Some("GET_LATENCY_MARKER_INFO_NV"),
Self::LATENCY_TIMINGS_FRAME_REPORT_NV => Some("LATENCY_TIMINGS_FRAME_REPORT_NV"),
Self::LATENCY_SUBMISSION_PRESENT_ID_NV => Some("LATENCY_SUBMISSION_PRESENT_ID_NV"),
Self::OUT_OF_BAND_QUEUE_TYPE_INFO_NV => Some("OUT_OF_BAND_QUEUE_TYPE_INFO_NV"),
Self::SWAPCHAIN_LATENCY_CREATE_INFO_NV => Some("SWAPCHAIN_LATENCY_CREATE_INFO_NV"),
Self::LATENCY_SURFACE_CAPABILITIES_NV => Some("LATENCY_SURFACE_CAPABILITIES_NV"),
Self::PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_KHR")
}
Self::COOPERATIVE_MATRIX_PROPERTIES_KHR => Some("COOPERATIVE_MATRIX_PROPERTIES_KHR"),
Self::PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_KHR")
}
Self::PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_RENDER_AREAS_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_RENDER_AREAS_FEATURES_QCOM")
}
Self::MULTIVIEW_PER_VIEW_RENDER_AREAS_RENDER_PASS_BEGIN_INFO_QCOM => {
Some("MULTIVIEW_PER_VIEW_RENDER_AREAS_RENDER_PASS_BEGIN_INFO_QCOM")
}
Self::VIDEO_DECODE_AV1_CAPABILITIES_KHR => Some("VIDEO_DECODE_AV1_CAPABILITIES_KHR"),
Self::VIDEO_DECODE_AV1_PICTURE_INFO_KHR => Some("VIDEO_DECODE_AV1_PICTURE_INFO_KHR"),
Self::VIDEO_DECODE_AV1_PROFILE_INFO_KHR => Some("VIDEO_DECODE_AV1_PROFILE_INFO_KHR"),
Self::VIDEO_DECODE_AV1_SESSION_PARAMETERS_CREATE_INFO_KHR => {
Some("VIDEO_DECODE_AV1_SESSION_PARAMETERS_CREATE_INFO_KHR")
}
Self::VIDEO_DECODE_AV1_DPB_SLOT_INFO_KHR => Some("VIDEO_DECODE_AV1_DPB_SLOT_INFO_KHR"),
Self::PHYSICAL_DEVICE_VIDEO_MAINTENANCE_1_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_VIDEO_MAINTENANCE_1_FEATURES_KHR")
}
Self::VIDEO_INLINE_QUERY_INFO_KHR => Some("VIDEO_INLINE_QUERY_INFO_KHR"),
Self::PHYSICAL_DEVICE_PER_STAGE_DESCRIPTOR_SET_FEATURES_NV => {
Some("PHYSICAL_DEVICE_PER_STAGE_DESCRIPTOR_SET_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_IMAGE_PROCESSING_2_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_IMAGE_PROCESSING_2_FEATURES_QCOM")
}
Self::PHYSICAL_DEVICE_IMAGE_PROCESSING_2_PROPERTIES_QCOM => {
Some("PHYSICAL_DEVICE_IMAGE_PROCESSING_2_PROPERTIES_QCOM")
}
Self::SAMPLER_BLOCK_MATCH_WINDOW_CREATE_INFO_QCOM => {
Some("SAMPLER_BLOCK_MATCH_WINDOW_CREATE_INFO_QCOM")
}
Self::SAMPLER_CUBIC_WEIGHTS_CREATE_INFO_QCOM => {
Some("SAMPLER_CUBIC_WEIGHTS_CREATE_INFO_QCOM")
}
Self::PHYSICAL_DEVICE_CUBIC_WEIGHTS_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_CUBIC_WEIGHTS_FEATURES_QCOM")
}
Self::BLIT_IMAGE_CUBIC_WEIGHTS_INFO_QCOM => Some("BLIT_IMAGE_CUBIC_WEIGHTS_INFO_QCOM"),
Self::PHYSICAL_DEVICE_YCBCR_DEGAMMA_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_YCBCR_DEGAMMA_FEATURES_QCOM")
}
Self::SAMPLER_YCBCR_CONVERSION_YCBCR_DEGAMMA_CREATE_INFO_QCOM => {
Some("SAMPLER_YCBCR_CONVERSION_YCBCR_DEGAMMA_CREATE_INFO_QCOM")
}
Self::PHYSICAL_DEVICE_CUBIC_CLAMP_FEATURES_QCOM => {
Some("PHYSICAL_DEVICE_CUBIC_CLAMP_FEATURES_QCOM")
}
Self::your_sha256_hashEXT => {
Some(your_sha256_hashEXT")
}
Self::PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_KHR")
}
Self::PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_KHR => {
Some("PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_SHADER_FLOAT_CONTROLS_2_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_SHADER_FLOAT_CONTROLS_2_FEATURES_KHR")
}
Self::SCREEN_BUFFER_PROPERTIES_QNX => Some("SCREEN_BUFFER_PROPERTIES_QNX"),
Self::SCREEN_BUFFER_FORMAT_PROPERTIES_QNX => {
Some("SCREEN_BUFFER_FORMAT_PROPERTIES_QNX")
}
Self::IMPORT_SCREEN_BUFFER_INFO_QNX => Some("IMPORT_SCREEN_BUFFER_INFO_QNX"),
Self::EXTERNAL_FORMAT_QNX => Some("EXTERNAL_FORMAT_QNX"),
Self::PHYSICAL_DEVICE_EXTERNAL_MEMORY_SCREEN_BUFFER_FEATURES_QNX => {
Some("PHYSICAL_DEVICE_EXTERNAL_MEMORY_SCREEN_BUFFER_FEATURES_QNX")
}
Self::PHYSICAL_DEVICE_LAYERED_DRIVER_PROPERTIES_MSFT => {
Some("PHYSICAL_DEVICE_LAYERED_DRIVER_PROPERTIES_MSFT")
}
Self::PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_LINE_RASTERIZATION_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_LINE_RASTERIZATION_FEATURES_KHR")
}
Self::PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_KHR => {
Some("PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_KHR")
}
Self::PHYSICAL_DEVICE_LINE_RASTERIZATION_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_LINE_RASTERIZATION_PROPERTIES_KHR")
}
Self::CALIBRATED_TIMESTAMP_INFO_KHR => Some("CALIBRATED_TIMESTAMP_INFO_KHR"),
Self::PHYSICAL_DEVICE_SHADER_EXPECT_ASSUME_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_SHADER_EXPECT_ASSUME_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_MAINTENANCE_6_FEATURES_KHR => {
Some("PHYSICAL_DEVICE_MAINTENANCE_6_FEATURES_KHR")
}
Self::PHYSICAL_DEVICE_MAINTENANCE_6_PROPERTIES_KHR => {
Some("PHYSICAL_DEVICE_MAINTENANCE_6_PROPERTIES_KHR")
}
Self::BIND_MEMORY_STATUS_KHR => Some("BIND_MEMORY_STATUS_KHR"),
Self::BIND_DESCRIPTOR_SETS_INFO_KHR => Some("BIND_DESCRIPTOR_SETS_INFO_KHR"),
Self::PUSH_CONSTANTS_INFO_KHR => Some("PUSH_CONSTANTS_INFO_KHR"),
Self::PUSH_DESCRIPTOR_SET_INFO_KHR => Some("PUSH_DESCRIPTOR_SET_INFO_KHR"),
Self::PUSH_DESCRIPTOR_SET_WITH_TEMPLATE_INFO_KHR => {
Some("PUSH_DESCRIPTOR_SET_WITH_TEMPLATE_INFO_KHR")
}
Self::SET_DESCRIPTOR_BUFFER_OFFSETS_INFO_EXT => {
Some("SET_DESCRIPTOR_BUFFER_OFFSETS_INFO_EXT")
}
Self::BIND_DESCRIPTOR_BUFFER_EMBEDDED_SAMPLERS_INFO_EXT => {
Some("BIND_DESCRIPTOR_BUFFER_EMBEDDED_SAMPLERS_INFO_EXT")
}
Self::PHYSICAL_DEVICE_DESCRIPTOR_POOL_OVERALLOCATION_FEATURES_NV => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_POOL_OVERALLOCATION_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_RAW_ACCESS_CHAINS_FEATURES_NV => {
Some("PHYSICAL_DEVICE_RAW_ACCESS_CHAINS_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT16_VECTOR_FEATURES_NV => {
Some("PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT16_VECTOR_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_RAY_TRACING_VALIDATION_FEATURES_NV => {
Some("PHYSICAL_DEVICE_RAY_TRACING_VALIDATION_FEATURES_NV")
}
Self::PHYSICAL_DEVICE_SUBGROUP_PROPERTIES => {
Some("PHYSICAL_DEVICE_SUBGROUP_PROPERTIES")
}
Self::BIND_BUFFER_MEMORY_INFO => Some("BIND_BUFFER_MEMORY_INFO"),
Self::BIND_IMAGE_MEMORY_INFO => Some("BIND_IMAGE_MEMORY_INFO"),
Self::PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES => {
Some("PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES")
}
Self::MEMORY_DEDICATED_REQUIREMENTS => Some("MEMORY_DEDICATED_REQUIREMENTS"),
Self::MEMORY_DEDICATED_ALLOCATE_INFO => Some("MEMORY_DEDICATED_ALLOCATE_INFO"),
Self::MEMORY_ALLOCATE_FLAGS_INFO => Some("MEMORY_ALLOCATE_FLAGS_INFO"),
Self::DEVICE_GROUP_RENDER_PASS_BEGIN_INFO => {
Some("DEVICE_GROUP_RENDER_PASS_BEGIN_INFO")
}
Self::DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO => {
Some("DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO")
}
Self::DEVICE_GROUP_SUBMIT_INFO => Some("DEVICE_GROUP_SUBMIT_INFO"),
Self::DEVICE_GROUP_BIND_SPARSE_INFO => Some("DEVICE_GROUP_BIND_SPARSE_INFO"),
Self::BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO => {
Some("BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO")
}
Self::BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO => {
Some("BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO")
}
Self::PHYSICAL_DEVICE_GROUP_PROPERTIES => Some("PHYSICAL_DEVICE_GROUP_PROPERTIES"),
Self::DEVICE_GROUP_DEVICE_CREATE_INFO => Some("DEVICE_GROUP_DEVICE_CREATE_INFO"),
Self::BUFFER_MEMORY_REQUIREMENTS_INFO_2 => Some("BUFFER_MEMORY_REQUIREMENTS_INFO_2"),
Self::IMAGE_MEMORY_REQUIREMENTS_INFO_2 => Some("IMAGE_MEMORY_REQUIREMENTS_INFO_2"),
Self::IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2 => {
Some("IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2")
}
Self::MEMORY_REQUIREMENTS_2 => Some("MEMORY_REQUIREMENTS_2"),
Self::SPARSE_IMAGE_MEMORY_REQUIREMENTS_2 => Some("SPARSE_IMAGE_MEMORY_REQUIREMENTS_2"),
Self::PHYSICAL_DEVICE_FEATURES_2 => Some("PHYSICAL_DEVICE_FEATURES_2"),
Self::PHYSICAL_DEVICE_PROPERTIES_2 => Some("PHYSICAL_DEVICE_PROPERTIES_2"),
Self::FORMAT_PROPERTIES_2 => Some("FORMAT_PROPERTIES_2"),
Self::IMAGE_FORMAT_PROPERTIES_2 => Some("IMAGE_FORMAT_PROPERTIES_2"),
Self::PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2 => {
Some("PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2")
}
Self::QUEUE_FAMILY_PROPERTIES_2 => Some("QUEUE_FAMILY_PROPERTIES_2"),
Self::PHYSICAL_DEVICE_MEMORY_PROPERTIES_2 => {
Some("PHYSICAL_DEVICE_MEMORY_PROPERTIES_2")
}
Self::SPARSE_IMAGE_FORMAT_PROPERTIES_2 => Some("SPARSE_IMAGE_FORMAT_PROPERTIES_2"),
Self::PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2 => {
Some("PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2")
}
Self::PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES => {
Some("PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES")
}
Self::RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO => {
Some("RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO")
}
Self::IMAGE_VIEW_USAGE_CREATE_INFO => Some("IMAGE_VIEW_USAGE_CREATE_INFO"),
Self::PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO => {
Some("PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO")
}
Self::RENDER_PASS_MULTIVIEW_CREATE_INFO => Some("RENDER_PASS_MULTIVIEW_CREATE_INFO"),
Self::PHYSICAL_DEVICE_MULTIVIEW_FEATURES => Some("PHYSICAL_DEVICE_MULTIVIEW_FEATURES"),
Self::PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES => {
Some("PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES")
}
Self::PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES => {
Some("PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES")
}
Self::PROTECTED_SUBMIT_INFO => Some("PROTECTED_SUBMIT_INFO"),
Self::PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES => {
Some("PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES")
}
Self::PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES => {
Some("PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES")
}
Self::DEVICE_QUEUE_INFO_2 => Some("DEVICE_QUEUE_INFO_2"),
Self::SAMPLER_YCBCR_CONVERSION_CREATE_INFO => {
Some("SAMPLER_YCBCR_CONVERSION_CREATE_INFO")
}
Self::SAMPLER_YCBCR_CONVERSION_INFO => Some("SAMPLER_YCBCR_CONVERSION_INFO"),
Self::BIND_IMAGE_PLANE_MEMORY_INFO => Some("BIND_IMAGE_PLANE_MEMORY_INFO"),
Self::IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO => {
Some("IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO")
}
Self::PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES => {
Some("PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES")
}
Self::SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES => {
Some("SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES")
}
Self::DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO => {
Some("DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO")
}
Self::PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO => {
Some("PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO")
}
Self::EXTERNAL_IMAGE_FORMAT_PROPERTIES => Some("EXTERNAL_IMAGE_FORMAT_PROPERTIES"),
Self::PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO => {
Some("PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO")
}
Self::EXTERNAL_BUFFER_PROPERTIES => Some("EXTERNAL_BUFFER_PROPERTIES"),
Self::PHYSICAL_DEVICE_ID_PROPERTIES => Some("PHYSICAL_DEVICE_ID_PROPERTIES"),
Self::EXTERNAL_MEMORY_BUFFER_CREATE_INFO => Some("EXTERNAL_MEMORY_BUFFER_CREATE_INFO"),
Self::EXTERNAL_MEMORY_IMAGE_CREATE_INFO => Some("EXTERNAL_MEMORY_IMAGE_CREATE_INFO"),
Self::EXPORT_MEMORY_ALLOCATE_INFO => Some("EXPORT_MEMORY_ALLOCATE_INFO"),
Self::PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO => {
Some("PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO")
}
Self::EXTERNAL_FENCE_PROPERTIES => Some("EXTERNAL_FENCE_PROPERTIES"),
Self::EXPORT_FENCE_CREATE_INFO => Some("EXPORT_FENCE_CREATE_INFO"),
Self::EXPORT_SEMAPHORE_CREATE_INFO => Some("EXPORT_SEMAPHORE_CREATE_INFO"),
Self::PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO => {
Some("PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO")
}
Self::EXTERNAL_SEMAPHORE_PROPERTIES => Some("EXTERNAL_SEMAPHORE_PROPERTIES"),
Self::PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES => {
Some("PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES")
}
Self::DESCRIPTOR_SET_LAYOUT_SUPPORT => Some("DESCRIPTOR_SET_LAYOUT_SUPPORT"),
Self::PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES")
}
Self::PHYSICAL_DEVICE_VULKAN_1_1_FEATURES => {
Some("PHYSICAL_DEVICE_VULKAN_1_1_FEATURES")
}
Self::PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES => {
Some("PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES")
}
Self::PHYSICAL_DEVICE_VULKAN_1_2_FEATURES => {
Some("PHYSICAL_DEVICE_VULKAN_1_2_FEATURES")
}
Self::PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES => {
Some("PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES")
}
Self::IMAGE_FORMAT_LIST_CREATE_INFO => Some("IMAGE_FORMAT_LIST_CREATE_INFO"),
Self::ATTACHMENT_DESCRIPTION_2 => Some("ATTACHMENT_DESCRIPTION_2"),
Self::ATTACHMENT_REFERENCE_2 => Some("ATTACHMENT_REFERENCE_2"),
Self::SUBPASS_DESCRIPTION_2 => Some("SUBPASS_DESCRIPTION_2"),
Self::SUBPASS_DEPENDENCY_2 => Some("SUBPASS_DEPENDENCY_2"),
Self::RENDER_PASS_CREATE_INFO_2 => Some("RENDER_PASS_CREATE_INFO_2"),
Self::SUBPASS_BEGIN_INFO => Some("SUBPASS_BEGIN_INFO"),
Self::SUBPASS_END_INFO => Some("SUBPASS_END_INFO"),
Self::PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES => {
Some("PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES")
}
Self::PHYSICAL_DEVICE_DRIVER_PROPERTIES => Some("PHYSICAL_DEVICE_DRIVER_PROPERTIES"),
Self::PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES")
}
Self::PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES")
}
Self::PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES => {
Some("PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES")
}
Self::DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO => {
Some("DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO")
}
Self::PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES")
}
Self::PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES => {
Some("PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES")
}
Self::DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO => {
Some("DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO")
}
Self::DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT => {
Some("DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT")
}
Self::PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES => {
Some("PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES")
}
Self::SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE => {
Some("SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE")
}
Self::PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES => {
Some("PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES")
}
Self::IMAGE_STENCIL_USAGE_CREATE_INFO => Some("IMAGE_STENCIL_USAGE_CREATE_INFO"),
Self::PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES => {
Some("PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES")
}
Self::SAMPLER_REDUCTION_MODE_CREATE_INFO => Some("SAMPLER_REDUCTION_MODE_CREATE_INFO"),
Self::PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES => {
Some("PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES")
}
Self::PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES => {
Some("PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES")
}
Self::FRAMEBUFFER_ATTACHMENTS_CREATE_INFO => {
Some("FRAMEBUFFER_ATTACHMENTS_CREATE_INFO")
}
Self::FRAMEBUFFER_ATTACHMENT_IMAGE_INFO => Some("FRAMEBUFFER_ATTACHMENT_IMAGE_INFO"),
Self::RENDER_PASS_ATTACHMENT_BEGIN_INFO => Some("RENDER_PASS_ATTACHMENT_BEGIN_INFO"),
Self::PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES => {
Some("PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES")
}
Self::PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES")
}
Self::PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES => {
Some("PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES")
}
Self::ATTACHMENT_REFERENCE_STENCIL_LAYOUT => {
Some("ATTACHMENT_REFERENCE_STENCIL_LAYOUT")
}
Self::ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT => {
Some("ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT")
}
Self::PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES => {
Some("PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES")
}
Self::PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES => {
Some("PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES")
}
Self::PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES => {
Some("PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES")
}
Self::SEMAPHORE_TYPE_CREATE_INFO => Some("SEMAPHORE_TYPE_CREATE_INFO"),
Self::TIMELINE_SEMAPHORE_SUBMIT_INFO => Some("TIMELINE_SEMAPHORE_SUBMIT_INFO"),
Self::SEMAPHORE_WAIT_INFO => Some("SEMAPHORE_WAIT_INFO"),
Self::SEMAPHORE_SIGNAL_INFO => Some("SEMAPHORE_SIGNAL_INFO"),
Self::PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES => {
Some("PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES")
}
Self::BUFFER_DEVICE_ADDRESS_INFO => Some("BUFFER_DEVICE_ADDRESS_INFO"),
Self::BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO => {
Some("BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO")
}
Self::MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO => {
Some("MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO")
}
Self::DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO => {
Some("DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO")
}
Self::PHYSICAL_DEVICE_VULKAN_1_3_FEATURES => {
Some("PHYSICAL_DEVICE_VULKAN_1_3_FEATURES")
}
Self::PHYSICAL_DEVICE_VULKAN_1_3_PROPERTIES => {
Some("PHYSICAL_DEVICE_VULKAN_1_3_PROPERTIES")
}
Self::PIPELINE_CREATION_FEEDBACK_CREATE_INFO => {
Some("PIPELINE_CREATION_FEEDBACK_CREATE_INFO")
}
Self::PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES")
}
Self::PHYSICAL_DEVICE_TOOL_PROPERTIES => Some("PHYSICAL_DEVICE_TOOL_PROPERTIES"),
Self::PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES")
}
Self::PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES => {
Some("PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES")
}
Self::DEVICE_PRIVATE_DATA_CREATE_INFO => Some("DEVICE_PRIVATE_DATA_CREATE_INFO"),
Self::PRIVATE_DATA_SLOT_CREATE_INFO => Some("PRIVATE_DATA_SLOT_CREATE_INFO"),
Self::PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES => {
Some("PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES")
}
Self::MEMORY_BARRIER_2 => Some("MEMORY_BARRIER_2"),
Self::BUFFER_MEMORY_BARRIER_2 => Some("BUFFER_MEMORY_BARRIER_2"),
Self::IMAGE_MEMORY_BARRIER_2 => Some("IMAGE_MEMORY_BARRIER_2"),
Self::DEPENDENCY_INFO => Some("DEPENDENCY_INFO"),
Self::SUBMIT_INFO_2 => Some("SUBMIT_INFO_2"),
Self::SEMAPHORE_SUBMIT_INFO => Some("SEMAPHORE_SUBMIT_INFO"),
Self::COMMAND_BUFFER_SUBMIT_INFO => Some("COMMAND_BUFFER_SUBMIT_INFO"),
Self::PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES => {
Some("PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES")
}
Self::PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES => {
Some("PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES")
}
Self::PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES => {
Some("PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES")
}
Self::COPY_BUFFER_INFO_2 => Some("COPY_BUFFER_INFO_2"),
Self::COPY_IMAGE_INFO_2 => Some("COPY_IMAGE_INFO_2"),
Self::COPY_BUFFER_TO_IMAGE_INFO_2 => Some("COPY_BUFFER_TO_IMAGE_INFO_2"),
Self::COPY_IMAGE_TO_BUFFER_INFO_2 => Some("COPY_IMAGE_TO_BUFFER_INFO_2"),
Self::BLIT_IMAGE_INFO_2 => Some("BLIT_IMAGE_INFO_2"),
Self::RESOLVE_IMAGE_INFO_2 => Some("RESOLVE_IMAGE_INFO_2"),
Self::BUFFER_COPY_2 => Some("BUFFER_COPY_2"),
Self::IMAGE_COPY_2 => Some("IMAGE_COPY_2"),
Self::IMAGE_BLIT_2 => Some("IMAGE_BLIT_2"),
Self::BUFFER_IMAGE_COPY_2 => Some("BUFFER_IMAGE_COPY_2"),
Self::IMAGE_RESOLVE_2 => Some("IMAGE_RESOLVE_2"),
Self::PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES => {
Some("PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES")
}
Self::PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO => {
Some("PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO")
}
Self::PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES => {
Some("PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES")
}
Self::PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES => {
Some("PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES")
}
Self::PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES => {
Some("PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES")
}
Self::WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK => {
Some("WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK")
}
Self::DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO => {
Some("DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO")
}
Self::PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES => {
Some("PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES")
}
Self::RENDERING_INFO => Some("RENDERING_INFO"),
Self::RENDERING_ATTACHMENT_INFO => Some("RENDERING_ATTACHMENT_INFO"),
Self::PIPELINE_RENDERING_CREATE_INFO => Some("PIPELINE_RENDERING_CREATE_INFO"),
Self::PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES => {
Some("PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES")
}
Self::COMMAND_BUFFER_INHERITANCE_RENDERING_INFO => {
Some("COMMAND_BUFFER_INHERITANCE_RENDERING_INFO")
}
Self::PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES => {
Some("PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES")
}
Self::PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES => {
Some("PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES")
}
Self::PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES => {
Some("PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES")
}
Self::FORMAT_PROPERTIES_3 => Some("FORMAT_PROPERTIES_3"),
Self::PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES => {
Some("PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES")
}
Self::PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES => {
Some("PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES")
}
Self::DEVICE_BUFFER_MEMORY_REQUIREMENTS => Some("DEVICE_BUFFER_MEMORY_REQUIREMENTS"),
Self::DEVICE_IMAGE_MEMORY_REQUIREMENTS => Some("DEVICE_IMAGE_MEMORY_REQUIREMENTS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SubgroupFeatureFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(SubgroupFeatureFlags::BASIC.0, "BASIC"),
(SubgroupFeatureFlags::VOTE.0, "VOTE"),
(SubgroupFeatureFlags::ARITHMETIC.0, "ARITHMETIC"),
(SubgroupFeatureFlags::BALLOT.0, "BALLOT"),
(SubgroupFeatureFlags::SHUFFLE.0, "SHUFFLE"),
(SubgroupFeatureFlags::SHUFFLE_RELATIVE.0, "SHUFFLE_RELATIVE"),
(SubgroupFeatureFlags::CLUSTERED.0, "CLUSTERED"),
(SubgroupFeatureFlags::QUAD.0, "QUAD"),
(SubgroupFeatureFlags::PARTITIONED_NV.0, "PARTITIONED_NV"),
(SubgroupFeatureFlags::ROTATE_KHR.0, "ROTATE_KHR"),
(
SubgroupFeatureFlags::ROTATE_CLUSTERED_KHR.0,
"ROTATE_CLUSTERED_KHR",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SubmitFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(SubmitFlags::PROTECTED.0, "PROTECTED")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SubpassContents {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::INLINE => Some("INLINE"),
Self::SECONDARY_COMMAND_BUFFERS => Some("SECONDARY_COMMAND_BUFFERS"),
Self::INLINE_AND_SECONDARY_COMMAND_BUFFERS_EXT => {
Some("INLINE_AND_SECONDARY_COMMAND_BUFFERS_EXT")
}
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SubpassDescriptionFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
SubpassDescriptionFlags::PER_VIEW_ATTRIBUTES_NVX.0,
"PER_VIEW_ATTRIBUTES_NVX",
),
(
SubpassDescriptionFlags::PER_VIEW_POSITION_X_ONLY_NVX.0,
"PER_VIEW_POSITION_X_ONLY_NVX",
),
(
SubpassDescriptionFlags::FRAGMENT_REGION_QCOM.0,
"FRAGMENT_REGION_QCOM",
),
(
SubpassDescriptionFlags::SHADER_RESOLVE_QCOM.0,
"SHADER_RESOLVE_QCOM",
),
(
SubpassDescriptionFlags::RASTERIZATION_ORDER_ATTACHMENT_COLOR_ACCESS_EXT.0,
"RASTERIZATION_ORDER_ATTACHMENT_COLOR_ACCESS_EXT",
),
(
SubpassDescriptionFlags::RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_EXT.0,
"RASTERIZATION_ORDER_ATTACHMENT_DEPTH_ACCESS_EXT",
),
(
SubpassDescriptionFlags::RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_EXT.0,
"RASTERIZATION_ORDER_ATTACHMENT_STENCIL_ACCESS_EXT",
),
(
SubpassDescriptionFlags::ENABLE_LEGACY_DITHERING_EXT.0,
"ENABLE_LEGACY_DITHERING_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SubpassMergeStatusEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::MERGED => Some("MERGED"),
Self::DISALLOWED => Some("DISALLOWED"),
Self::NOT_MERGED_SIDE_EFFECTS => Some("NOT_MERGED_SIDE_EFFECTS"),
Self::NOT_MERGED_SAMPLES_MISMATCH => Some("NOT_MERGED_SAMPLES_MISMATCH"),
Self::NOT_MERGED_VIEWS_MISMATCH => Some("NOT_MERGED_VIEWS_MISMATCH"),
Self::NOT_MERGED_ALIASING => Some("NOT_MERGED_ALIASING"),
Self::NOT_MERGED_DEPENDENCIES => Some("NOT_MERGED_DEPENDENCIES"),
Self::NOT_MERGED_INCOMPATIBLE_INPUT_ATTACHMENT => {
Some("NOT_MERGED_INCOMPATIBLE_INPUT_ATTACHMENT")
}
Self::NOT_MERGED_TOO_MANY_ATTACHMENTS => Some("NOT_MERGED_TOO_MANY_ATTACHMENTS"),
Self::NOT_MERGED_INSUFFICIENT_STORAGE => Some("NOT_MERGED_INSUFFICIENT_STORAGE"),
Self::NOT_MERGED_DEPTH_STENCIL_COUNT => Some("NOT_MERGED_DEPTH_STENCIL_COUNT"),
Self::NOT_MERGED_RESOLVE_ATTACHMENT_REUSE => {
Some("NOT_MERGED_RESOLVE_ATTACHMENT_REUSE")
}
Self::NOT_MERGED_SINGLE_SUBPASS => Some("NOT_MERGED_SINGLE_SUBPASS"),
Self::NOT_MERGED_UNSPECIFIED => Some("NOT_MERGED_UNSPECIFIED"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for SurfaceCounterFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(SurfaceCounterFlagsEXT::VBLANK.0, "VBLANK")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SurfaceTransformFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(SurfaceTransformFlagsKHR::IDENTITY.0, "IDENTITY"),
(SurfaceTransformFlagsKHR::ROTATE_90.0, "ROTATE_90"),
(SurfaceTransformFlagsKHR::ROTATE_180.0, "ROTATE_180"),
(SurfaceTransformFlagsKHR::ROTATE_270.0, "ROTATE_270"),
(
SurfaceTransformFlagsKHR::HORIZONTAL_MIRROR.0,
"HORIZONTAL_MIRROR",
),
(
SurfaceTransformFlagsKHR::HORIZONTAL_MIRROR_ROTATE_90.0,
"HORIZONTAL_MIRROR_ROTATE_90",
),
(
SurfaceTransformFlagsKHR::HORIZONTAL_MIRROR_ROTATE_180.0,
"HORIZONTAL_MIRROR_ROTATE_180",
),
(
SurfaceTransformFlagsKHR::HORIZONTAL_MIRROR_ROTATE_270.0,
"HORIZONTAL_MIRROR_ROTATE_270",
),
(SurfaceTransformFlagsKHR::INHERIT.0, "INHERIT"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SwapchainCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
SwapchainCreateFlagsKHR::SPLIT_INSTANCE_BIND_REGIONS.0,
"SPLIT_INSTANCE_BIND_REGIONS",
),
(SwapchainCreateFlagsKHR::PROTECTED.0, "PROTECTED"),
(SwapchainCreateFlagsKHR::MUTABLE_FORMAT.0, "MUTABLE_FORMAT"),
(
SwapchainCreateFlagsKHR::DEFERRED_MEMORY_ALLOCATION_EXT.0,
"DEFERRED_MEMORY_ALLOCATION_EXT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SwapchainImageUsageFlagsANDROID {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[(SwapchainImageUsageFlagsANDROID::SHARED.0, "SHARED")];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for SystemAllocationScope {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::COMMAND => Some("COMMAND"),
Self::OBJECT => Some("OBJECT"),
Self::CACHE => Some("CACHE"),
Self::DEVICE => Some("DEVICE"),
Self::INSTANCE => Some("INSTANCE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for TessellationDomainOrigin {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::UPPER_LEFT => Some("UPPER_LEFT"),
Self::LOWER_LEFT => Some("LOWER_LEFT"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for TimeDomainKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEVICE => Some("DEVICE"),
Self::CLOCK_MONOTONIC => Some("CLOCK_MONOTONIC"),
Self::CLOCK_MONOTONIC_RAW => Some("CLOCK_MONOTONIC_RAW"),
Self::QUERY_PERFORMANCE_COUNTER => Some("QUERY_PERFORMANCE_COUNTER"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ToolPurposeFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(ToolPurposeFlags::VALIDATION.0, "VALIDATION"),
(ToolPurposeFlags::PROFILING.0, "PROFILING"),
(ToolPurposeFlags::TRACING.0, "TRACING"),
(
ToolPurposeFlags::ADDITIONAL_FEATURES.0,
"ADDITIONAL_FEATURES",
),
(ToolPurposeFlags::MODIFYING_FEATURES.0, "MODIFYING_FEATURES"),
(
ToolPurposeFlags::DEBUG_REPORTING_EXT.0,
"DEBUG_REPORTING_EXT",
),
(ToolPurposeFlags::DEBUG_MARKERS_EXT.0, "DEBUG_MARKERS_EXT"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ValidationCacheCreateFlagsEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ValidationCacheHeaderVersionEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ONE => Some("ONE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ValidationCheckEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ALL => Some("ALL"),
Self::SHADERS => Some("SHADERS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ValidationFeatureDisableEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::ALL => Some("ALL"),
Self::SHADERS => Some("SHADERS"),
Self::THREAD_SAFETY => Some("THREAD_SAFETY"),
Self::API_PARAMETERS => Some("API_PARAMETERS"),
Self::OBJECT_LIFETIMES => Some("OBJECT_LIFETIMES"),
Self::CORE_CHECKS => Some("CORE_CHECKS"),
Self::UNIQUE_HANDLES => Some("UNIQUE_HANDLES"),
Self::SHADER_VALIDATION_CACHE => Some("SHADER_VALIDATION_CACHE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ValidationFeatureEnableEXT {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::GPU_ASSISTED => Some("GPU_ASSISTED"),
Self::GPU_ASSISTED_RESERVE_BINDING_SLOT => Some("GPU_ASSISTED_RESERVE_BINDING_SLOT"),
Self::BEST_PRACTICES => Some("BEST_PRACTICES"),
Self::DEBUG_PRINTF => Some("DEBUG_PRINTF"),
Self::SYNCHRONIZATION_VALIDATION => Some("SYNCHRONIZATION_VALIDATION"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for VendorId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::VIV => Some("VIV"),
Self::VSI => Some("VSI"),
Self::KAZAN => Some("KAZAN"),
Self::CODEPLAY => Some("CODEPLAY"),
Self::MESA => Some("MESA"),
Self::POCL => Some("POCL"),
Self::MOBILEYE => Some("MOBILEYE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for VertexInputRate {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::VERTEX => Some("VERTEX"),
Self::INSTANCE => Some("INSTANCE"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for ViSurfaceCreateFlagsNN {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoBeginCodingFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoCapabilityFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoCapabilityFlagsKHR::PROTECTED_CONTENT.0,
"PROTECTED_CONTENT",
),
(
VideoCapabilityFlagsKHR::SEPARATE_REFERENCE_IMAGES.0,
"SEPARATE_REFERENCE_IMAGES",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoChromaSubsamplingFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoChromaSubsamplingFlagsKHR::INVALID.0, "INVALID"),
(VideoChromaSubsamplingFlagsKHR::MONOCHROME.0, "MONOCHROME"),
(VideoChromaSubsamplingFlagsKHR::TYPE_420.0, "TYPE_420"),
(VideoChromaSubsamplingFlagsKHR::TYPE_422.0, "TYPE_422"),
(VideoChromaSubsamplingFlagsKHR::TYPE_444.0, "TYPE_444"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoCodecOperationFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoCodecOperationFlagsKHR::NONE.0, "NONE"),
(VideoCodecOperationFlagsKHR::ENCODE_H264.0, "ENCODE_H264"),
(VideoCodecOperationFlagsKHR::ENCODE_H265.0, "ENCODE_H265"),
(VideoCodecOperationFlagsKHR::DECODE_H264.0, "DECODE_H264"),
(VideoCodecOperationFlagsKHR::DECODE_H265.0, "DECODE_H265"),
(VideoCodecOperationFlagsKHR::DECODE_AV1.0, "DECODE_AV1"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoCodingControlFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoCodingControlFlagsKHR::RESET.0, "RESET"),
(
VideoCodingControlFlagsKHR::ENCODE_RATE_CONTROL.0,
"ENCODE_RATE_CONTROL",
),
(
VideoCodingControlFlagsKHR::ENCODE_QUALITY_LEVEL.0,
"ENCODE_QUALITY_LEVEL",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoComponentBitDepthFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoComponentBitDepthFlagsKHR::INVALID.0, "INVALID"),
(VideoComponentBitDepthFlagsKHR::TYPE_8.0, "TYPE_8"),
(VideoComponentBitDepthFlagsKHR::TYPE_10.0, "TYPE_10"),
(VideoComponentBitDepthFlagsKHR::TYPE_12.0, "TYPE_12"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoDecodeCapabilityFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoDecodeCapabilityFlagsKHR::DPB_AND_OUTPUT_COINCIDE.0,
"DPB_AND_OUTPUT_COINCIDE",
),
(
VideoDecodeCapabilityFlagsKHR::DPB_AND_OUTPUT_DISTINCT.0,
"DPB_AND_OUTPUT_DISTINCT",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoDecodeFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoDecodeH264PictureLayoutFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoDecodeH264PictureLayoutFlagsKHR::PROGRESSIVE.0,
"PROGRESSIVE",
),
(
VideoDecodeH264PictureLayoutFlagsKHR::INTERLACED_INTERLEAVED_LINES.0,
"INTERLACED_INTERLEAVED_LINES",
),
(
VideoDecodeH264PictureLayoutFlagsKHR::INTERLACED_SEPARATE_PLANES.0,
"INTERLACED_SEPARATE_PLANES",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoDecodeUsageFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoDecodeUsageFlagsKHR::DEFAULT.0, "DEFAULT"),
(VideoDecodeUsageFlagsKHR::TRANSCODING.0, "TRANSCODING"),
(VideoDecodeUsageFlagsKHR::OFFLINE.0, "OFFLINE"),
(VideoDecodeUsageFlagsKHR::STREAMING.0, "STREAMING"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeCapabilityFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeCapabilityFlagsKHR::PRECEDING_EXTERNALLY_ENCODED_BYTES.0,
"PRECEDING_EXTERNALLY_ENCODED_BYTES",
),
(
VideoEncodeCapabilityFlagsKHR::INSUFFICIENTSTREAM_BUFFER_RANGE_DETECTION.0,
"INSUFFICIENTSTREAM_BUFFER_RANGE_DETECTION",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeContentFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoEncodeContentFlagsKHR::DEFAULT.0, "DEFAULT"),
(VideoEncodeContentFlagsKHR::CAMERA.0, "CAMERA"),
(VideoEncodeContentFlagsKHR::DESKTOP.0, "DESKTOP"),
(VideoEncodeContentFlagsKHR::RENDERED.0, "RENDERED"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeFeedbackFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeFeedbackFlagsKHR::BITSTREAM_BUFFER_OFFSET.0,
"BITSTREAM_BUFFER_OFFSET",
),
(
VideoEncodeFeedbackFlagsKHR::BITSTREAM_BYTES_WRITTEN.0,
"BITSTREAM_BYTES_WRITTEN",
),
(
VideoEncodeFeedbackFlagsKHR::BITSTREAM_HAS_OVERRIDES.0,
"BITSTREAM_HAS_OVERRIDES",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH264CapabilityFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH264CapabilityFlagsKHR::HRD_COMPLIANCE.0,
"HRD_COMPLIANCE",
),
(
VideoEncodeH264CapabilityFlagsKHR::PREDICTION_WEIGHT_TABLE_GENERATED.0,
"PREDICTION_WEIGHT_TABLE_GENERATED",
),
(
VideoEncodeH264CapabilityFlagsKHR::ROW_UNALIGNED_SLICE.0,
"ROW_UNALIGNED_SLICE",
),
(
VideoEncodeH264CapabilityFlagsKHR::DIFFERENT_SLICE_TYPE.0,
"DIFFERENT_SLICE_TYPE",
),
(
VideoEncodeH264CapabilityFlagsKHR::B_FRAME_IN_L0_LIST.0,
"B_FRAME_IN_L0_LIST",
),
(
VideoEncodeH264CapabilityFlagsKHR::B_FRAME_IN_L1_LIST.0,
"B_FRAME_IN_L1_LIST",
),
(
VideoEncodeH264CapabilityFlagsKHR::PER_PICTURE_TYPE_MIN_MAX_QP.0,
"PER_PICTURE_TYPE_MIN_MAX_QP",
),
(
VideoEncodeH264CapabilityFlagsKHR::PER_SLICE_CONSTANT_QP.0,
"PER_SLICE_CONSTANT_QP",
),
(
VideoEncodeH264CapabilityFlagsKHR::GENERATE_PREFIX_NALU.0,
"GENERATE_PREFIX_NALU",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH264RateControlFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH264RateControlFlagsKHR::ATTEMPT_HRD_COMPLIANCE.0,
"ATTEMPT_HRD_COMPLIANCE",
),
(
VideoEncodeH264RateControlFlagsKHR::REGULAR_GOP.0,
"REGULAR_GOP",
),
(
VideoEncodeH264RateControlFlagsKHR::REFERENCE_PATTERN_FLAT.0,
"REFERENCE_PATTERN_FLAT",
),
(
VideoEncodeH264RateControlFlagsKHR::REFERENCE_PATTERN_DYADIC.0,
"REFERENCE_PATTERN_DYADIC",
),
(
VideoEncodeH264RateControlFlagsKHR::TEMPORAL_LAYER_PATTERN_DYADIC.0,
"TEMPORAL_LAYER_PATTERN_DYADIC",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH264StdFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH264StdFlagsKHR::SEPARATE_COLOR_PLANE_FLAG_SET.0,
"SEPARATE_COLOR_PLANE_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::QPPRIME_Y_ZERO_TRANSFORM_BYPASS_FLAG_SET.0,
"QPPRIME_Y_ZERO_TRANSFORM_BYPASS_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::SCALING_MATRIX_PRESENT_FLAG_SET.0,
"SCALING_MATRIX_PRESENT_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::CHROMA_QP_INDEX_OFFSET.0,
"CHROMA_QP_INDEX_OFFSET",
),
(
VideoEncodeH264StdFlagsKHR::SECOND_CHROMA_QP_INDEX_OFFSET.0,
"SECOND_CHROMA_QP_INDEX_OFFSET",
),
(
VideoEncodeH264StdFlagsKHR::PIC_INIT_QP_MINUS26.0,
"PIC_INIT_QP_MINUS26",
),
(
VideoEncodeH264StdFlagsKHR::WEIGHTED_PRED_FLAG_SET.0,
"WEIGHTED_PRED_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::WEIGHTED_BIPRED_IDC_EXPLICIT.0,
"WEIGHTED_BIPRED_IDC_EXPLICIT",
),
(
VideoEncodeH264StdFlagsKHR::WEIGHTED_BIPRED_IDC_IMPLICIT.0,
"WEIGHTED_BIPRED_IDC_IMPLICIT",
),
(
VideoEncodeH264StdFlagsKHR::TRANSFORM_8X8_MODE_FLAG_SET.0,
"TRANSFORM_8X8_MODE_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::DIRECT_SPATIAL_MV_PRED_FLAG_UNSET.0,
"DIRECT_SPATIAL_MV_PRED_FLAG_UNSET",
),
(
VideoEncodeH264StdFlagsKHR::ENTROPY_CODING_MODE_FLAG_UNSET.0,
"ENTROPY_CODING_MODE_FLAG_UNSET",
),
(
VideoEncodeH264StdFlagsKHR::ENTROPY_CODING_MODE_FLAG_SET.0,
"ENTROPY_CODING_MODE_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::DIRECT_8X8_INFERENCE_FLAG_UNSET.0,
"DIRECT_8X8_INFERENCE_FLAG_UNSET",
),
(
VideoEncodeH264StdFlagsKHR::CONSTRAINED_INTRA_PRED_FLAG_SET.0,
"CONSTRAINED_INTRA_PRED_FLAG_SET",
),
(
VideoEncodeH264StdFlagsKHR::DEBLOCKING_FILTER_DISABLED.0,
"DEBLOCKING_FILTER_DISABLED",
),
(
VideoEncodeH264StdFlagsKHR::DEBLOCKING_FILTER_ENABLED.0,
"DEBLOCKING_FILTER_ENABLED",
),
(
VideoEncodeH264StdFlagsKHR::DEBLOCKING_FILTER_PARTIAL.0,
"DEBLOCKING_FILTER_PARTIAL",
),
(
VideoEncodeH264StdFlagsKHR::SLICE_QP_DELTA.0,
"SLICE_QP_DELTA",
),
(
VideoEncodeH264StdFlagsKHR::DIFFERENT_SLICE_QP_DELTA.0,
"DIFFERENT_SLICE_QP_DELTA",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH265CapabilityFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH265CapabilityFlagsKHR::HRD_COMPLIANCE.0,
"HRD_COMPLIANCE",
),
(
VideoEncodeH265CapabilityFlagsKHR::PREDICTION_WEIGHT_TABLE_GENERATED.0,
"PREDICTION_WEIGHT_TABLE_GENERATED",
),
(
VideoEncodeH265CapabilityFlagsKHR::ROW_UNALIGNED_SLICE_SEGMENT.0,
"ROW_UNALIGNED_SLICE_SEGMENT",
),
(
VideoEncodeH265CapabilityFlagsKHR::DIFFERENT_SLICE_SEGMENT_TYPE.0,
"DIFFERENT_SLICE_SEGMENT_TYPE",
),
(
VideoEncodeH265CapabilityFlagsKHR::B_FRAME_IN_L0_LIST.0,
"B_FRAME_IN_L0_LIST",
),
(
VideoEncodeH265CapabilityFlagsKHR::B_FRAME_IN_L1_LIST.0,
"B_FRAME_IN_L1_LIST",
),
(
VideoEncodeH265CapabilityFlagsKHR::PER_PICTURE_TYPE_MIN_MAX_QP.0,
"PER_PICTURE_TYPE_MIN_MAX_QP",
),
(
VideoEncodeH265CapabilityFlagsKHR::PER_SLICE_SEGMENT_CONSTANT_QP.0,
"PER_SLICE_SEGMENT_CONSTANT_QP",
),
(
VideoEncodeH265CapabilityFlagsKHR::MULTIPLE_TILES_PER_SLICE_SEGMENT.0,
"MULTIPLE_TILES_PER_SLICE_SEGMENT",
),
(
VideoEncodeH265CapabilityFlagsKHR::MULTIPLE_SLICE_SEGMENTS_PER_TILE.0,
"MULTIPLE_SLICE_SEGMENTS_PER_TILE",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH265CtbSizeFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoEncodeH265CtbSizeFlagsKHR::TYPE_16.0, "TYPE_16"),
(VideoEncodeH265CtbSizeFlagsKHR::TYPE_32.0, "TYPE_32"),
(VideoEncodeH265CtbSizeFlagsKHR::TYPE_64.0, "TYPE_64"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH265RateControlFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH265RateControlFlagsKHR::ATTEMPT_HRD_COMPLIANCE.0,
"ATTEMPT_HRD_COMPLIANCE",
),
(
VideoEncodeH265RateControlFlagsKHR::REGULAR_GOP.0,
"REGULAR_GOP",
),
(
VideoEncodeH265RateControlFlagsKHR::REFERENCE_PATTERN_FLAT.0,
"REFERENCE_PATTERN_FLAT",
),
(
VideoEncodeH265RateControlFlagsKHR::REFERENCE_PATTERN_DYADIC.0,
"REFERENCE_PATTERN_DYADIC",
),
(
VideoEncodeH265RateControlFlagsKHR::TEMPORAL_SUB_LAYER_PATTERN_DYADIC.0,
"TEMPORAL_SUB_LAYER_PATTERN_DYADIC",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH265StdFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH265StdFlagsKHR::SEPARATE_COLOR_PLANE_FLAG_SET.0,
"SEPARATE_COLOR_PLANE_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::SAMPLE_ADAPTIVE_OFFSET_ENABLED_FLAG_SET.0,
"SAMPLE_ADAPTIVE_OFFSET_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::SCALING_LIST_DATA_PRESENT_FLAG_SET.0,
"SCALING_LIST_DATA_PRESENT_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::PCM_ENABLED_FLAG_SET.0,
"PCM_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::SPS_TEMPORAL_MVP_ENABLED_FLAG_SET.0,
"SPS_TEMPORAL_MVP_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::INIT_QP_MINUS26.0,
"INIT_QP_MINUS26",
),
(
VideoEncodeH265StdFlagsKHR::WEIGHTED_PRED_FLAG_SET.0,
"WEIGHTED_PRED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::WEIGHTED_BIPRED_FLAG_SET.0,
"WEIGHTED_BIPRED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::LOG2_PARALLEL_MERGE_LEVEL_MINUS2.0,
"LOG2_PARALLEL_MERGE_LEVEL_MINUS2",
),
(
VideoEncodeH265StdFlagsKHR::SIGN_DATA_HIDING_ENABLED_FLAG_SET.0,
"SIGN_DATA_HIDING_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::TRANSFORM_SKIP_ENABLED_FLAG_SET.0,
"TRANSFORM_SKIP_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::TRANSFORM_SKIP_ENABLED_FLAG_UNSET.0,
"TRANSFORM_SKIP_ENABLED_FLAG_UNSET",
),
(
VideoEncodeH265StdFlagsKHR::PPS_SLICE_CHROMA_QP_OFFSETS_PRESENT_FLAG_SET.0,
"PPS_SLICE_CHROMA_QP_OFFSETS_PRESENT_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::TRANSQUANT_BYPASS_ENABLED_FLAG_SET.0,
"TRANSQUANT_BYPASS_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::CONSTRAINED_INTRA_PRED_FLAG_SET.0,
"CONSTRAINED_INTRA_PRED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::ENTROPY_CODING_SYNC_ENABLED_FLAG_SET.0,
"ENTROPY_CODING_SYNC_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::DEBLOCKING_FILTER_OVERRIDE_ENABLED_FLAG_SET.0,
"DEBLOCKING_FILTER_OVERRIDE_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::DEPENDENT_SLICE_SEGMENTS_ENABLED_FLAG_SET.0,
"DEPENDENT_SLICE_SEGMENTS_ENABLED_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::DEPENDENT_SLICE_SEGMENT_FLAG_SET.0,
"DEPENDENT_SLICE_SEGMENT_FLAG_SET",
),
(
VideoEncodeH265StdFlagsKHR::SLICE_QP_DELTA.0,
"SLICE_QP_DELTA",
),
(
VideoEncodeH265StdFlagsKHR::DIFFERENT_SLICE_QP_DELTA.0,
"DIFFERENT_SLICE_QP_DELTA",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeH265TransformBlockSizeFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoEncodeH265TransformBlockSizeFlagsKHR::TYPE_4.0,
"TYPE_4",
),
(
VideoEncodeH265TransformBlockSizeFlagsKHR::TYPE_8.0,
"TYPE_8",
),
(
VideoEncodeH265TransformBlockSizeFlagsKHR::TYPE_16.0,
"TYPE_16",
),
(
VideoEncodeH265TransformBlockSizeFlagsKHR::TYPE_32.0,
"TYPE_32",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeRateControlFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeRateControlModeFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoEncodeRateControlModeFlagsKHR::DEFAULT.0, "DEFAULT"),
(VideoEncodeRateControlModeFlagsKHR::DISABLED.0, "DISABLED"),
(VideoEncodeRateControlModeFlagsKHR::CBR.0, "CBR"),
(VideoEncodeRateControlModeFlagsKHR::VBR.0, "VBR"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEncodeTuningModeKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::DEFAULT => Some("DEFAULT"),
Self::HIGH_QUALITY => Some("HIGH_QUALITY"),
Self::LOW_LATENCY => Some("LOW_LATENCY"),
Self::ULTRA_LOW_LATENCY => Some("ULTRA_LOW_LATENCY"),
Self::LOSSLESS => Some("LOSSLESS"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for VideoEncodeUsageFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(VideoEncodeUsageFlagsKHR::DEFAULT.0, "DEFAULT"),
(VideoEncodeUsageFlagsKHR::TRANSCODING.0, "TRANSCODING"),
(VideoEncodeUsageFlagsKHR::STREAMING.0, "STREAMING"),
(VideoEncodeUsageFlagsKHR::RECORDING.0, "RECORDING"),
(VideoEncodeUsageFlagsKHR::CONFERENCING.0, "CONFERENCING"),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoEndCodingFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoSessionCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[
(
VideoSessionCreateFlagsKHR::PROTECTED_CONTENT.0,
"PROTECTED_CONTENT",
),
(
VideoSessionCreateFlagsKHR::ALLOW_ENCODE_PARAMETER_OPTIMIZATIONS.0,
"ALLOW_ENCODE_PARAMETER_OPTIMIZATIONS",
),
(
VideoSessionCreateFlagsKHR::INLINE_QUERIES.0,
"INLINE_QUERIES",
),
];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for VideoSessionParametersCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for ViewportCoordinateSwizzleNV {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let name = match *self {
Self::POSITIVE_X => Some("POSITIVE_X"),
Self::NEGATIVE_X => Some("NEGATIVE_X"),
Self::POSITIVE_Y => Some("POSITIVE_Y"),
Self::NEGATIVE_Y => Some("NEGATIVE_Y"),
Self::POSITIVE_Z => Some("POSITIVE_Z"),
Self::NEGATIVE_Z => Some("NEGATIVE_Z"),
Self::POSITIVE_W => Some("POSITIVE_W"),
Self::NEGATIVE_W => Some("NEGATIVE_W"),
_ => None,
};
if let Some(x) = name {
f.write_str(x)
} else {
self.0.fmt(f)
}
}
}
impl fmt::Debug for WaylandSurfaceCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for Win32SurfaceCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for XcbSurfaceCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
impl fmt::Debug for XlibSurfaceCreateFlagsKHR {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
const KNOWN: &[(Flags, &str)] = &[];
debug_flags(f, KNOWN, self.0)
}
}
```
|
```javascript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.pullQueryBuilderFromRxSchema = pullQueryBuilderFromRxSchema;
exports.pullStreamBuilderFromRxSchema = pullStreamBuilderFromRxSchema;
exports.pushQueryBuilderFromRxSchema = pushQueryBuilderFromRxSchema;
var _graphqlSchemaFromRxSchema = require("./graphql-schema-from-rx-schema.js");
var _index = require("../../plugins/utils/index.js");
function pullQueryBuilderFromRxSchema(collectionName, input) {
input = (0, _graphqlSchemaFromRxSchema.fillUpOptionals)(input);
var schema = input.schema;
var prefixes = input.prefixes;
var ucCollectionName = (0, _index.ucfirst)(collectionName);
var queryName = prefixes.pull + ucCollectionName;
var operationName = (0, _index.ucfirst)(queryName);
var outputFields = generateGQLOutputFields({
schema,
ignoreOutputKeys: input.ignoreOutputKeys
});
// outputFields.push(input.deletedField);
var checkpointInputName = ucCollectionName + 'Input' + prefixes.checkpoint;
var builder = (checkpoint, limit) => {
var query = 'query ' + operationName + '($checkpoint: ' + checkpointInputName + ', $limit: Int!) {\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + queryName + '(checkpoint: $checkpoint, limit: $limit) {\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + 'documents {\n' + outputFields + '\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + '}\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + 'checkpoint {\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + input.checkpointFields.join('\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING) + '\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + '}\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + '}\n' + '}';
return {
query,
operationName,
variables: {
checkpoint,
limit
}
};
};
return builder;
}
function pullStreamBuilderFromRxSchema(collectionName, input) {
input = (0, _graphqlSchemaFromRxSchema.fillUpOptionals)(input);
var schema = input.schema;
var prefixes = input.prefixes;
var ucCollectionName = (0, _index.ucfirst)(collectionName);
var queryName = prefixes.stream + ucCollectionName;
var outputFields = generateGQLOutputFields({
schema,
ignoreOutputKeys: input.ignoreOutputKeys
});
var headersName = ucCollectionName + 'Input' + prefixes.headers;
var query = 'subscription on' + (0, _index.ucfirst)((0, _index.ensureNotFalsy)(prefixes.stream)) + '($headers: ' + headersName + ') {\n' + _graphqlSchemaFromRxSchema.SPACING + queryName + '(headers: $headers) {\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + 'documents {\n' + outputFields + '\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + '}\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + 'checkpoint {\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + input.checkpointFields.join('\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING) + '\n' + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + _graphqlSchemaFromRxSchema.SPACING + '}\n' + _graphqlSchemaFromRxSchema.SPACING + '}' + '}';
var builder = headers => {
return {
query,
variables: {
headers
}
};
};
return builder;
}
function pushQueryBuilderFromRxSchema(collectionName, input) {
input = (0, _graphqlSchemaFromRxSchema.fillUpOptionals)(input);
var prefixes = input.prefixes;
var ucCollectionName = (0, _index.ucfirst)(collectionName);
var queryName = prefixes.push + ucCollectionName;
var operationName = (0, _index.ucfirst)(queryName);
var variableName = collectionName + prefixes.pushRow;
var returnFields = generateGQLOutputFields({
schema: input.schema,
spaceCount: 2
});
var builder = pushRows => {
var query = '' + 'mutation ' + operationName + '($' + variableName + ': [' + ucCollectionName + 'Input' + prefixes.pushRow + '!]) {\n' + _graphqlSchemaFromRxSchema.SPACING + queryName + '(' + variableName + ': $' + variableName + ') {\n' + returnFields + '\n' + _graphqlSchemaFromRxSchema.SPACING + '}\n' + '}';
var sendRows = [];
function transformPushDoc(doc) {
var sendDoc = {};
Object.entries(doc).forEach(([k, v]) => {
if (
// skip if in ignoreInputKeys list
!input.ignoreInputKeys.includes(k) &&
// only use properties that are in the schema
input.schema.properties[k]) {
sendDoc[k] = v;
}
});
return sendDoc;
}
pushRows.forEach(pushRow => {
var newRow = {
newDocumentState: transformPushDoc(pushRow.newDocumentState),
assumedMasterState: pushRow.assumedMasterState ? transformPushDoc(pushRow.assumedMasterState) : undefined
};
sendRows.push(newRow);
});
var variables = {
[variableName]: sendRows
};
return {
query,
operationName,
variables
};
};
return builder;
}
function generateGQLOutputFields(options) {
var {
schema,
spaceCount = 4,
depth = 0,
ignoreOutputKeys = []
} = options;
var outputFields = [];
var properties = schema.properties;
var NESTED_SPACING = _graphqlSchemaFromRxSchema.SPACING.repeat(depth);
var LINE_SPACING = _graphqlSchemaFromRxSchema.SPACING.repeat(spaceCount);
for (var key in properties) {
//only skipping top level keys that are in ignoreOutputKeys list
if (ignoreOutputKeys.includes(key)) {
continue;
}
var value = properties[key];
if (value.type === "object") {
outputFields.push(LINE_SPACING + NESTED_SPACING + key + " {", generateGQLOutputFields({
schema: value,
spaceCount,
depth: depth + 1
}), LINE_SPACING + NESTED_SPACING + "}");
} else {
outputFields.push(LINE_SPACING + NESTED_SPACING + key);
}
}
return outputFields.join('\n');
}
//# sourceMappingURL=query-builder-from-rx-schema.js.map
```
|
```java
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package jdk.graal.compiler.lir.amd64;
import jdk.graal.compiler.lir.gen.ArithmeticLIRGeneratorTool;
import jdk.vm.ci.amd64.AMD64Kind;
import jdk.vm.ci.meta.AllocatableValue;
import jdk.vm.ci.meta.Value;
/**
* This interface can be used to generate AMD64 LIR for arithmetic operations.
*/
public interface AMD64ArithmeticLIRGeneratorTool extends ArithmeticLIRGeneratorTool {
Value emitLogicalAndNot(Value value1, Value value2);
Value emitLowestSetIsolatedBit(Value value);
Value emitGetMaskUpToLowestSetBit(Value value);
Value emitResetLowestSetBit(Value value);
void emitCompareOp(AMD64Kind cmpKind, AllocatableValue left, Value right);
}
```
|
Popovitsa is a village in Setomaa Parish, Võru County in southeastern Estonia.
References
Villages in Võru County
|
```c++
//
// immer: immutable data structures for C++
//
// See accompanying file LICENSE or copy at path_to_url
//
#include "fuzzer_input.hpp"
#include <immer/box.hpp>
#include <immer/map.hpp>
#include <immer/algorithm.hpp>
#include <array>
using st_memory = immer::memory_policy<immer::heap_policy<immer::cpp_heap>,
immer::unsafe_refcount_policy,
immer::no_lock_policy,
immer::no_transience_policy,
false>;
struct colliding_hash_t
{
std::size_t operator()(const std::string& x) const
{
return std::hash<std::string>{}(x) & ~((std::size_t{1} << 48) - 1);
}
};
extern "C" int LLVMFuzzerTestOneInput(const std::uint8_t* data,
std::size_t size)
{
constexpr auto var_count = 4;
using map_t = immer::map<std::string,
immer::box<std::string>,
colliding_hash_t,
std::equal_to<>,
st_memory,
3>;
auto vars = std::array<map_t, var_count>{};
auto is_valid_var = [&](auto idx) { return idx >= 0 && idx < var_count; };
return fuzzer_input{data, size}.run([&](auto& in) {
enum ops
{
op_set,
op_erase,
op_set_move,
op_erase_move,
op_iterate,
op_find,
op_update,
op_update_move,
op_diff
};
auto src = read<char>(in, is_valid_var);
auto dst = read<char>(in, is_valid_var);
assert(vars[src].impl().check_champ());
switch (read<char>(in)) {
case op_set: {
auto value = std::to_string(read<size_t>(in));
vars[dst] = vars[src].set(value, "foo");
break;
}
case op_erase: {
auto value = std::to_string(read<size_t>(in));
vars[dst] = vars[src].erase(value);
break;
}
case op_set_move: {
auto value = std::to_string(read<size_t>(in));
vars[dst] = std::move(vars[src]).set(value, "foo");
break;
}
case op_erase_move: {
auto value = std::to_string(read<size_t>(in));
vars[dst] = std::move(vars[src]).erase(value);
break;
}
case op_iterate: {
auto srcv = vars[src];
for (const auto& v : srcv) {
vars[dst] = vars[dst].set(v.first, v.second);
}
break;
}
case op_find: {
auto value = std::to_string(read<size_t>(in));
auto res = vars[src].find(value);
if (res != nullptr) {
vars[dst] = vars[dst].set(*res, "foo");
}
break;
}
case op_update: {
auto key = std::to_string(read<size_t>(in));
vars[dst] = vars[src].update(
key, [](std::string x) { return std::move(x) + "bar"; });
break;
}
case op_update_move: {
auto key = std::to_string(read<size_t>(in));
vars[dst] = std::move(vars[src]).update(
key, [](std::string x) { return std::move(x) + "baz"; });
break;
}
case op_diff: {
auto&& a = vars[src];
auto&& b = vars[dst];
diff(
a,
b,
[&](auto&& x) {
assert(!a.count(x.first));
assert(b.count(x.first));
},
[&](auto&& x) {
assert(a.count(x.first));
assert(!b.count(x.first));
},
[&](auto&& x, auto&& y) {
assert(x.first == y.first);
assert(x.second != y.second);
});
}
default:
break;
};
return true;
});
}
```
|
The Kantonsschule Solothurn is a gymnasium in the municipality of Solothurn, Switzerland. With approximately 1,800 students (stand: 2007) it is among the biggest schools in Switzerland. The current principal is Stefan Zumbrunn-Würsch.
Structure
The Kantonsschule of Solothurn is divided into
the Maturitätsschule, which offers a Scientific Profile, a Physical Education Profile, an Economic & Law Profile, an Art Profile and a Linguistic Profile. It is a four year school and students normally start at the age of 15.
the Fachmittelschule (social, education and health), which takes three years to graduate. Normally, students start at the age of 16.
the Sek P also called Untergymnasium (preparation for the Maturitätsschule), which is currently three years long and will drop to two years starting next school year 2011/12. Students start at the age of 11 or 12.
Other
Media library with 30,000 books, encyclopaedias, dictionaries, videos, DVDs, CDs, magazines, cassettes, paperbacks and novels
Cafeteria, which is operated by the "nonprofit women's organization" on behalf of the Canton
60 free courses (very high amount for a Kantonsschule)
Notable Professors
Hermann Breitenbach
Hans Rudolf Breitenbach
Urs Joseph Flury
Franz Joseph Hugi
Franz Misteli
Gaudenz Taverna
Notable alumni
Karl Arnold-Obrist (1796–1862), Roman Catholic Bishop in Diocese of Basel.
Friedrich Fiala (1817–1888), historian and Roman Catholic bishop in the diocese of Basel
Robert Glutz von Blotzheim (1786–1818), writer and journalist
Urs Glutz von Blotzheim (1751–1816), officer and politician
Werner Ingold (1919-1995), pioneer in the field of chemical microanalysis and entrepreneur in the commercialization of pH electrodes
Benedikt Weibel (born 1946), former CEO of the Swiss Federal Railways
Samuel Schmid (born 1947), former member of the Swiss Federal Council (2001–2008) and former President of the Swiss Confederation (2005)
Carla Stampfli (born 1984), professional swimmer with several Swiss records and participation in the Olympic Games in Athens 2004
References
External links
Official School Page
Buildings and structures in the canton of Solothurn
Gymnasiums in Switzerland
|
```java
package com.ctrip.xpipe.redis.checker.alert.decorator;
import com.ctrip.xpipe.redis.checker.alert.AlertEntity;
import org.springframework.stereotype.Component;
/**
* @author chen.zhu
* <p>
* Oct 19, 2017
*/
@Component(RecoverMessageDecorator.ID)
public class RecoverMessageDecorator extends GroupedAlertMessageDecorator {
public static final String ID = "recover.message.email.decorator";
private static final String TEMPLATE_NAME = "templates/RecoverTemplate.vm";
@Override
protected String getTemplateName() {
return TEMPLATE_NAME;
}
@Override
public String doGenerateTitle(AlertEntity alert) {
return String.format("[%s][XPipe ]%s",
alertConfig.getXpipeRuntimeEnvironment(),
alert.getKey());
}
@Override
public String generateTitle() {
return String.format("[%s][XPipe ]",
alertConfig.getXpipeRuntimeEnvironment());
}
}
```
|
```c
//
//
/***
*memmove_s.c - contains memmove_s routine
*
*
*Purpose:
* memmove_s() copies a source memory buffer to a destination buffer.
* Overlapping buffers are treated specially, to avoid propagation.
*
*Revision History:
* 10-07-03 AC Module created.
* 03-10-04 AC Return ERANGE when buffer is too small
* 17-08-16 OB Add additional buffer (unix) for overlapping src / dst
* Return ENOMEM when there is no memory for buffer
*******************************************************************************/
// use stdlib instead of PAL defined malloc to avoid forced Wint-to-pointer warning
#include <stdlib.h>
#include <string.h>
#ifdef _LIBSAFECRT_SGX_CONFIG
#include "pal_mstypes.h"
#endif
#ifndef _VALIDATE_RETURN_ERRCODE
#define _VALIDATE_RETURN_ERRCODE(c, e) \
if (!(c)) return e
#endif
#ifndef ENOMEM
#define ENOMEM 12
#endif
#ifndef EINVAL
#define EINVAL 22
#endif
#ifndef ERANGE
#define ERANGE 34
#endif
/*
usage: see path_to_url
notes: uses extra buffer in case the src/dst overlaps (osx/bsd)
dest
Destination object.
src
Source object.
count
Number of bytes (memmove) to copy.
*/
void* __cdecl memmove_xplat(
void * dst,
const void * src,
size_t count
)
{
#if defined(__APPLE__) || defined(__FreeBSD__)
if (src <= dst && src + count > dst)
{
char *temp = (char*) malloc(count);
_VALIDATE_RETURN_ERRCODE(temp != NULL, NULL);
memcpy(temp, src, count);
memcpy(dst, temp, count);
free(temp);
return dst;
}
#endif
return memmove(dst, src, count);
}
/*
usage: see path_to_url
dest
Destination object.
sizeInBytes
Size of the destination buffer.
src
Source object.
count
Number of bytes (memmove_s) or characters (wmemmove_s) to copy.
*/
int __cdecl memmove_s(
void * dst,
size_t sizeInBytes,
const void * src,
size_t count
)
{
if (count == 0)
{
/* nothing to do */
return 0;
}
/* validation section */
_VALIDATE_RETURN_ERRCODE(dst != NULL, EINVAL);
_VALIDATE_RETURN_ERRCODE(src != NULL, EINVAL);
_VALIDATE_RETURN_ERRCODE(sizeInBytes >= count, ERANGE);
void *ret_val = memmove_xplat(dst, src, count);
return ret_val != NULL ? 0 : ENOMEM; // memmove_xplat returns `NULL` only if ENOMEM
}
/*
dest
Destination object.
sizeInBytes
Size of the destination buffer.
src
Source object.
count
Number of bytes (memmove_s) or characters (wmemmove_s) to copy.
*/
int __cdecl memmove_verw_s(
void * dst,
size_t sizeInBytes,
const void * src,
size_t count
)
{
if (count == 0)
{
/* nothing to do */
return 0;
}
/* validation section */
_VALIDATE_RETURN_ERRCODE(dst != NULL, EINVAL);
_VALIDATE_RETURN_ERRCODE(src != NULL, EINVAL);
_VALIDATE_RETURN_ERRCODE(sizeInBytes >= count, ERANGE);
void *ret_val = memmove_verw(dst, src, count);
return ret_val != NULL ? 0 : ENOMEM; // memmove_verw returns `NULL` only if ENOMEM
}
```
|
```smalltalk
using System.Collections.Concurrent;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Bmp;
using SixLabors.ImageSharp.Formats.Cur;
using SixLabors.ImageSharp.Formats.Gif;
using SixLabors.ImageSharp.Formats.Ico;
using SixLabors.ImageSharp.Formats.Jpeg;
using SixLabors.ImageSharp.Formats.Pbm;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.Formats.Qoi;
using SixLabors.ImageSharp.Formats.Tga;
using SixLabors.ImageSharp.Formats.Tiff;
using SixLabors.ImageSharp.Formats.Webp;
using SixLabors.ImageSharp.IO;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.Processing;
namespace SixLabors.ImageSharp;
/// <summary>
/// Provides configuration which allows altering default behaviour or extending the library.
/// </summary>
public sealed class Configuration
{
/// <summary>
/// A lazily initialized configuration default instance.
/// </summary>
private static readonly Lazy<Configuration> Lazy = new(CreateDefaultInstance);
private const int DefaultStreamProcessingBufferSize = 8096;
private int streamProcessingBufferSize = DefaultStreamProcessingBufferSize;
private int maxDegreeOfParallelism = Environment.ProcessorCount;
private MemoryAllocator memoryAllocator = MemoryAllocator.Default;
/// <summary>
/// Initializes a new instance of the <see cref="Configuration" /> class.
/// </summary>
public Configuration()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Configuration" /> class.
/// </summary>
/// <param name="configurationModules">A collection of configuration modules to register.</param>
public Configuration(params IImageFormatConfigurationModule[] configurationModules)
{
if (configurationModules != null)
{
foreach (IImageFormatConfigurationModule p in configurationModules)
{
p.Configure(this);
}
}
}
/// <summary>
/// Gets the default <see cref="Configuration"/> instance.
/// </summary>
public static Configuration Default { get; } = Lazy.Value;
/// <summary>
/// Gets or sets the maximum number of concurrent tasks enabled in ImageSharp algorithms
/// configured with this <see cref="Configuration"/> instance.
/// Initialized with <see cref="Environment.ProcessorCount"/> by default.
/// </summary>
public int MaxDegreeOfParallelism
{
get => this.maxDegreeOfParallelism;
set
{
if (value is 0 or < -1)
{
throw new ArgumentOutOfRangeException(nameof(this.MaxDegreeOfParallelism));
}
this.maxDegreeOfParallelism = value;
}
}
/// <summary>
/// Gets or sets the size of the buffer to use when working with streams.
/// Initialized with <see cref="DefaultStreamProcessingBufferSize"/> by default.
/// </summary>
public int StreamProcessingBufferSize
{
get => this.streamProcessingBufferSize;
set
{
ArgumentOutOfRangeException.ThrowIfNegativeOrZero(value);
this.streamProcessingBufferSize = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether to force image buffers to be contiguous whenever possible.
/// </summary>
/// <remarks>
/// Contiguous allocations are not possible, if the image needs a buffer larger than <see cref="int.MaxValue"/>.
/// </remarks>
public bool PreferContiguousImageBuffers { get; set; }
/// <summary>
/// Gets a set of properties for the Configuration.
/// </summary>
/// <remarks>This can be used for storing global settings and defaults to be accessible to processors.</remarks>
public IDictionary<object, object> Properties { get; } = new ConcurrentDictionary<object, object>();
/// <summary>
/// Gets the currently registered <see cref="IImageFormat"/>s.
/// </summary>
public IEnumerable<IImageFormat> ImageFormats => this.ImageFormatsManager.ImageFormats;
/// <summary>
/// Gets or sets the position in a stream to use for reading when using a seekable stream as an image data source.
/// </summary>
public ReadOrigin ReadOrigin { get; set; } = ReadOrigin.Current;
/// <summary>
/// Gets or the <see cref="ImageFormatManager"/> that is currently in use.
/// </summary>
public ImageFormatManager ImageFormatsManager { get; private set; } = new ImageFormatManager();
/// <summary>
/// Gets or sets the <see cref="Memory.MemoryAllocator"/> that is currently in use.
/// Defaults to <see cref="MemoryAllocator.Default"/>.
/// <para />
/// Allocators are expensive, so it is strongly recommended to use only one busy instance per process.
/// In case you need to customize it, you can ensure this by changing
/// </summary>
/// <remarks>
/// It's possible to reduce allocator footprint by assigning a custom instance created with
/// <see cref="MemoryAllocator.Create(MemoryAllocatorOptions)"/>, but note that since the default pooling
/// allocators are expensive, it is strictly recommended to use a single process-wide allocator.
/// You can ensure this by altering the allocator of <see cref="Default"/>, or by implementing custom application logic that
/// manages allocator lifetime.
/// <para />
/// If an allocator has to be dropped for some reason, <see cref="MemoryAllocator.ReleaseRetainedResources"/>
/// shall be invoked after disposing all associated <see cref="Image"/> instances.
/// </remarks>
public MemoryAllocator MemoryAllocator
{
get => this.memoryAllocator;
set
{
Guard.NotNull(value, nameof(this.MemoryAllocator));
this.memoryAllocator = value;
}
}
/// <summary>
/// Gets the maximum header size of all the formats.
/// </summary>
internal int MaxHeaderSize => this.ImageFormatsManager.MaxHeaderSize;
/// <summary>
/// Gets or sets the filesystem helper for accessing the local file system.
/// </summary>
internal IFileSystem FileSystem { get; set; } = new LocalFileSystem();
/// <summary>
/// Gets or sets the working buffer size hint for image processors.
/// The default value is 1MB.
/// </summary>
/// <remarks>
/// Currently only used by Resize. If the working buffer is expected to be discontiguous,
/// min(WorkingBufferSizeHintInBytes, BufferCapacityInBytes) should be used.
/// </remarks>
internal int WorkingBufferSizeHintInBytes { get; set; } = 1 * 1024 * 1024;
/// <summary>
/// Gets or sets the image operations provider factory.
/// </summary>
internal IImageProcessingContextFactory ImageOperationsProvider { get; set; } = new DefaultImageOperationsProviderFactory();
/// <summary>
/// Registers a new format provider.
/// </summary>
/// <param name="configuration">The configuration provider to call configure on.</param>
public void Configure(IImageFormatConfigurationModule configuration)
{
Guard.NotNull(configuration, nameof(configuration));
configuration.Configure(this);
}
/// <summary>
/// Creates a shallow copy of the <see cref="Configuration"/>.
/// </summary>
/// <returns>A new configuration instance.</returns>
public Configuration Clone() => new()
{
MaxDegreeOfParallelism = this.MaxDegreeOfParallelism,
StreamProcessingBufferSize = this.StreamProcessingBufferSize,
ImageFormatsManager = this.ImageFormatsManager,
memoryAllocator = this.memoryAllocator,
ImageOperationsProvider = this.ImageOperationsProvider,
ReadOrigin = this.ReadOrigin,
FileSystem = this.FileSystem,
WorkingBufferSizeHintInBytes = this.WorkingBufferSizeHintInBytes,
};
/// <summary>
/// Creates the default instance with the following <see cref="IImageFormatConfigurationModule"/>s preregistered:
/// <see cref="PngConfigurationModule"/>
/// <see cref="JpegConfigurationModule"/>
/// <see cref="GifConfigurationModule"/>
/// <see cref="BmpConfigurationModule"/>.
/// <see cref="PbmConfigurationModule"/>.
/// <see cref="TgaConfigurationModule"/>.
/// <see cref="TiffConfigurationModule"/>.
/// <see cref="WebpConfigurationModule"/>.
/// <see cref="QoiConfigurationModule"/>.
/// </summary>
/// <returns>The default configuration of <see cref="Configuration"/>.</returns>
internal static Configuration CreateDefaultInstance() => new(
new PngConfigurationModule(),
new JpegConfigurationModule(),
new GifConfigurationModule(),
new BmpConfigurationModule(),
new PbmConfigurationModule(),
new TgaConfigurationModule(),
new TiffConfigurationModule(),
new WebpConfigurationModule(),
new QoiConfigurationModule(),
new IcoConfigurationModule(),
new CurConfigurationModule());
}
```
|
```c
/*
*
*/
#include <zephyr/kernel.h>
#include <zephyr/drivers/sdhc.h>
#include <zephyr/sd/sd.h>
#include <zephyr/sd/sdmmc.h>
#include <zephyr/sd/sd_spec.h>
#include <zephyr/logging/log.h>
#include <zephyr/sys/__assert.h>
#include "sd_utils.h"
#include "sd_init.h"
LOG_MODULE_REGISTER(sd, CONFIG_SD_LOG_LEVEL);
/* Idle all cards on bus. Can be used to clear errors on cards */
static inline int sd_idle(struct sd_card *card)
{
struct sdhc_command cmd;
/* Reset card with CMD0 */
cmd.opcode = SD_GO_IDLE_STATE;
cmd.arg = 0x0;
cmd.response_type = (SD_RSP_TYPE_NONE | SD_SPI_RSP_TYPE_R1);
cmd.retries = CONFIG_SD_CMD_RETRIES;
cmd.timeout_ms = CONFIG_SD_CMD_TIMEOUT;
return sdhc_request(card->sdhc, &cmd, NULL);
}
/* Sends CMD8 during SD initialization */
static int sd_send_interface_condition(struct sd_card *card)
{
struct sdhc_command cmd;
int ret;
uint32_t resp;
cmd.opcode = SD_SEND_IF_COND;
cmd.arg = SD_IF_COND_VHS_3V3 | SD_IF_COND_CHECK;
cmd.response_type = (SD_RSP_TYPE_R7 | SD_SPI_RSP_TYPE_R7);
cmd.retries = CONFIG_SD_CMD_RETRIES;
cmd.timeout_ms = CONFIG_SD_CMD_TIMEOUT;
ret = sdhc_request(card->sdhc, &cmd, NULL);
if (ret) {
LOG_DBG("SD CMD8 failed with error %d", ret);
/* Retry */
return SD_RETRY;
}
if (card->host_props.is_spi) {
resp = cmd.response[1];
} else {
resp = cmd.response[0];
}
if ((resp & 0xFF) != SD_IF_COND_CHECK) {
LOG_DBG("Legacy card detected, no CMD8 support");
/* Retry probe */
return SD_RETRY;
}
if ((resp & SD_IF_COND_VHS_MASK) != SD_IF_COND_VHS_3V3) {
/* Card does not support 3.3V */
return -ENOTSUP;
}
LOG_DBG("Found SDHC with CMD8 support");
card->flags |= SD_SDHC_FLAG;
return 0;
}
/* Sends CMD59 to enable CRC checking for SD card in SPI mode */
static int sd_enable_crc(struct sd_card *card)
{
struct sdhc_command cmd;
/* CMD59 for CRC mode is only valid for SPI hosts */
__ASSERT_NO_MSG(card->host_props.is_spi);
cmd.opcode = SD_SPI_CRC_ON_OFF;
cmd.arg = 0x1; /* Enable CRC */
cmd.response_type = SD_SPI_RSP_TYPE_R1;
cmd.retries = CONFIG_SD_CMD_RETRIES;
cmd.timeout_ms = CONFIG_SD_CMD_TIMEOUT;
return sdhc_request(card->sdhc, &cmd, NULL);
}
/*
* Perform init required for both SD and SDIO cards.
* This function performs the following portions of SD initialization
* - CMD0 (SD reset)
* - CMD8 (SD voltage check)
*/
static int sd_common_init(struct sd_card *card)
{
int ret;
/* Reset card with CMD0 */
ret = sd_idle(card);
if (ret) {
LOG_ERR("Card error on CMD0");
return ret;
}
/* Perform voltage check using SD CMD8 */
ret = sd_retry(sd_send_interface_condition, card, CONFIG_SD_RETRY_COUNT);
if (ret == -ETIMEDOUT) {
LOG_INF("Card does not support CMD8, assuming legacy card");
return sd_idle(card);
} else if (ret) {
LOG_ERR("Card error on CMD 8");
return ret;
}
if (card->host_props.is_spi &&
IS_ENABLED(CONFIG_SDHC_SUPPORTS_SPI_MODE)) {
/* Enable CRC for spi commands using CMD59 */
ret = sd_enable_crc(card);
}
return ret;
}
static int sd_init_io(struct sd_card *card)
{
struct sdhc_io *bus_io = &card->bus_io;
struct sdhc_host_props *host_props = &card->host_props;
int ret, voltage;
/* SD clock should start gated */
bus_io->clock = 0;
/* SPI requires SDHC PUSH PULL, and open drain buses use more power */
bus_io->bus_mode = SDHC_BUSMODE_PUSHPULL;
bus_io->power_mode = SDHC_POWER_ON;
bus_io->bus_width = SDHC_BUS_WIDTH1BIT;
/* Cards start with legacy timing and Maximum voltage Host controller support */
bus_io->timing = SDHC_TIMING_LEGACY;
if (host_props->host_caps.vol_330_support) {
LOG_DBG("Host controller support 3.3V max");
voltage = SD_VOL_3_3_V;
} else if (host_props->host_caps.vol_300_support) {
LOG_DBG("Host controller support 3.0V max");
voltage = SD_VOL_3_0_V;
} else {
LOG_DBG("Host controller support 1.8V max");
voltage = SD_VOL_1_8_V;
}
/* Set to maximum voltage support by Host controller */
bus_io->signal_voltage = voltage;
/* Toggle power to card to reset it */
LOG_DBG("Resetting power to card");
bus_io->power_mode = SDHC_POWER_OFF;
ret = sdhc_set_io(card->sdhc, bus_io);
if (ret) {
LOG_ERR("Could not disable card power via SDHC");
return ret;
}
sd_delay(card->host_props.power_delay);
bus_io->power_mode = SDHC_POWER_ON;
ret = sdhc_set_io(card->sdhc, bus_io);
if (ret) {
LOG_ERR("Could not disable card power via SDHC");
return ret;
}
/* After reset or init, card voltage should be max HC support */
card->card_voltage = voltage;
/* Reset card flags */
card->flags = 0U;
/* Delay so card can power up */
sd_delay(card->host_props.power_delay);
/* Start bus clock */
bus_io->clock = SDMMC_CLOCK_400KHZ;
ret = sdhc_set_io(card->sdhc, bus_io);
if (ret) {
LOG_ERR("Could not start bus clock");
return ret;
}
return 0;
}
/*
* Performs init flow described in section 3.6 of SD specification.
*/
static int sd_command_init(struct sd_card *card)
{
int ret;
/*
* We must wait 74 clock cycles, per SD spec, to use card after power
* on. At 400000KHz, this is a 185us delay. Wait 1ms to be safe.
*/
sd_delay(1);
/*
* Start card initialization and identification
* flow described in section 3.6 of SD specification
* Common to SDIO and SDMMC. Some eMMC chips break the
* specification and expect something like this too.
*/
ret = sd_common_init(card);
if (ret) {
return ret;
}
#ifdef CONFIG_SDIO_STACK
/* Attempt to initialize SDIO card */
if (!sdio_card_init(card)) {
return 0;
}
#endif /* CONFIG_SDIO_STACK */
#ifdef CONFIG_SDMMC_STACK
/* Attempt to initialize SDMMC card */
if (!sdmmc_card_init(card)) {
return 0;
}
#endif /* CONFIG_SDIO_STACK */
#ifdef CONFIG_MMC_STACK
ret = sd_idle(card);
if (ret) {
LOG_ERR("Card error on CMD0");
return ret;
}
if (!mmc_card_init(card)) {
return 0;
}
#endif /* CONFIG_MMC_STACK */
/* Unknown card type */
return -ENOTSUP;
}
/* Initializes SD/SDIO card */
int sd_init(const struct device *sdhc_dev, struct sd_card *card)
{
int ret;
if (!sdhc_dev) {
return -ENODEV;
}
card->sdhc = sdhc_dev;
ret = sdhc_get_host_props(card->sdhc, &card->host_props);
if (ret) {
LOG_ERR("SD host controller returned invalid properties");
return ret;
}
/* init and lock card mutex */
ret = k_mutex_init(&card->lock);
if (ret) {
LOG_DBG("Could not init card mutex");
return ret;
}
ret = k_mutex_lock(&card->lock, K_MSEC(CONFIG_SD_INIT_TIMEOUT));
if (ret) {
LOG_ERR("Timeout while trying to acquire card mutex");
return ret;
}
/* Initialize SDHC IO with defaults */
ret = sd_init_io(card);
if (ret) {
k_mutex_unlock(&card->lock);
return ret;
}
/*
* SD protocol is stateful, so we must account for the possibility
* that the card is in a bad state. The return code SD_RESTART
* indicates that the initialization left the card in a bad state.
* In this case the subsystem takes the following steps:
* - set card status to error
* - re init host I/O (will also toggle power to the SD card)
* - retry initialization once more
* If initialization then fails, the sd_init routine will assume the
* card is inaccessible
*/
ret = sd_command_init(card);
if (ret == SD_RESTART) {
/* Reset I/O, and retry sd initialization once more */
card->status = CARD_ERROR;
/* Reset I/O to default */
ret = sd_init_io(card);
if (ret) {
LOG_ERR("Failed to reset SDHC I/O");
k_mutex_unlock(&card->lock);
return ret;
}
ret = sd_command_init(card);
if (ret) {
LOG_ERR("Failed to init SD card after I/O reset");
k_mutex_unlock(&card->lock);
return ret;
}
} else if (ret != 0) {
/* Initialization failed */
k_mutex_unlock(&card->lock);
card->status = CARD_ERROR;
return ret;
}
/* Card initialization succeeded. */
card->status = CARD_INITIALIZED;
/* Unlock card mutex */
ret = k_mutex_unlock(&card->lock);
if (ret) {
LOG_DBG("Could not unlock card mutex");
return ret;
}
return ret;
}
/* Return true if card is present, false otherwise */
bool sd_is_card_present(const struct device *sdhc_dev)
{
if (!sdhc_dev) {
return false;
}
return sdhc_card_present(sdhc_dev) == 1;
}
```
|
```go
package dataloaders
import (
"context"
"net/http"
"sync"
"time"
"github.com/VertaAI/modeldb/backend/graphql/internal/server/connections"
ai_verta_uac "github.com/VertaAI/modeldb/protos/gen/go/protos/public/uac"
"github.com/julienschmidt/httprouter"
)
type userLoaderKeyType string
const userLoaderKey userLoaderKeyType = "userloader"
func UserDataloaderMiddleware(conn *connections.Connections) func(httprouter.Handle) httprouter.Handle {
return func(next httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
if conn.HasUac() {
userloaderConfig := UserLoaderConfig{
MaxBatch: 100,
Wait: 1 * time.Millisecond,
Fetch: func(reqs []string) ([]*ai_verta_uac.UserInfo, []error) {
errors := make([]error, len(reqs))
users := make([]*ai_verta_uac.UserInfo, len(reqs))
var waitgroup sync.WaitGroup
waitgroup.Add(len(reqs))
for i, req := range reqs {
go func(i int, req string) {
users[i], errors[i] = conn.UAC.GetUser(
r.Context(),
&ai_verta_uac.GetUser{UserId: req},
)
waitgroup.Done()
}(i, req)
}
waitgroup.Wait()
return users, errors
},
}
ctx := context.WithValue(r.Context(), userLoaderKey, NewUserLoader(userloaderConfig))
r = r.WithContext(ctx)
}
next(w, r, ps)
}
}
}
func GetUserById(ctx context.Context, id string) (*ai_verta_uac.UserInfo, error) {
userLoader, userLoaderOk := ctx.Value(userLoaderKey).(*UserLoader)
if !userLoaderOk {
return &ai_verta_uac.UserInfo{
FullName: "Unknwon User",
Email: "unknown@user.com",
VertaInfo: &ai_verta_uac.VertaUserInfo{
UserId: "",
Username: "UnkwnownUser",
},
}, nil
}
return userLoader.Load(id)
}
```
|
Haywood Cozart (April 17, 1917 – May 21, 1989), nicknamed "Big Train", was an American Negro league pitcher.
A native of Raleigh, North Carolina, Cozart made his Negro leagues debut in 1939 with the Newark Eagles, and played again for Newark in 1944. He died in Detroit, Michigan in 1989 at age 72.
References
External links
and Seamheads
1917 births
1989 deaths
Newark Eagles players
Baseball pitchers
Baseball players from Raleigh, North Carolina
|
```php
<?php
namespace Spatie\SchemaOrg;
use Spatie\SchemaOrg\Contracts\AnatomicalStructureContract;
use Spatie\SchemaOrg\Contracts\MedicalEntityContract;
use Spatie\SchemaOrg\Contracts\ThingContract;
/**
* Any part of the human body, typically a component of an anatomical system.
* Organs, tissues, and cells are all anatomical structures.
*
* @see path_to_url
* @see path_to_url
*
*/
class AnatomicalStructure extends BaseType implements AnatomicalStructureContract, MedicalEntityContract, ThingContract
{
/**
* An additional type for the item, typically used for adding more specific
* types from external vocabularies in microdata syntax. This is a
* relationship between something and a class that the thing is in.
* Typically the value is a URI-identified RDF class, and in this case
* corresponds to the
* use of rdf:type in RDF. Text values can be used sparingly, for cases
* where useful information can be added without their being an appropriate
* schema to reference. In the case of text values, the class label should
* follow the schema.org [style
* guide](path_to_url
*
* @param string|string[] $additionalType
*
* @return static
*
* @see path_to_url
*/
public function additionalType($additionalType)
{
return $this->setProperty('additionalType', $additionalType);
}
/**
* An alias for the item.
*
* @param string|string[] $alternateName
*
* @return static
*
* @see path_to_url
*/
public function alternateName($alternateName)
{
return $this->setProperty('alternateName', $alternateName);
}
/**
* If applicable, a description of the pathophysiology associated with the
* anatomical system, including potential abnormal changes in the
* mechanical, physical, and biochemical functions of the system.
*
* @param string|string[] $associatedPathophysiology
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function associatedPathophysiology($associatedPathophysiology)
{
return $this->setProperty('associatedPathophysiology', $associatedPathophysiology);
}
/**
* Location in the body of the anatomical structure.
*
* @param string|string[] $bodyLocation
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function bodyLocation($bodyLocation)
{
return $this->setProperty('bodyLocation', $bodyLocation);
}
/**
* A medical code for the entity, taken from a controlled vocabulary or
* ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.
*
* @param \Spatie\SchemaOrg\Contracts\MedicalCodeContract|\Spatie\SchemaOrg\Contracts\MedicalCodeContract[] $code
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function code($code)
{
return $this->setProperty('code', $code);
}
/**
* Other anatomical structures to which this structure is connected.
*
* @param \Spatie\SchemaOrg\Contracts\AnatomicalStructureContract|\Spatie\SchemaOrg\Contracts\AnatomicalStructureContract[] $connectedTo
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function connectedTo($connectedTo)
{
return $this->setProperty('connectedTo', $connectedTo);
}
/**
* A description of the item.
*
* @param \Spatie\SchemaOrg\Contracts\TextObjectContract|\Spatie\SchemaOrg\Contracts\TextObjectContract[]|string|string[] $description
*
* @return static
*
* @see path_to_url
*/
public function description($description)
{
return $this->setProperty('description', $description);
}
/**
* An image containing a diagram that illustrates the structure and/or its
* component substructures and/or connections with other structures.
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[] $diagram
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function diagram($diagram)
{
return $this->setProperty('diagram', $diagram);
}
/**
* A sub property of description. A short description of the item used to
* disambiguate from other, similar items. Information from other properties
* (in particular, name) may be necessary for the description to be useful
* for disambiguation.
*
* @param string|string[] $disambiguatingDescription
*
* @return static
*
* @see path_to_url
*/
public function disambiguatingDescription($disambiguatingDescription)
{
return $this->setProperty('disambiguatingDescription', $disambiguatingDescription);
}
/**
* A [[Grant]] that directly or indirectly provide funding or sponsorship
* for this item. See also [[ownershipFundingInfo]].
*
* @param \Spatie\SchemaOrg\Contracts\GrantContract|\Spatie\SchemaOrg\Contracts\GrantContract[] $funding
*
* @return static
*
* @see path_to_url
* @see path_to_url
* @link path_to_url
*/
public function funding($funding)
{
return $this->setProperty('funding', $funding);
}
/**
* A medical guideline related to this entity.
*
* @param \Spatie\SchemaOrg\Contracts\MedicalGuidelineContract|\Spatie\SchemaOrg\Contracts\MedicalGuidelineContract[] $guideline
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function guideline($guideline)
{
return $this->setProperty('guideline', $guideline);
}
/**
* The identifier property represents any kind of identifier for any kind of
* [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
* dedicated properties for representing many of these, either as textual
* strings or as URL (URI) links. See [background
* notes](/docs/datamodel.html#identifierBg) for more details.
*
* @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
*
* @return static
*
* @see path_to_url
*/
public function identifier($identifier)
{
return $this->setProperty('identifier', $identifier);
}
/**
* An image of the item. This can be a [[URL]] or a fully described
* [[ImageObject]].
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
*
* @return static
*
* @see path_to_url
*/
public function image($image)
{
return $this->setProperty('image', $image);
}
/**
* The drug or supplement's legal status, including any controlled substance
* schedules that apply.
*
* @param \Spatie\SchemaOrg\Contracts\DrugLegalStatusContract|\Spatie\SchemaOrg\Contracts\DrugLegalStatusContract[]|\Spatie\SchemaOrg\Contracts\MedicalEnumerationContract|\Spatie\SchemaOrg\Contracts\MedicalEnumerationContract[]|string|string[] $legalStatus
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function legalStatus($legalStatus)
{
return $this->setProperty('legalStatus', $legalStatus);
}
/**
* Indicates a page (or other CreativeWork) for which this thing is the main
* entity being described. See [background
* notes](/docs/datamodel.html#mainEntityBackground) for details.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
*
* @return static
*
* @see path_to_url
*/
public function mainEntityOfPage($mainEntityOfPage)
{
return $this->setProperty('mainEntityOfPage', $mainEntityOfPage);
}
/**
* The system of medicine that includes this MedicalEntity, for example
* 'evidence-based', 'homeopathic', 'chiropractic', etc.
*
* @param \Spatie\SchemaOrg\Contracts\MedicineSystemContract|\Spatie\SchemaOrg\Contracts\MedicineSystemContract[] $medicineSystem
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function medicineSystem($medicineSystem)
{
return $this->setProperty('medicineSystem', $medicineSystem);
}
/**
* The name of the item.
*
* @param string|string[] $name
*
* @return static
*
* @see path_to_url
*/
public function name($name)
{
return $this->setProperty('name', $name);
}
/**
* The anatomical or organ system that this structure is part of.
*
* @param \Spatie\SchemaOrg\Contracts\AnatomicalSystemContract|\Spatie\SchemaOrg\Contracts\AnatomicalSystemContract[] $partOfSystem
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function partOfSystem($partOfSystem)
{
return $this->setProperty('partOfSystem', $partOfSystem);
}
/**
* Indicates a potential Action, which describes an idealized action in
* which this thing would play an 'object' role.
*
* @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
*
* @return static
*
* @see path_to_url
*/
public function potentialAction($potentialAction)
{
return $this->setProperty('potentialAction', $potentialAction);
}
/**
* If applicable, the organization that officially recognizes this entity as
* part of its endorsed system of medicine.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $recognizingAuthority
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function recognizingAuthority($recognizingAuthority)
{
return $this->setProperty('recognizingAuthority', $recognizingAuthority);
}
/**
* A medical condition associated with this anatomy.
*
* @param \Spatie\SchemaOrg\Contracts\MedicalConditionContract|\Spatie\SchemaOrg\Contracts\MedicalConditionContract[] $relatedCondition
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function relatedCondition($relatedCondition)
{
return $this->setProperty('relatedCondition', $relatedCondition);
}
/**
* A medical therapy related to this anatomy.
*
* @param \Spatie\SchemaOrg\Contracts\MedicalTherapyContract|\Spatie\SchemaOrg\Contracts\MedicalTherapyContract[] $relatedTherapy
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function relatedTherapy($relatedTherapy)
{
return $this->setProperty('relatedTherapy', $relatedTherapy);
}
/**
* If applicable, a medical specialty in which this entity is relevant.
*
* @param \Spatie\SchemaOrg\Contracts\MedicalSpecialtyContract|\Spatie\SchemaOrg\Contracts\MedicalSpecialtyContract[] $relevantSpecialty
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function relevantSpecialty($relevantSpecialty)
{
return $this->setProperty('relevantSpecialty', $relevantSpecialty);
}
/**
* URL of a reference Web page that unambiguously indicates the item's
* identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
* official website.
*
* @param string|string[] $sameAs
*
* @return static
*
* @see path_to_url
*/
public function sameAs($sameAs)
{
return $this->setProperty('sameAs', $sameAs);
}
/**
* A medical study or trial related to this entity.
*
* @param \Spatie\SchemaOrg\Contracts\MedicalStudyContract|\Spatie\SchemaOrg\Contracts\MedicalStudyContract[] $study
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function study($study)
{
return $this->setProperty('study', $study);
}
/**
* Component (sub-)structure(s) that comprise this anatomical structure.
*
* @param \Spatie\SchemaOrg\Contracts\AnatomicalStructureContract|\Spatie\SchemaOrg\Contracts\AnatomicalStructureContract[] $subStructure
*
* @return static
*
* @see path_to_url
* @see path_to_url
*/
public function subStructure($subStructure)
{
return $this->setProperty('subStructure', $subStructure);
}
/**
* A CreativeWork or Event about this Thing.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
*
* @return static
*
* @see path_to_url
* @link path_to_url
*/
public function subjectOf($subjectOf)
{
return $this->setProperty('subjectOf', $subjectOf);
}
/**
* URL of the item.
*
* @param string|string[] $url
*
* @return static
*
* @see path_to_url
*/
public function url($url)
{
return $this->setProperty('url', $url);
}
}
```
|
```javascript
module.exports = require('./bundle').sources;
```
|
```javascript
var getNative = require('./getNative');
/** Native method references. */
var WeakMap = getNative(global, 'WeakMap');
/** Used to store function metadata. */
var metaMap = WeakMap && new WeakMap;
module.exports = metaMap;
```
|
Harold Stauffer Bender (July 19, 1897 – September 21, 1962) was a prominent professor of theology at Goshen College (Goshen, Indiana) and Goshen Biblical Seminary. His accomplishments include founding both the Mennonite Historical Library and The Mennonite Quarterly Review. He served as president of the American Society of Church History, and was a major scholarly influence on fellow Mennonite theologian John Howard Yoder.
Bender graduated from Elkhart High School (1914), Goshen College (Bachelor of Arts, 1918), Garrett Biblical Institute (Bachelor of Divinity, 1922), Princeton Theological Seminary (Master of Theology, 1923), and Princeton University (Master of Arts, 1923). He attended the University of Tübingen, 1923–1924. Bender was awarded his Ph.D. from the University of Heidelberg in 1935.
Background
Bender taught one year at the high school in Thorntown, Indiana (1916-1917), and two years at Hesston College (1918-1920). From 1924 to 1962 he was professor at Goshen College in church history, Bible, and sociology. He was dean of Goshen College, 1931–1944, and dean of Goshen College Biblical Seminary, 1944–1962.
Professional
Bender is perhaps best known for writing The Anabaptist Vision in 1944. The Anabaptist Vision was a short essay intended to refocus the Anabaptists and Mennonites during the trying years of World War II by re-examining the religious movement's historical context. Anabaptists distinctives were summarized as:
Discipleship is the essence of Christianity.
Church as a community grows out of the central principle of newness of life.
Love and nonresistance apply to all human relationships.
References
External links
Full text of The Anabaptist Vision
The History of The Anabaptist Vision by Albert Keim
Harold S. Bender in Global Anabaptist Mennonite Encyclopedia Online
1897 births
1962 deaths
American Mennonites
Mennonite writers
American Amish writers
Reformation historians
Goshen College alumni
Goshen College faculty
Hesston College faculty
Presidents of the American Society of Church History
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="path_to_url" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="../Resources.resx">
<body>
<trans-unit id="BUILDTASK_ColectFilesInFolder_RootIsNotValid">
<source>The root folder for cllecting files is not a valid directory.({0})</source>
<target state="translated">Folder gwny do gromadzenia plikw nie jest prawidowym katalogiem.({0})</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CopyFilesToFolders_CopyFailed">
<source>Copying file {0} to {1} failed. {2}</source>
<target state="translated">Nie mona skopiowa pliku {0} do {1}. {2}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CopyFilesToFolders_Copying">
<source>Copying {0} to {1}.</source>
<target state="translated">Kopiowanie: {0} do {1}.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CopyFilesToFolders_DeleteFailed">
<source>Deleting file {0} failed. {1}</source>
<target state="translated">Nie mona usun pliku {0}. {1}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CopyFilesToFolders_Deleting">
<source>Deleting {0}.</source>
<target state="translated">Usuwanie {0}.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CopyFilesToFolders_RetryDelayOutOfRange">
<source>RetryDelay should be greater than zero.</source>
<target state="translated">Warto elementu RetryDelay musi by wiksza ni zero.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CopyFilesToFolders_UpToDate">
<source>Skip copying {0} to {1}, File {1} is up to date</source>
<target state="translated">Pomijanie kopiowania elementu {0} do {1}; plik {1} jest aktualny</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_CreateFolder_Failed">
<source>Create Folder {0} failed. {1}</source>
<target state="translated">Nie mona utworzy folderu {0}. {1}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_DetectAntaresCLR45Error">
<source>Your hosting provider does not yet support ASP.NET 4.6, which your application is configured to use. To learn more about this please visit: path_to_url
<target state="translated">Twj dostawca hostingu nie obsuguje platformy ASP.NET 4.6, dla ktrej zostaa skonfigurowana aplikacja. Aby dowiedzie si wicej, odwied nastpujc stron: path_to_url
<note />
</trans-unit>
<trans-unit id="BUILDTASK_FailedToLoadThisVersionMsDeployTryingTheNext">
<source>Failed to load this version Microsoft.Web.Deployment ({0}) reason: {1}.
Trying the next one specified in $(_MSDeployVersionsToTry)..</source>
<target state="translated">Nie mona zaadowa tej wersji skadnika Microsoft.Web.Deployment ({0}); przyczyna: {1}.
Zostanie wyprbowana nastpna okrelona w: $(_MSDeployVersionsToTry).</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_IISSetting_RequireWebAdminDLL">
<source>To include IIS setting, it is required to have assembly Microsoft.Web.Administration installed on the machine.</source>
<target state="translated">Aby mona byo uwzgldni ustawienie programu IIS, na komputerze musi by zainstalowany zestaw Microsoft.Web.Administration.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hash>
<source>Existing package/archiveDir is created by different version of Msdeploy. It is not compatible for incremental build. Mark as Clean needed({0}).</source>
<target state="translated">Istniejcy pakiet/katalog archiwum utworzono w innej wersji narzdzia Msdeploy. Nie jest zgodny z kompilacj przyrostow. Wymagane Oznacz jako oczyszczone ({0}).</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_ManifestFile_IISSettingNotInFirst">
<source>Validation failure.IIS Setting should be the first element in the Manifest file.({0})</source>
<target state="translated">Bd weryfikowania. Ustawienie programu IIS powinno by pierwszym elementem w pliku manifestu.({0})</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_MapProjectURLToIisWeb_InvalidProjectURL">
<source>The project URL is not well formed.({0})</source>
<target state="translated">Adres URL projektu nie jest poprawnie sformuowany.({0})</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_MapProjectURLToIisWeb_UnsupportedProjectURL">
<source>The project URL url host name type is not supported.({0})</source>
<target state="translated">Typ nazwy hosta url adresu URL projektu nie jest obsugiwany.({0})</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_MapURIToIisWebServer_AdminRequired">
<source>Retrieving local IIS properties from the URI requires Administrator permission. Please elevate to Administrator before executing the program.</source>
<target state="translated">Do pobrania lokalnych waciwoci programu IIS z identyfikatora URI s wymagane uprawnienia administratora. Przed wykonaniem programu podnie poziom uprawnie do poziomu administratora.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_RemoveEmptyDirectories_Deleting">
<source>Deleting empty directory {0}.</source>
<target state="translated">Usuwanie pustego katalogu {0}.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_SqlScriptPreprocessFile">
<source>Scanning sql command variable(s) from sql script ({0}).</source>
<target state="translated">Skanowanie zmiennych polece sql ze skryptu sql ({0}).</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_SqlScriptPreprocessFileDone">
<source>Found {0} sql command variable(s){1}.</source>
<target state="translated">Liczba znalezionych zmiennych polece sql: {0}{1}.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_SqlScriptPreprocessFileFailed">
<source>Failed to parse sql command variable sql script ({0}).</source>
<target state="translated">Nie mona przeanalizowa skryptu sql zmiennych polece sql ({0}).</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_SqlScriptPreprocessFoundMsDeployUnsupportedCommands">
<source>Found {0} unsupported sql command(s) in {1}. The unsupported sql command(s) are: {2}.
Please note ':EXIT' without argument is treated as ':QUIT' command.</source>
<target state="translated">Liczba znalezionych nieobsugiwanych polece sql w elemencie {1}: {0}. Nieobsugiwane polecenia sql: {2}.
Uwaga: polecenie :EXIT bez argumentu jest traktowane jak polecenie :QUIT.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_SqlScriptPreprocessInvalidSqlScript">
<source>Failed to parse the sql script file {0}. Please make sure the SQL script syntax is correct.
Detail:
{1}.</source>
<target state="translated">Nie mona przeanalizowa pliku skryptu sql {0}. Upewnij si, e skadnia skryptu SQL jest poprawna.
Szczeg:
{1}.</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_DestinationWriteFailed">
<source>Could not write Destination file: {0}</source>
<target state="translated">Nie mona zapisa w pliku docelowym: {0}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_SourceLoadFailed">
<source>Could not open Source file: {0}</source>
<target state="translated">Nie mona otworzy pliku rdowego: {0}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformLoadFailed">
<source>Could not open Transform file: {0}</source>
<target state="translated">Nie mona otworzy pliku przeksztacenia: {0}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformOutput">
<source>Output File: {0}</source>
<target state="translated">Plik wyjciowy: {0}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformationApply">
<source>Applying Transform File: {0}</source>
<target state="translated">Stosowanie pliku przeksztacenia: {0}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformationFailed">
<source>Transformation failed</source>
<target state="translated">Przeksztacenie nie powiodo si</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformationNoChange">
<source>No transformation occurred, not saving output file</source>
<target state="translated">Nie dokonano przeksztacenia: plik wyjciowy nie zostanie zapisany</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformationStart">
<source>Transforming Source File: {0}</source>
<target state="translated">Przeksztacanie pliku rdowego: {0}</target>
<note />
</trans-unit>
<trans-unit id="BUILDTASK_TransformXml_TransformationSucceeded">
<source>Transformation succeeded</source>
<target state="translated">Przeksztacenie si powiodo</target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_FailToCopyFile">
<source>Failded to copy file from '{0}' to '{1}' for SQLExpress Data Publish</source>
<target state="translated">Nie mona skopiowa elementu {0} do {1} na potrzeby publikowania danych programu SQLExpress</target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_ImportPublishDatabaseSettingNotFound">
<source>Publish Database Setting Source Verification Error: The publish profile specified '{1} ({2})' for '{0}' does not have a corresponding connection string in '{3}'. Because of this publishing has been blocked. If this was intended you can disable this check by specifying the value of "True" for the MSBuild property "IgnoreDatabaseSettingOutOfSync." If this was not intended, open the Publish dialog in Visual Studio with this profile to correct the discrepancy. For more information visit path_to_url </source>
<target state="translated">Bd weryfikacji rda ustawie publikowania bazy danych: okrelony profil publikowania {1} ({2}) dla {0} nie ma odpowiednich parametrw poczenia w {3}. Z tego powodu publikowanie zostao zablokowane. Jeli to jest zamierzone, moesz wyczy ten test, okrelajc warto True dla waciwoci MSBuild IgnoreDatabaseSettingOutOfSync. Jeli to nie jest zamierzone, w programie Visual Studio otwrz okno dialogowe publikowania z tym profilem i popraw t rozbieno. Aby uzyska wicej informacji, odwied stron path_to_url </target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_ImportValidationSourceNotFound">
<source>Publish Database Setting Source Verification Error: The source connection string for '{0}' no longer exists in the source '{1}'. Because of this publishing has been blocked. If this was intended you can disable this check by specifying the value of "True" for the MSBuild property "IgnoreDatabaseSettingOutOfSync." If this was not intended, open the Publish dialog in Visual Studio with this profile to correct the discrepancy. For more information visit path_to_url </source>
<target state="translated">Bd weryfikacji rda ustawie publikowania bazy danych: parametry poczenia rda dla {0} ju nie istniej w rdle {1}. Z tego powodu publikowanie zostao zablokowane. Jeli to jest zamierzone, moesz wyczy ten test, okrelajc warto True dla waciwoci MSBuild IgnoreDatabaseSettingOutOfSync. Jeli to nie jest zamierzone, w programie Visual Studio otwrz okno dialogowe publikowania z tym profilem i popraw t rozbieno. Aby uzyska wicej informacji, odwied stron path_to_url </target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_InvalidMSBuildFormat">
<source>Publish Database Setting Source Verification Error: The publish profile specified '{1}' for '{0}' is not valid and could not be loaded. Review the file for any errors and try again.</source>
<target state="translated">Bd weryfikacji rda ustawie publikowania bazy danych: okrelony profil publikowania {1} dla {0} nie jest prawidowy i nie mona go zaadowa. Przejrzyj plik pod ktem bdw i ponw prb.</target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_InvalidPublishDatabaseSetting">
<source>Publish Database Setting Source Verification Error:The publish profile specified '{1} ({2})' for '{0}' does not have valid $(PublishDatabaseSettings) value. Because of this publishing has been blocked. If this was intended you can disable this check by specifying the value of "True" for the MSBuild property "IgnoreDatabaseSettingOutOfSync." If this was not intended, open the Publish dialog in Visual Studio with this profile to correct the discrepancy. For more information visit path_to_url </source>
<target state="translated">Bd weryfikacji rda ustawie publikowania bazy danych: okrelony profil publikowania {1} ({2}) dla {0} nie ma prawidowej wartoci $(PublishDatabaseSettings). Z tego powodu publikowanie zostao zablokowane. Jeli to jest zamierzone, moesz wyczy ten test, okrelajc warto True dla waciwoci MSBuild IgnoreDatabaseSettingOutOfSync. Jeli to nie jest zamierzone, w programie Visual Studio otwrz okno dialogowe publikowania z tym profilem i popraw t rozbieno. Aby uzyska wicej informacji, odwied stron path_to_url </target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_MustProviderProvidersXMLorProvidersFile">
<source>CreateProviderList expected either ProvidersXml or ProvidersFile parameter</source>
<target state="translated">Element CreateProviderList oczekiwa parametru ProvidersXml lub ProvidersFile</target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_NotExpectingAdditionalParameter">
<source>Publish Database Setting encountered an unexpected error. The provider '{0}' doesn't expect any addition arguments '{1}'.</source>
<target state="translated">Ustawienie publikowania bazy danych napotkao nieoczekiwany bd. Dostawca {0} nie oczekuje adnych dodatkowych argumentw {1}.</target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_NotSupportBothProvidersXMLAndProvidersFile">
<source>CreateProviderList does not support ProvidersXml and ProvidersFile parameters at the same time</source>
<target state="translated">Element CreateProviderList nie obsuguje parametrw ProvidersXml i ProvidersFile jednoczenie</target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_OutofSyncWithSourcePublishDatabaseSetting">
<source>Publish Database Setting Source Verification Error: The connection '{0}' in the publish profile has changed from what is currently declared for '{1} ({2})'. Because of this publishing has been blocked. If this was intended you can disable this check by specifying the value of "True" for the MSBuild property "IgnoreDatabaseSettingOutOfSync." If this was not intended, open the Publish dialog in Visual Studio with this profile to correct the discrepancy. For more information visit path_to_url </source>
<target state="translated">Bd weryfikacji rda ustawie publikowania bazy danych: poczenie {0} w profilu publikowania zmienio si i rni si od obecnie zadeklarowanego dla {1} ({2}). Z tego powodu publikowanie zostao zablokowane. Jeli to jest zamierzone, moesz wyczy ten test, okrelajc warto True dla waciwoci MSBuild IgnoreDatabaseSettingOutOfSync. Jeli to nie jest zamierzone, w programie Visual Studio otwrz okno dialogowe publikowania z tym profilem i popraw t rozbieno. Aby uzyska wicej informacji, odwied stron path_to_url </target>
<note />
</trans-unit>
<trans-unit id="CREATEPROVIDERLIST_SqlExpressPublishRequireLocalDB">
<source>SQL Server Express LocalDB is required in order to publish one or more of your databases. To learn more and install it, follow this link path_to_url </source>
<target state="translated">Aby opublikowa co najmniej jedn baz danych, wymagany jest pakiet LocalDB programu SQL Server Express. Aby dowiedzie si wicej i zainstalowa pakiet, uyj nastpujcego linku: path_to_url </target>
<note />
</trans-unit>
<trans-unit id="DeploymentError_MissingDbDacFx">
<source>The remote host does not have the dbDacFx Web Deploy provider installed, which is required for database publishing. To learn more about this visit this link.
FWLink: path_to_url
<target state="translated">Zdalny host nie ma zainstalowanego dostawcy dbDacFx Web Deploy, ktry jest wymagany do publikowania bazy danych. Aby dowiedzie si wicej, skorzystaj z tego linku.
FWLink: path_to_url
<note />
</trans-unit>
<trans-unit id="EFSCRIPT_Generating">
<source>Generating Entity Framework SQL Scripts...</source>
<target state="translated">Trwa generowanie skryptw SQL Entity Framework...</target>
<note />
</trans-unit>
<trans-unit id="EFSCRIPT_GenerationCompleted">
<source>Generating Entity Framework SQL Scripts completed successfully</source>
<target state="translated">Generowanie skryptw SQL Entity Framework zostao ukoczone pomylnie</target>
<note />
</trans-unit>
<trans-unit id="EFSCRIPT_GenerationFailed">
<source>Entity Framework SQL Script generation failed</source>
<target state="translated">Generowanie skryptu SQL Entity Framework nie powiodo si</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_AddingFile">
<source>Adding file ({0}).</source>
<target state="translated">Dodawanie pliku ({0}).</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_AddingFileFailed">
<source>Adding file ({0}) failed. Reason: {1}.</source>
<target state="translated">Nie mona doda pliku ({0}). Przyczyna: {1}.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_AzurePublishErrorReason">
<source>Unable to publish to Azure. Error Details : '{0}'.</source>
<target state="translated">Nie mona publikowa na platformie Azure. Szczegy bdu: {0}.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_ConnectionInfoMissing">
<source>Azure connection information cannot be empty.</source>
<target state="translated">Informacje o poczeniu z platform Azure nie mog by puste.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_CopyingToTempLocation">
<source>Copying all files to temporary location for publish: '{0}'.</source>
<target state="translated">Kopiowanie wszystkich plikw do lokalizacji tymczasowej na potrzeby publikowania: {0}.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_CopyingToTempLocationCompleted">
<source>Copying all files to temporary location completed.</source>
<target state="translated">Kopiowanie wszystkich plikw do lokalizacji tymczasowej zostao zakoczone.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_DeployOutputPathEmpty">
<source>DeployOutputPath property cannot be empty.</source>
<target state="translated">Waciwo DeployOutputPath nie moe by pusta.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_OperationTimeout">
<source>Publish operation timed out.</source>
<target state="translated">Operacja publikowania przekroczya limit czasu.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_PublishAzure">
<source>Publishing to Azure.</source>
<target state="translated">Publikowanie na platformie Azure.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_PublishFailed">
<source>Publish Failed.</source>
<target state="translated">Publikowanie nie powiodo si.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_PublishSucceeded">
<source>Publish Succeeded.</source>
<target state="translated">Publikowanie powiodo si.</target>
<note />
</trans-unit>
<trans-unit id="KUDUDEPLOY_PublishZipFailedReason">
<source>Publishing to site '{0}' failed. Reason: '{1}'.</source>
<target state="translated">Nie mona publikowa w witrynie {0}. Przyczyna: {1}.</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_EXE_Failed">
<source>Failed to execute msdeploy.exe.</source>
<target state="translated">Nie mona wykona programu msdeploy.exe.</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_EXE_PreviewOnly">
<source>Generate msdeploy.exe command line for preview only.</source>
<target state="translated">Generowanie wiersza polecenia programu msdeploy.exe tylko do podgldu.</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_EXE_Start">
<source>Running msdeploy.exe.</source>
<target state="translated">Uruchamianie programu msdeploy.exe.</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_EXE_Succeeded">
<source>Successfully execute msdeploy.exe.</source>
<target state="translated">Pomylnie wykonano program msdeploy.exe.</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_InvalidDestinationCount">
<source>Invalidate destination item count: {0}</source>
<target state="translated">Nieprawidowa liczba elementw docelowych: {0}</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_InvalidSourceCount">
<source>Invalidate source items count: {0}</source>
<target state="translated">Nieprawidowa liczba elementw rdowych: {0}</target>
<note />
</trans-unit>
<trans-unit id="MSDEPLOY_InvalidVerbForTheInput">
<source>Invalid verb({0}) for supplied source ({1}) and destination ({2}).</source>
<target state="translated">Nieprawidowe zlecenie ({0}) dla podanego rda ({1}) i elementu docelowego ({2}).</target>
<note />
</trans-unit>
<trans-unit id="POWERSHELL_PublishProfileParsingError">
<source>Unable to parse the pubxml file {0}.</source>
<target state="translated">Nie mona przeanalizowa pliku pubxml {0}.</target>
<note />
</trans-unit>
<trans-unit id="Publich_InvalidPublishToolsVersion_Error">
<source>The publish profile used for publishing was created in a newer version of the Visual Studio Web Publish features. In order to publish using this profile you will need to update your web publish components. To learn more about this, please visit path_to_url
<target state="translated">Profil publikacji uywany do publikowania zosta utworzony w nowszej wersji funkcji Web Publish programu Visual Studio. Aby opublikowa przy uyciu tego profilu, naley zaktualizowa skadniki publikacji sieci Web. Aby dowiedzie si wicej o tym dziaaniu, odwied stron path_to_url
<note />
</trans-unit>
<trans-unit id="PublishArgumentError_InvalidRemoteServiceUrl">
<source>Invalid Web Deploy service URL</source>
<target state="translated">Nieprawidowy adres URL usugi Web Deploy</target>
<note />
</trans-unit>
<trans-unit id="PublishArgumentError_InvalidSiteAppName">
<source>Invalid site/application name</source>
<target state="translated">Nieprawidowa nazwa witryny/aplikacji</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashsformOutputFile">
<source>Auto ConnectionString Transformed {0} into {1}.</source>
<target state="translated">Automatyczne parametry poczenia: przeksztacono {0} w {1}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_CheckingForValidMsBuildPropertyValue">
<source>$({0}) is {1}. Validating...</source>
<target state="translated">$({0}) jest: {1}. Trwa weryfikowanie...</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashion">
<source>Connection string for setting up this application database.</source>
<target state="translated">Parametry poczenia do konfigurowania tej bazy danych aplikacji.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_DefaultExcludeFileExtentionOutMessage">
<source>Exclude *.out files under root folder.</source>
<target state="translated">Wyklucz pliki *.out w folderze gwnym.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashsage">
<source>Exclude all files under obj folder.</source>
<target state="translated">Wyklucz wszystkie pliki w folderze obj.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_DefaultExcludeSourceControlItems">
<source>Set all .scc .vspscc file as _IgnorableFilesInProjectFolder. Set _CollectFiles_IncludeIgnorableFile to True to include in the packaging.</source>
<target state="translated">Ustaw wszystkie pliki scc i vspscc jako _IgnorableFilesInProjectFolder. Ustaw warto True dla elementu _CollectFiles_IncludeIgnorableFile w celu uwzgldnienia w pakowaniu.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashiption">
<source>Connection String used by Entity Framework Code First Model to deploy the database.</source>
<target state="translated">Parametry poczenia uywane w modelu Entity Framework Code First na potrzeby wdraania bazy danych.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ErrorCannotDeployFromIIS7AboveToLowerIIS">
<source>Deploy with IIS Setting from a IIS 7 or above to a lower verstion of IIS server is not supported. To fix the problem, please set the %24(IncludeIisSettings) to false. Your current setting are $(IncludeIisSettings) is {0}, $(DestinationIisVersion) is {1} and $(LocalIisVersion) is {2}.</source>
<target state="translated">Wdraanie z ustawieniem programu IIS od wersji IIS 7 na serwerze programu IIS w niszej wersji nie jest obsugiwane. Aby rozwiza ten problem, ustaw dla elementu %24(IncludeIisSettings) warto false. Biece ustawienia: $(IncludeIisSettings) ma warto {0}, $(DestinationIisVersion) ma warto {1}, a $(LocalIisVersion) ma warto {2}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ErrorInvalidMSBuildItemCollectionCount">
<source>@({0}) have {1} item(s) in the collection. It should only have {2} item(s).</source>
<target state="translated">Element @({0}) ma w tej kolekcji tyle elementw: {1}. Powinien mie tylko tyle: {2}.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashTrue">
<source>Invalid $({0}): When $({1}) is set True. It is required to have a valid $({0}) to be use for creating parameters correctly.</source>
<target state="translated">Nieprawidowy element $({0}): gdy element $({1}) ma ustawion warto True. Element $({0}) musi by prawidowy, aby mona byo poprawnie tworzy parametry.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hash>
<source>'{0}' exists as a folder. You can't package as a single file to be the same path as an existing folder. Please delete the folder before packaging. Alternative,you can call msbuild with /t:CleanWebsitesPackage target to remove it.</source>
<target state="translated">Element {0} istnieje jako folder. Nie mona spakowa do postaci jednego pliku o tej samej ciece co istniejcy folder. Przed spakowaniem usu folder. Ewentualnie moesz wywoa program msbuild z elementem docelowym /t:CleanWebsitesPackage w celu usunicia go.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hash>
<source>'{0}' exists as a file. You can't package as an archive directory to be the same path as an existing file. Please delete the file before packaging. Alternative,you can call msbuild with /t:CleanWebsitesPackage target to remove it.</source>
<target state="translated">Element {0} istnieje jako plik. Nie mona spakowa do postaci katalogu archiwum o tej samej ciece co istniejcy plik. Przed spakowaniem usu plik. Ewentualnie moesz wywoa program msbuild z elementem docelowym /t:CleanWebsitesPackage w celu usunicia go.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ErrorUseIisIsTrueButIisUrlIsEmpty">
<source>IisUrl property is required when UseIis property is True</source>
<target state="translated">Gdy waciwo UseIis ma warto True, jest wymagana waciwo IisUrl</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashDependsOnBuildBothTrue">
<source>These two Properties are not compatable: $(UseWPP_CopyWebApplication) and $(PipelineDependsOnBuild) both are True.
Please correct the problem by either set $(Disable_CopyWebApplication) to true or set $(PipelineDependsOnBuild) to false to break the circular build dependency.
Detail: $(UseWPP_CopyWebApplication) make the publsih pipeline (WPP) to be Part of the build and $(PipelineDependsOnBuild) make the WPP depend on build thus cause the build circular build dependency.</source>
<target state="translated">Te dwie waciwoci s niezgodne: $(UseWPP_CopyWebApplication) i $(PipelineDependsOnBuild) maj obie warto True.
Rozwi problem, ustawiajc dla waciwoci $(Disable_CopyWebApplication) warto true lub dla waciwoci $(PipelineDependsOnBuild) warto false, aby przerwa cykliczn zaleno kompilacji.
Szczegy: waciwo $(UseWPP_CopyWebApplication) powoduje, e potok publikowania (WPP) staje si czci kompilacji, a waciwo $(PipelineDependsOnBuild) powoduje, e potok WPP zaley od kompilacji, w wyniku czego powstaje cykliczna zaleno kompilacji.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ExcludeAllDebugSymbols">
<source>Exclude All Debug Symbols</source>
<target state="translated">Wyklucz wszystkie symbole debugowania</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ExcludeAllFilesUnderFolder">
<source>Exclude All files under {0}</source>
<target state="translated">Wyklucz wszystkie pliki w {0}</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_FinishGenerateSampleMsDeployBatchScript">
<source>Sample script for deploying this package is generated at the following location:
{0}
For this sample script, you can change the deploy parameters by changing the following file:
{1}</source>
<target state="translated">W nastpujcej lokalizacji wygenerowano przykadowy skrypt sucy do wdroenia tego pakietu:
{0}
Parametry wdraania tego przykadowego skryptu mona zmieni, zmieniajc nastpujcy plik:
{1}</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_FoundApplicationConfigForTransformation">
<source>Found The following for Config tranformation:
{0}</source>
<target state="translated">Znaleziono nastpujce elementy na potrzeby przeksztacenia konfiguracji:
{0}</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashion">
<source>Gather all files from project folder except in the exclusion list.</source>
<target state="translated">Zbieranie wszystkich plikw z folderu projektu z wyjtkiem podanych na licie wykluczonych.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_GatherSpecificItemsFromProject">
<source>Gather all files from Project items @({0}). Adding:</source>
<target state="translated">Zbieranie wszystkich plikw z elementw projektu @({0}). Dodawanie:</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_GatherSpecificItemsFromProjectNoDetail">
<source>Gather all files from Project items @({0}).</source>
<target state="translated">Zbieranie wszystkich plikw z elementw projektu @({0}).</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_GatherSpecificOutputsFromProject">
<source>Gather all files from Project output ({0}). Adding:</source>
<target state="translated">Zbieranie wszystkich plikw z danych wyjciowych projektu ({0}). Dodawanie:</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_GenerateMsdeploySourceManifestFile">
<source>Generate source manifest file for Web Deploy package/publish ...</source>
<target state="translated">Trwa generowanie rdowego pliku manifestu dla pakowania/publikowania narzdzia Web Deploy...</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_GenerateSampleMsdeployBatchScript">
<source>Generating a sample batch commandline script for deploying this package...</source>
<target state="translated">Trwa generowanie przykadowego wsadowego skryptu wiersza polecenia do wdroenia tego pakietu...</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_IISAppParameterDescription">
<source>IIS Web Site/Application name</source>
<target state="translated">Nazwa aplikacji/witryny sieci Web programu IIS</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_IISAppPhysicalPathDescription">
<source>Physical path for this Web Application.</source>
<target state="translated">cieka fizyczna tej aplikacji internetowej.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashConfigToTransformOutputFile">
<source>Insert additional ConnectionString Transformed {0} into {1}.</source>
<target state="translated">Wstawianie dodatkowych parametrw poczenia: przeksztacono {0} w {1}.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashnfigToTransformOutputFile">
<source>Insert additional EFCodeFirst Database Deployment Transformed {0} into {1}.</source>
<target state="translated">Wstawianie dodatkowego wdroenia bazy danych EFCodeFirst: przeksztacono {0} w {1}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_InvalidArgument">
<source>GetPublishingLocalizedString Task encounter invalid argument ID;</source>
<target state="translated">Zadanie GetPublishingLocalizedString napotkao nieprawidowy argument ID;</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_MSBuildTargetFailed">
<source>Target {0} failed.</source>
<target state="translated">Niepowodzenie elementu docelowego {0}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_MsBuildPropertySettingValue">
<source>$({0}) is {1}</source>
<target state="translated">$({0}) jest: {1}</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_PackagingIntoLocation">
<source>Packaging into {0}.</source>
<target state="translated">Pakowanie do {0}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpEnviroment">
<source>
===========================
Environment-Specific Settings:
--------------------------
</source>
<target state="translated">
===========================
Ustawienia charakterystyczne dla rodowiska:
--------------------------
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpEnviromentExplained">
<source>
To customize application-specific settings for each deployment environment (for example, the IIS application name, the physical path, and any connection strings), edit the settings in the following file:
"{0}"</source>
<target state="translated">
Aby dostosowa ustawienia charakterystyczne dla aplikacji dla poszczeglnych rodowisk wdraania (takie jak nazwa aplikacji IIS, cieka fizyczna i wszelkie parametry poczenia), edytuj ustawienia w nastpujcym pliku:
{0}</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpMoreInfo">
<source>
===========================
For more information on this deploy script visit: {0}
</source>
<target state="translated">
===========================
Aby uzyska wicej informacji o tym skrypcie wdraania, odwied stron: {0}
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpOptional">
<source>
===========================
Optional Flags:
--------------------------
By Default, this script deploy on the current machine where this script is called with current user credential without agent service. Only pass the following value for advance scenario.
</source>
<target state="translated">
===========================
Flagi opcjonalne:
--------------------------
Domylnie ten skrypt wykonuje wdraanie na komputerze biecym, gdzie jest wywoywany z powiadczeniami biecego uytkownika bez usugi agenta. Ponisz warto naley przekaza tylko w scenariuszu zaawansowanym.
</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashalFlags">
<source>
[Additional msdeploy.exe flags]
The msdeploy.exe command supports additional flags. You can include any of these additional flags in the "$(ProjectName).Deploy.cmd" file, and the flags are passed through to msdeploy.exe during execution.
Alternatively, you can specify additional flags by setting the "_MsDeployAdditionalFlags" environment variable. These settings are used by this batch file.
Note: Any flag value that includes an equal sign (=) must be enclosed in double quotation marks, as shown in the following example, which will skip deploying the databases that are included in the package:
"-skip:objectName=dbFullSql"
</source>
<target state="translated">
[Dodatkowe flagi programu msdeploy.exe]
Polecenie msdeploy.exe obsuguje dodatkowe flagi. Dowolne z tych dodatkowych flag moesz poda w pliku $(nazwa_projektu).Deploy.cmd. Zostan przekazane do programu msdeploy.exe w trakcie wykonywania.
Ewentualnie moesz poda dodatkowe flagi, ustawiajc zmienn rodowiskow _MsDeployAdditionalFlags. Ten plik wsadowy uywa tych ustawie.
Uwaga: kad warto flagi zawierajc znak rwnoci (=) naley uj w cudzysowy ("), jak to pokazano w poniszym przykadzie, ktry powoduje pominicie wdraania baz danych zawartych w pakiecie:
"-skip:objectName=dbFullSql"
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpOptionalExplainedFlagA">
<source>
/A:<Basic | NTLM>
Specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic; otherwise, the default authentication type is NTLM.
</source>
<target state="translated">
/A:<Basic | NTLM>
Okrela typ uwierzytelniania, jakiego naley uy. Moliwe wartoci to NTLM i Basic. Jeli okrelono ustawienie dostawcy wmsvc, domylnym typem uwierzytelniania jest podstawowe (Basic); w innym przypadku domylnym typem uwierzytelniania jest NTLM.
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpOptionalExplainedFlagG">
<source>
/G:<True | False>
Specifies that the package is deployed by creating a temporary listener on the destination server. This requires no special installation on the destination server, but it requires you to be an administrator on that server. The default value of this flag is False.
</source>
<target state="translated">
/G:<True | False>
Okrela, e pakiet jest wdraany przez utworzenie tymczasowego odbiornika na serwerze docelowym. Nie wymaga to specjalnej instalacji na serwerze docelowym, ale uytkownik musi by administratorem na tym serwerze. Domylna warto tej flagi to False.
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpOptionalExplainedFlagL">
<source>
/L
Specifies that the package is deployed to local IISExpress user instance.
</source>
<target state="translated">
/L
Okrela, e pakiet jest wdraany w lokalnym wystpieniu uytkownika programu IISExpress.
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpOptionalExplainedFlagM">
<source>
/M:<Destination server name or Service URL>
If this flag is not specified, the package is installed on the computer where the command is run. The Service URL can be in the following format:
path_to_url
This format requires that IIS 7 be installed on the destination server and that IIS 7 Web Management Service(WMSvc) and Web Deployment Handler be set up.
The service URL can also be in the following format:
path_to_url
This format requires administrative rights on the destination server, and it requires that Web Deploy Remote Service (MsDepSvc) be installed on the destination server. IIS 7 does not have to be installed on the destination server.
</source>
<target state="translated">
/M:<nazwa serwera docelowego lub adres URL usugi>
W przypadku nieokrelenia tej flagi pakiet jest instalowany na komputerze, na ktrym uruchomiono polecenie. Adres URL usugi moe mie nastpujcy format:
path_to_url
Ten format wymaga, aby na serwerze docelowym by zainstalowany program IIS 7 i aby byy skonfigurowane program obsugi wdraania w sieci Web i usuga zarzdzania sieci (WMSvc) programu IIS 7.
Adres URL usugi moe te mie nastpujcy format:
path_to_url
Ten format wymaga praw administracyjnych na serwerze docelowym i zainstalowanej na nim usugi zdalnej narzdzia Web Deploy (MsDepSvc). Program IIS 7 nie musi by zainstalowany na serwerze docelowym.
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpOptionalExplainedFlagUP">
<source>
/U:<UserName>
/P:<Password></source>
<target state="translated">
/U:<nazwa_uytkownika>
/P:<haso></target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpPrerequisites">
<source>
===========================
Prerequisites :
--------------------------
To deploy this Web package, Web Deploy (msdeploy.exe) must be installed on the computer that runs the .cmd file. For information about how to install Web Deploy, see the following URL:
{0}
This batch file requires that the package file "{1}" and optionally provided the parameters file "{2}" in the same folder or destination folder by environment variable.
</source>
<target state="translated">
===========================
Wymagania wstpne:
--------------------------
Aby mona byo wdroy ten pakiet sieci Web, na komputerze, na ktrym bdzie uruchamiany plik cmd, musi by zainstalowane narzdzie Web Deploy (msdeploy.exe). Aby uzyska informacje o tym, jak zainstalowa narzdzie Web Deploy, skorzystaj z nastpujcego adresu URL:
{0}
Ten plik wsadowy wymaga pliku pakietu {1} i podawanego opcjonalnie pliku parametrw {2} w tym samym folderze lub w folderze docelowym na podstawie zmiennej rodowiskowej.
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpRequired">
<source>
===========================
Required Flags:
--------------------------</source>
<target state="translated">
===========================
Flagi wymagane:
--------------------------</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpRequiredExplainedFlagT">
<source>
/T:
Calls msdeploy.exe with the "-whatif" flag, which simulates deployment. This does not deploy the package. Instead, it creates a report of what will happen when you actually deploy the package.</source>
<target state="translated">
/T:
Wywouje program msdeploy.exe z flag -whatif, powodujc zasymulowanie wdroenia. Nie powoduje wdroenia pakietu. Tworzy natomiast raport na temat tego, co si stanie, gdy pakiet zostanie rzeczywicie wdroony.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpRequiredExplainedFlagY">
<source>
/Y:
Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or a destination server. Use /Y after you have verified the output that was generated by using the /T flag.
Note: Do not use /T and /Y in the same command.
</source>
<target state="translated">
/Y:
Wywouje program msdeploy.exe bez flagi -whatif, powodujc wdroenie pakietu na biecym komputerze lub serwerze docelowym. Flagi /Y naley uywa po zweryfikowaniu danych wyjciowych wygenerowanych przy uyciu flagi /T.
Uwaga: flag /T i /Y nie naley uywa w tym samym poleceniu.
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SampleScriptHelpSection1">
<source>
===========================
Usage:
--------------------------
{0} [/T|/Y] [/M:ComputerName] [/U:UserName] [/P:Password] [/G:UseTempAgent] [Additional msdeploy.exe flags ...]
</source>
<target state="translated">
===========================
Skadnia:
--------------------------
{0} [/T|/Y] [/M:nazwa_komputera] [/U:nazwa_uytkownika] [/P:haso] [/G:czy_uy_agenta_tymczasowego] [dodatkowe flagi programu msdeploy.exe...]
</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_SqlCommandVariableParameterDescription">
<source>Sql Command Variable for setting up this application database.</source>
<target state="translated">Zmienna polecenia Sql do konfigurowania tej bazy danych aplikacji.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_StartMsDeployPublishToRemote">
<source>Start Web Deploy Publish the Application/package to {0} ...</source>
<target state="translated">Trwa rozpoczynanie publikowania za pomoc narzdzia Web Deploy aplikacji/pakietu w: {0}...</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_TestDeployPackageOnCurrentMachine">
<source>Test deploy this Web Deploy package onto current machine.</source>
<target state="translated">Testowanie wdraania tego pakietu narzdzia Web Deploy na biecym komputerze.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashormOutputFile">
<source>Transformed {0} using {1} into {2}.</source>
<target state="translated">Przeksztacono {0} w {2} przy uyciu {1}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ValidateErrorMsDeployPublishSetting">
<source>Web Deploy publish/package validating error: Missing or Invalid property value for $({0})</source>
<target state="translated">Bd weryfikacji pakowania/publikowania narzdzia Web Deploy: brakujca lub nieprawidowa warto waciwoci dla $({0})</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_ValidatingMsDeployPublishSettings">
<source>Validating Web Deploy package/publish related properties...</source>
<target state="translated">Trwa weryfikowanie waciwoci powizanych z pakowaniem/publikowaniem narzdzia Web Deploy...</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashublishAndDeployAsIisApp">
<source>Setting both property values of DeployAsIisApp and IncludeIisSettingsOnPublish to true is not recommended, as IncludeIisSettingsOnPublish is a superset of DeployAsIisApp</source>
<target state="translated">Nie zaleca si ustawiania wartoci true jednoczenie dla waciwoci DeployAsIisApp i IncludeIisSettingsOnPublish, poniewa waciwo IncludeIisSettingsOnPublish jest zestawem nadrzdnym waciwoci DeployAsIisApp</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashnIISSettingIsNotInclude">
<source>Setting value to $(RemoteSitePhysicalPath) might not work if IIS setting is not included</source>
<target state="translated">Ustawienie wartoci $(RemoteSitePhysicalPath) moe nie zadziaa, jeli nie doczono ustawienia programu IIS</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashtion">
<source>Connection String used in web.config by the application to access the database.</source>
<target state="translated">Parametry poczenia uywane w pliku web.config przez aplikacj w celu uzyskiwania dostpu do bazy danych.</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashs">
<source>The value for PublishProfile is set to '{0}', expected to find the file at '{1}' but it could not be found.</source>
<target state="translated">Element PublishProfile ma ustawion warto {0}; oczekiwano tego pliku w {1}, ale nie mona go odnale.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishMethodIsNotSupportedInCmdLine">
<source>This specific WebPublishMethod({0}) is not yet supported on msbuild command line. Please use Visual Studio to publish.</source>
<target state="translated">Ta konkretna metoda WebPublishMethod({0}) nie jest jeszcze obsugiwana w wierszu polecenia programu msbuild. Opublikuj za pomoc programu Visual Studio.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelineCollectFilesPhase">
<source>Publish Pipeline Collect Files Phase</source>
<target state="translated">Faza potoku publikowania: zbieranie plikw</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelineCopyWebApplication">
<source>Copying Web Application Project Files for {0} to {1}.</source>
<target state="translated">Kopiowanie plikw projektu aplikacji internetowej dla {0} do {1}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelineDeployPhase">
<source>Publish Pipeline Deploy Phase</source>
<target state="translated">Faza potoku publikowania: wdraanie</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelineDeployPhaseStage1">
<source>Publish Pipeline Deploy phase Stage {0}</source>
<target state="translated">Faza potoku publikowania: wdraanie, etap {0}</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelineMSDeploySettings">
<source>Invoking Web Deploy to generate the package with the following settings:</source>
<target state="translated">Wywoywanie narzdzia Web Deploy w celu wygenerowania pakietu z nastpujcymi ustawieniami:</target>
<note />
</trans-unit>
<trans-unit id=your_sha256_hashmpDir">
<source>Copying all files to temporary location below for package/publish:
{0}.</source>
<target state="translated">Kopiowanie wszystkich plikw do poniszej lokalizacji tymczasowej na potrzeby pakowania/publikowania:
{0}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelinePhase">
<source>Publish Pipeline {0} Phase</source>
<target state="translated">Faza potoku publikowania: {0}</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishPipelineTransformPhase">
<source>Publish Pipeline Transform Phase</source>
<target state="translated">Faza potoku publikowania: przeksztacanie</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishProfileInvalidPropertyValue">
<source>PublishProfile({0}) is set. But the $({1}) does not have a valid value. Current Value is "{2}".</source>
<target state="translated">Element PublishProfile({0}) jest ustawiony. Jednak element $({1}) nie ma prawidowej wartoci. Bieca warto: {2}.</target>
<note />
</trans-unit>
<trans-unit id="PublishLocalizedString_WebPublishValidatePublishProfileSettings">
<source>Validating PublishProfile({0}) settings.</source>
<target state="translated">Weryfikowanie ustawie elementu PublishProfile({0}).</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_AddParameterIntoObject">
<source>Adding Parameter ({0}) with value ({1}) into to object ({2}).</source>
<target state="translated">Dodawanie parametru ({0}) z wartoci ({1}) do obiektu ({2}).</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_Canceled">
<source>User cancel Web deployment operation.</source>
<target state="translated">Uytkownik anulowa operacj wdraania w sieci Web.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_DuplicateItemMetadata">
<source>The following two items have duplicate item metadata %({0}). The two items data are {1} and {2}.</source>
<target state="translated">Dla poniszych dwch elementw istniej zduplikowanie metadane elementw %({0}). Dane tych dwch elementw: {1} i {2}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_EncryptionExceptionMessage">
<source>An IIS secure setting was detected while packaging/publishing. An encryption password is required to proceed.
In Visual Studio, the password can be entered in the project's Package/Publish property page.
In team build or command line, password can be provided by setting MsBuild $(DeployEncryptKey) property.
Error details:</source>
<target state="translated">Podczas pakowania/publikowania wykryto zabezpieczone ustawienie programu IIS. Do kontynuowania jest wymagane haso szyfrowania.
W programie Visual Studio haso mona wprowadzi na stronie waciwoci pakowania/publikowania projektu.
W przypadku uywania wersji Team Build lub wiersza polecenia haso mona poda, ustawiajc waciwo MsBuild $(DeployEncryptKey).
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_FailedDeploy">
<source>Publish failed to deploy.</source>
<target state="translated">Publikowanie: nie mona wdroy.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_FailedPackage">
<source>Package failed.</source>
<target state="translated">Niepowodzenie pakietu.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_FailedWithException">
<source>Web deployment task failed. ({0})</source>
<target state="translated">Niepowodzenie zadania wdraania w sieci Web. ({0})</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_FailedWithExceptionWithDetail">
<source>Web deployment task failed. ({0})
{1}</source>
<target state="translated">Niepowodzenie zadania wdraania w Internecie. ({0})
{1}</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_InvalidOperation">
<source>Source ({0}) and destination ({1}) are not compatible for given operation.</source>
<target state="translated">rdo ({0}) i element docelowy ({1}) s niezgodne w przypadku danej operacji.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_InvalidProviderName">
<source>Provider({0})is not a recognized provider.</source>
<target state="translated">Dostawca ({0})nie jest dostawc rozpoznanym.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_InvalidProviderOption">
<source>Unknown ProviderOption:{0}. Known ProviderOptions are:{1}.</source>
<target state="translated">Nieznana opcja dostawcy: {0}. Znane opcje dostawcy to: {1}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_LoadVSCertUIFailed">
<source>Failed to load publish certificate dialog due to error of {0}</source>
<target state="translated">Nie mona zaadowa okna dialogowego certyfikatu publikowania z powodu bdu ({0}).</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MSDEPLOY32bit">
<source>For x86(32 bit): path_to_url
<target state="translated">Architektura x86 (32-bitowa): path_to_url
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MSDEPLOY64bit">
<source>For x64(64 bit): path_to_url
<target state="translated">Architektura x64 (64-bitowa): path_to_url
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MSDEPLOYASSEMBLYLOAD_FAIL">
<source>Package/Publish task {0} failed to load Web Deploy assemblies. Microsoft Web Deploy is not correctly installed on this machine. Microsoft Web Deploy v3 or higher is recommended.</source>
<target state="translated">Zadanie pakowania/publikowania {0} nie moe zaadowa zestaww narzdzia Web Deploy. Narzdzie Microsoft Web Deploy nie jest poprawnie zainstalowane na tym komputerze. Zalecane jest uywanie narzdzia Microsoft Web Deploy w wersji 3 lub nowszego.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MSDEPLOYLOADFAIL">
<source>Package/Publish depends on Microsoft Web Deploy technology. Microsoft Web Deploy is not correctly installed on this machine. Please install from following link: {0}{1}. ({2})</source>
<target state="translated">Pakowanie/publikowanie jest zalene od technologii Microsoft Web Deploy. Narzdzie Microsoft Web Deploy nie jest poprawnie zainstalowane na tym komputerze. Zainstaluj to oprogramowanie, korzystajc z nastpujcego linku: {0}{1}. ({2})</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MSDEPLOYMinVersion">
<source>Package/Publish depends on Microsoft Web Deployment technology. Microsoft Web Deployment is installed but doesn't meet the minimum version requirement. Please reinstall from following link: {0}{1}. (Current Version:{2}, Minimum Version needed:{3})</source>
<target state="translated">Pakowanie/publikowanie jest zalene od technologii Microsoft Web Deployment. Narzdzie Microsoft Web Deployment jest zainstalowane, ale jego wersja jest starsza ni minimalna wymagana. Zainstaluj ponownie to oprogramowanie, korzystajc z nastpujcego linku: {0}{1}. (Bieca wersja: {2}, minimalna wymagana wersja: {3})</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MSDEPLOYVERSIONLOAD">
<source>Package/Publish task {0} load assembly {1}</source>
<target state="translated">Zadanie pakowania/publikowania {0} aduje zestaw {1}</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MsDeployExceptionFwlink1Message">
<source>Failed to invoke or execute {0} provider on the web server. The Web Deployment Tool's {0} provider is either not enabled or failed to executed specific commands on the server. Please contact your server administrator for assistance. (Web Deploy Provider is "{0}").
Error details:</source>
<target state="translated">Nie mona wywoa lub wykona dostawcy {0} na serwerze internetowym. Dostawca {0} narzdzia Web Deployment albo nie jest wczony, albo nie moe wykona okrelonych polece na serwerze. Popro o pomoc administratora serwera. (Dostawca narzdzia Web Deploy: {0}).
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MsDeployExceptionFwlink1SQLMessage">
<source>Make sure the database connection string for the server is correct and that you have appropriate permission to access the database. (Web Deploy Provider is "{0}").
Error details:</source>
<target state="translated">Upewnij si, e parametry poczenia bazy danych dla serwera s poprawne i e masz odpowiednie uprawnienia dostpu do bazy danych. (Dostawca narzdzia Web Deploy: {0}).
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MsDeployExceptionFwlink1SiteMessage">
<source>Make sure you have appropriate permissions on the server to publish IIS settings. Alternatively, exclude settings that require administrative permissions on the server. (Web Deploy Provider is "{0}").
Error details:</source>
<target state="translated">Upewnij si, e masz na serwerze odpowiednie uprawnienia, aby opublikowa ustawienia programu IIS. Ewentualnie wyklucz ustawienia wymagajce uprawnie administracyjnych na serwerze. (Dostawca narzdzia Web Deploy: {0}).
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MsDeployExceptionFwlink2Message">
<source>Make sure you have appropriate permissions on the server to publish IIS settings. Alternatively, exclude settings that require administrative permission on the server.
Error details:</source>
<target state="translated">Upewnij si, e masz na serwerze odpowiednie uprawnienia, aby opublikowa ustawienia programu IIS. Ewentualnie wyklucz ustawienia wymagajce uprawnie administracyjnych na serwerze.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MsDeployExceptionFwlink3Message">
<source>This can occur if the publish process cannot connect to the database on the server. Make sure the database connection string is correct.
Error details:</source>
<target state="translated">Ten problem moe wystpi, gdy proces publikowania nie moe poczy si z baz danych na serwerze. Upewnij si, e parametry poczenia bazy danych s poprawne.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_MsDeployExceptionFwlink4Message">
<source>Failed to publish the database. This can happen if the remote database cannot run the script. Try modifying the database scripts, or disabling database publishing in the Package/Publish Web properties page. If the script failed due to database tables already exist, try dropping existing database objects before creating new ones. For more information on doing these options from Visual Studio, see path_to_url
Error details:</source>
<target state="translated">Nie mona opublikowa bazy danych. Moe tak si dzia, gdy zdalna baza danych nie moe uruchomi skryptu. Sprbuj zmodyfikowa skrypty bazy danych lub wyczy funkcj publikowania bazy danych na stronie waciwoci pakietu/skadnika Publish Web. Jeli skrypt nie powid si ze wzgldu na istniejce tabele bazy danych, sprbuj usun istniejce obiekty bazy danych przed utworzeniem nowych. Aby uzyska wicej informacji o wykonywaniu tych procedur z poziomu programu Visual Studio, zobacz path_to_url
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_ObjectIdentity">
<source>{0}({1})</source>
<target state="translated">{0}({1})</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_SQLCEMigrationNeedLatestMSDeploy">
<source>Generate schema/data sql scripts from SQLCE require Web Deploy 2.0 and up to function properly. Please install the latest Web Deploy from {0}.</source>
<target state="translated">Do poprawnego dziaania generowania skryptw sql danych/schematu za pomoc oprogramowania SQLCE jest wymagane narzdzie Web Deploy 2.0 lub nowsze. Zainstaluj najnowsze narzdzie Web Deploy z: {0}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_SkipDirectiveSetEnable">
<source>Skip Directive {0} enable state is changed to {1}.</source>
<target state="translated">Stan wczenia dyrektywy pomijania {0} zmieni si na {1}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_Start">
<source>Starting Web deployment task from source: {0} to Destination: {1}.</source>
<target state="translated">Uruchamianie zadania wdraania w sieci Web ze rda: {0} do elementu docelowego: {1}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_SucceedArchiveDir">
<source>Package is successfully created as archive directory at the following location:
{0}</source>
<target state="translated">Pomylnie utworzono pakiet w postaci katalogu archiwum w nastpujcej lokalizacji:
{0}</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_SucceedDeploy">
<source>Publish Succeeded.</source>
<target state="translated">Publikowanie powiodo si.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_SucceedPackage">
<source>Package "{0}" is successfully created as single file at the following location:
{1}</source>
<target state="translated">Pomylnie utworzono pakiet {0} w postaci jednego pliku w nastpujcej lokalizacji:
{1}</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_Succeeded">
<source>Successfully executed Web deployment task.</source>
<target state="translated">Pomylnie wykonano zadanie wdraania w sieci Web.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_UnknownParameter">
<source>Unknown Parameter {0}. Source Known Parameters are: {1}.</source>
<target state="translated">Nieznany parametr: {0}. Znane parametry rda: {1}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_UnknownSkipDirective">
<source>Skip Directive {0} can not be identified.</source>
<target state="translated">Nie mona zidentyfikowa dyrektywy pomijania {0}.</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebException401Message">
<source>Make sure the site name, user name, and password are correct. If the issue is not resolved, please contact your local or server administrator.
Error details:</source>
<target state="translated">Upewnij si, e nazwa witryny, nazwa uytkownika i haso s poprawne. Jeli problemu nie uda si rozwiza, skontaktuj si z administratorem lokalnym lub administratorem serwera.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebException404Message">
<source>The requested resource does not exist, or the requested URL is incorrect.
Error details:</source>
<target state="translated">dany zasb nie istnieje lub dany adres URL jest niepoprany.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebException502Message">
<source>Make sure firewall and network settings on your computer and on the server are configured to allow connections between them. If the issue is not resolved, please contact your local or server administrator.
Error details:</source>
<target state="translated">Upewnij si, e w ustawieniach zapory i sieci na komputerze i na serwerze skonfigurowano zezwalanie na poczenia midzy nimi. Jeli problemu nie uda si rozwiza, skontaktuj si z administratorem lokalnym lub administratorem serwera.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebException550Message">
<source>Make sure the site that you are deploying to is a valid site on the destination server. If the issue is not resolved, please contact your server administrator.
Error details:</source>
<target state="translated">Upewnij si, e witryna, w ktrej wdraasz zawarto, jest prawidow witryn na serwerze docelowym. Jeli problemu nie uda si rozwiza, skontaktuj si z administratorem serwera.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebException551Message">
<source>Make sure the appliction that you are deploying to is a valide application on the destination server. If the issue is not resolved, please contact your server administrator.
Error details:</source>
<target state="translated">Upewnij si, e aplikacja, w ktrej wdraasz zawarto, jest prawidow aplikacj na serwerze docelowym. Jeli problemu nie uda si rozwiza, skontaktuj si z administratorem serwera.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebExceptionConnectFailureMessage">
<source>This error indicates that you cannot connect to the server. Make sure the service URL is correct, firewall and network settings on this computer and on the server computer are configured properly, and the appropriate services have been started on the server.
Error details:</source>
<target state="translated">Ten bd wskazuje na to, e nie mona poczy si z serwerem. Upewnij si, e adres URL usugi jest poprawny, ustawienia zapory i sieci na tym komputerze i na serwerze s poprawnie skonfigurowane oraz e na serwerze uruchomiono odpowiednie usugi.
Szczegy bdu:</target>
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebPackageHelpLink">
<source>path_to_url
<target state="new">path_to_url
<note />
</trans-unit>
<trans-unit id="VSMSDEPLOY_WebPackageHelpLinkMessage">
<source>To get the instructions on how to deploy the web package please visit the following link:</source>
<target state="translated">Aby uzyska instrukcje dotyczce sposobu wdraania pakietu sieci Web, skorzystaj z nastpujcego linku:</target>
<note />
</trans-unit>
<trans-unit id="ValidateParameter_ArgumentNullError">
<source>Property '{0}' must be non-empty.</source>
<target state="translated">Waciwo {0} musi by niepusta.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_AssemblyInfo_Attribute">
<source>Setting {0}</source>
<target state="translated">Ustawienie {0}</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_AssemblyInfo_Failed">
<source>Failed to Generate AssemblyInfo file.</source>
<target state="translated">Nie mona wygenerowa pliku AssemblyInfo.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_AssemblyInfo_Start">
<source>Generating AssemblyInfo.</source>
<target state="translated">Generowanie pliku AssemblyInfo.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_AssemblyInfo_Succeeded">
<source>Successfully generated AssemblyInfo file.</source>
<target state="translated">Pomylnie wygenerowano plik AssemblyInfo.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_MERGE_ApplicationPath">
<source>Missing ApplicationPath parameter (the physical path of the precompiled application).</source>
<target state="translated">Brakuje parametru ApplicationPath (cieki fizycznej wstpnie skompilowanej aplikacji).</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_MERGE_ContentAssemblyName">
<source>ContentAssembly parameter cannot be combined with the Prefix or NameSingleAssemblyName parameter. If specified, the entire application will be merged to a single assembly with the given name.</source>
<target state="translated">Nie mona poczy parametru ContentAssembly z parametrem Prefix lub NameSingleAssemblyName. Jeli zostao to okrelone, caa aplikacja zostanie scalona w jednym zestawie o podanej nazwie.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_MERGE_Failed">
<source>Failed to merge '{0}'.</source>
<target state="translated">Nie mona scali elementu {0}.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_MERGE_SingleAssemblyName">
<source>SingleAssemblyName parameter cannot be combined with the Prefix or ContentAssemblyName parameter. If specified, the entire application will be merged to a single assembly with the given name.</source>
<target state="translated">Nie mona poczy parametru SingleAssemblyName z parametrem Prefix lub ContentAssemblyName. Jeli zostao to okrelone, caa aplikacja zostanie scalona w jednym zestawie o podanej nazwie.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_MERGE_Start">
<source>Running aspnet_merge.exe.</source>
<target state="translated">Uruchamianie programu aspnet_merge.exe.</target>
<note />
</trans-unit>
<trans-unit id="WEBDEPLOY_MERGE_Succeeded">
<source>Successfully merged '{0}'.</source>
<target state="translated">Pomylnie scalono element {0}.</target>
<note />
</trans-unit>
<trans-unit id="WebConfigTransform_HostingModel_Error">
<source>The acceptable value for AspNetCoreHostingModel property is either "InProcess" or "OutOfProcess".</source>
<target state="translated">Dopuszczalna warto waciwoci AspNetCoreHostingModel to InProcess lub OutOfProcess.</target>
<note />
</trans-unit>
<trans-unit id="WebConfigTransform_InvalidHostingOption">
<source>In process hosting is not supported for AspNetCoreModule. Change the AspNetCoreModule to at least AspNetCoreModuleV2.</source>
<target state="translated">Hosting wewntrzprocesowy nie jest obsugiwany dla moduu AspNetCoreModule. Zmie modu AspNetCoreModule na co najmniej AspNetCoreModuleV2.</target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_Check_DeploymentStatus">
<source>Checking the deployment status...</source>
<target state="translated">Trwa sprawdzanie stanu wdroenia...</target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_DeploymentStatus">
<source>Deployment status is {0}.</source>
<target state="translated">Stan wdroenia to {0}.</target>
<note>{0} - Success or failed</note>
</trans-unit>
<trans-unit id="ZIPDEPLOY_DeploymentStatusPolling">
<source>Polling for deployment status...</source>
<target state="translated">Sondowanie stanu wdroenia...</target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_Failed">
<source>Zip Deployment failed. </source>
<target state="translated">Wdroenie pliku ZIP nie powiodo si. </target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_FailedDeploy">
<source>The attempt to publish the ZIP file through '{0}' failed with HTTP status code '{1}'.</source>
<target state="translated">Prba opublikowania pliku ZIP za pomoc adresu URL {0} nie powioda si. Kod stanu HTTP: {1}.</target>
<note>{0} - URL to deploy zip, {1} - HTTP response code</note>
</trans-unit>
<trans-unit id="ZIPDEPLOY_FailedDeployWithLogs">
<source>The attempt to publish the ZIP file through '{0}' failed with HTTP status code '{1}'. See the logs at '{2}'.</source>
<target state="translated">Prba opublikowania pliku ZIP za pomoc polecenia {0} nie powioda si. Kod stanu HTTP: {1}. Zobacz dzienniki pod adresem {2}.</target>
<note>{0} - URL to deploy zip, {1} - HTTP response code, {2} - Logs URL</note>
</trans-unit>
<trans-unit id="ZIPDEPLOY_FailedToRetrieveCred">
<source>Failed to retrieve credentials.</source>
<target state="translated">Nie mona pobra powiadcze.</target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_InvalidSiteNamePublishUrl">
<source>Neither SiteName nor PublishUrl was given a value.</source>
<target state="translated">Nie podano wartoci dla waciwoci SiteName ani PublishUrl.</target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_PublishingZip">
<source>Publishing {0} to {1}...</source>
<target state="translated">Trwa publikowanie {0} do {1}...</target>
<note>{0} - Path of zip to publish, {1} - URL to deploy zip</note>
</trans-unit>
<trans-unit id="ZIPDEPLOY_Succeeded">
<source>Zip Deployment succeeded.</source>
<target state="translated">Wdroenie pliku ZIP powiodo si.</target>
<note />
</trans-unit>
<trans-unit id="ZIPDEPLOY_Uploaded">
<source>Uploaded the Zip file to the target.</source>
<target state="translated">Przekazano plik ZIP do elementu docelowego.</target>
<note />
</trans-unit>
</body>
</file>
</xliff>
```
|
The Staunton–Waynesboro Metropolitan Statistical Area is a United States Metropolitan Statistical Area (MSA) in Virginia, as defined by the Office of Management and Budget (OMB). As of the 2020 census, the MSA had a population of 125,433.
Components
Note: Since a state constitutional change in 1871, all cities in Virginia are independent cities that are not located in any county. The OMB considers these independent cities to be county-equivalents for the purpose of defining μSAs in Virginia.
One county and two independent cities are included in the Staunton–Waynesboro Metropolitan Statistical Area.
Counties
Augusta
Independent Cities
Staunton
Waynesboro
Communities
Cities
Staunton (Principal city)
Waynesboro (Principal city)
Towns
Craigsville
Grottoes (partial)
Census-designated places
Crimora
Dooms
Fishersville
Greenville
Jolivue
Lyndhurst
Sherando
Stuarts Draft
Verona
Weyers Cave
Unincorporated places
Churchville
Fort Defiance
Mount Solon
Spring Hill
Demographics
As of the census of 2010, there were 118,502 people, 47,899 households, and 32,370 families residing within the μSA. The racial makeup of the μSA was 89.4% White, 6.8% African American, 0.2% Native American, 0.6% Asian, 0.1% Pacific Islander, 1.1% from other races, and 1.8% from two or more races. Hispanic or Latino of any race were 2.8% of the population.
The median income for a household in the MSA was $46,292 and the median income for a family was $58,975. Males had a median income of $40,636 versus $31,670 for females. The per capita income for the USA was $21,577.
See also
Virginia census statistical areas
References
Staunton, Virginia
Waynesboro, Virginia
Augusta County, Virginia
|
```javascript
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
'use strict';
// MODULES //
var bench = require( '@stdlib/bench' );
var pow = require( '@stdlib/math/base/special/pow' );
var pkg = require( './../package.json' ).name;
var Uint8ClampedArray = require( './../lib' );
// FUNCTIONS //
/**
* Returns a boolean indicating whether an array element passes a test.
*
* @private
* @param {*} value - value to test
* @returns {boolean} boolean indicating whether an array element passes a test
*/
function predicate( value ) {
return value > 0;
}
/**
* Creates a benchmark function.
*
* @private
* @param {PositiveInteger} len - tuple length
* @returns {Function} benchmark function
*/
function createBenchmark( len ) {
var arr = new Uint8ClampedArray( len );
return benchmark;
/**
* Benchmark function.
*
* @private
* @param {Benchmark} b - benchmark instance
*/
function benchmark( b ) {
var out;
var i;
b.tic();
for ( i = 0; i < b.iterations; i++ ) {
out = arr.find( predicate );
if ( typeof out !== 'undefined' ) {
b.fail( 'should return undefined' );
}
}
b.toc();
if ( typeof out !== 'undefined' ) {
b.fail( 'should return undefined' );
}
b.pass( 'benchmark finished' );
b.end();
}
}
// MAIN //
/**
* Main execution sequence.
*
* @private
*/
function main() {
var len;
var min;
var max;
var f;
var i;
min = 1; // 10^min
max = 6; // 10^max
for ( i = min; i <= max; i++ ) {
len = pow( 10, i );
f = createBenchmark( len );
bench( pkg+':find:len='+len, f );
}
}
main();
```
|
Friedrich IX, Count of Hohenzollern (died between 1377 and 1379), nicknamed "Fredrick the Old" or "the Black Count", was a German nobleman. He was the ruling count of Hohenzollern from 1339 until his death.
Life
He was the second son of Count Friedrich VIII. In 1339, he succeeded his older brother Fritzli II as Count of Hohenzollern.
On 27 July 1342, he closed a treaty of agnatic seniority with the Zollern-Schalksburg line, in which the senior of the two counts should decide who would be the next holder of the original fief of Zollern. As Friedrich commanded a larger military power, he became a captain of the Lion League, an important organisation of Swabian noblemen.
In 1344, Friedrich IX divided the inheritance with his younger brother Friedrich of Strasbourg. Friedrich IX founded the "Black Count" line, which ended with the death of his son Friedrich X in 1412. In 1412, the Strasbourg line founded by his brother inherited the county; they were later raised to Princes of Hohenzollern.
Marriage and issue
In 1341 Fredrick IX married Adelheid (d. after 1385), a daughter of Count Burchard V of Hohenberg-Wildenberg, with whom he had the following children:
Friedrich X, the younger Black Count (d. 1412), Count of Hohenzollern, married Anna of Hohenberg (d. 1421)
Adelheid (d. 1415), married Johann of Stralenberg (d. 1408)
Friedrich "Easter Sunday" III (d. 1407/10)
Anna (d. 1418), a nun in Königsfeld
Sophia (d. 1418), a nun in Stetten
Footnotes
References
Graf Rudolph Stillfried-Alcántara and Traugott Maercker: Hohenzollerische Forschungen, C. Reimarus, 1847, p. 178 ff
E. G. Johler: Geschichte, Land- und Ortskunde der souverainen teutschen Fürstenthümer Hohenzollern Hechingen und Sigmaringen, Stettin'sche Buchhandlung, Ulm, 1824, Online
Gustav Schilling: Geschichte des Hauses Hohenzollern in genealogisch fortlaufenden Biographien aller seiner Regenten von den ältesten bis auf die neuesten Zeiten, nach Urkunden und andern authentischen Quellen, Fleischer, Leipzig, 1843, Online
Counts of Hohenzollern
Year of birth unknown
1370s deaths
Year of death unknown
14th-century German nobility
|
```swift
//
// CoreDataStack.swift
// BookPlayer
//
// Created by Gianni Carlo on 19/2/21.
//
import CoreData
import Foundation
public class CoreDataStack {
private let modelName: String
private let storeUrl: URL
private let storeContainer: NSPersistentContainer
public var managedContext: NSManagedObjectContext {
return self.storeContainer.viewContext
}
public lazy var backgroundContext: NSManagedObjectContext = {
let backgroundContext = self.storeContainer.newBackgroundContext()
backgroundContext.automaticallyMergesChangesFromParent = true
return backgroundContext
}()
public init(modelName: String) {
self.modelName = modelName
let storeUrl = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: Constants.ApplicationGroupIdentifier)!.appendingPathComponent("BookPlayer.sqlite")
self.storeUrl = storeUrl
self.storeContainer = NSPersistentContainer(name: modelName)
let description = NSPersistentStoreDescription()
description.shouldInferMappingModelAutomatically = false
description.shouldMigrateStoreAutomatically = true
description.url = self.storeUrl
self.storeContainer.persistentStoreDescriptions = [description]
}
public init(testPath: String) {
let modelName = "BookPlayer"
self.modelName = modelName
let storeUrl = URL(fileURLWithPath: testPath)
self.storeUrl = storeUrl
self.storeContainer = NSPersistentContainer(name: modelName)
let description = NSPersistentStoreDescription()
description.shouldInferMappingModelAutomatically = false
description.shouldMigrateStoreAutomatically = true
description.url = self.storeUrl
self.storeContainer.persistentStoreDescriptions = [description]
self.storeContainer.loadPersistentStores { _, _ in }
}
public func loadStore(completionHandler: ((NSPersistentStoreDescription, Error?) -> Void)?) {
self.storeContainer.loadPersistentStores { storeDescription, error in
self.storeContainer.viewContext.undoManager = nil
self.storeContainer.viewContext.automaticallyMergesChangesFromParent = true
completionHandler?(storeDescription, error)
}
}
public func saveContext() {
saveContext(managedContext)
}
public func saveContext(_ context: NSManagedObjectContext) {
guard context.hasChanges else { return }
do {
try context.save()
} catch let error as NSError {
fatalError("Unresolved error \(error), \(error.userInfo)")
}
}
}
```
|
```css
/* Taken from the popular Visual Studio Vibrant Ink Schema */
.cm-s-vibrant-ink.CodeMirror { background: black; color: white; }
.cm-s-vibrant-ink div.CodeMirror-selected { background: #35493c; }
.cm-s-vibrant-ink .CodeMirror-line::selection, .cm-s-vibrant-ink .CodeMirror-line > span::selection, .cm-s-vibrant-ink .CodeMirror-line > span > span::selection { background: rgba(53, 73, 60, 0.99); }
.cm-s-vibrant-ink .CodeMirror-line::-moz-selection, .cm-s-vibrant-ink .CodeMirror-line > span::-moz-selection, .cm-s-vibrant-ink .CodeMirror-line > span > span::-moz-selection { background: rgba(53, 73, 60, 0.99); }
.cm-s-vibrant-ink .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
.cm-s-vibrant-ink .CodeMirror-guttermarker { color: white; }
.cm-s-vibrant-ink .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
.cm-s-vibrant-ink .CodeMirror-linenumber { color: #d0d0d0; }
.cm-s-vibrant-ink .CodeMirror-cursor { border-left: 1px solid white; }
.cm-s-vibrant-ink .cm-keyword { color: #CC7832; }
.cm-s-vibrant-ink .cm-atom { color: #FC0; }
.cm-s-vibrant-ink .cm-number { color: #FFEE98; }
.cm-s-vibrant-ink .cm-def { color: #8DA6CE; }
.cm-s-vibrant-ink span.cm-variable-2, .cm-s-vibrant span.cm-tag { color: #FFC66D; }
.cm-s-vibrant-ink span.cm-variable-3, .cm-s-vibrant span.cm-def { color: #FFC66D; }
.cm-s-vibrant-ink .cm-operator { color: #888; }
.cm-s-vibrant-ink .cm-comment { color: gray; font-weight: bold; }
.cm-s-vibrant-ink .cm-string { color: #A5C25C; }
.cm-s-vibrant-ink .cm-string-2 { color: red; }
.cm-s-vibrant-ink .cm-meta { color: #D8FA3C; }
.cm-s-vibrant-ink .cm-builtin { color: #8DA6CE; }
.cm-s-vibrant-ink .cm-tag { color: #8DA6CE; }
.cm-s-vibrant-ink .cm-attribute { color: #8DA6CE; }
.cm-s-vibrant-ink .cm-header { color: #FF6400; }
.cm-s-vibrant-ink .cm-hr { color: #AEAEAE; }
.cm-s-vibrant-ink .cm-link { color: blue; }
.cm-s-vibrant-ink .cm-error { border-bottom: 1px solid red; }
.cm-s-vibrant-ink .CodeMirror-activeline-background { background: #27282E; }
.cm-s-vibrant-ink .CodeMirror-matchingbracket { outline:1px solid grey; color:white !important; }
```
|
```objective-c
//
//
// path_to_url
//
// Unless required by applicable law or agreed to in writing, software
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#pragma once
#include "pybind11/pybind11.h"
#include "pybind11/stl.h"
namespace py = pybind11;
namespace paddle {
namespace pybind {
void BindDataset(py::module* m);
} // namespace pybind
} // namespace paddle
```
|
```php
<?php
namespace strings\str_contains;
function test( string $haystack , string $needle, bool $expected ) {
if( function_exists("str_contains") ) {
echo str_contains($haystack, $needle) ? 1 : 0;
}
else {
echo $expected ? 1 : 0;
}
echo PHP_EOL;
}
test('abc', 'a', true);
test('abc', 'd', false);
test('abc', 'bc', true);
test('abc', 'abcdef', false);
// $needle is an empty string
test('abc', '', true);
test('', '', true);
//
echo "Done.";
```
|
Jason Suecof (born April 3, 1980) is an American record producer, audio engineer and guitarist best known for his work with heavy metal bands such as Trivium, Battlecross, Death Angel, All That Remains, Bury Your Dead, The Black Dahlia Murder, and The Autumn Offering. In addition, Suecof also has been the guitarist for heavy metal bands Capharnaum and Charred Walls of the Damned.
Career
He produces most of his albums at his own Orlando, Florida-based studio, Audio Hammer. He has produced and/or mixed bands such as Austrian Death Machine, Death Angel, Battlecross, Chelsea Grin, All That Remains, Motionless in White, Bury Your Dead, August Burns Red, The Black Dahlia Murder, Dååth, The Autumn Offering, Luna Mortis, Chimaira, DevilDriver, God Forbid, If Hope Dies, Trivium, Job for a Cowboy, Whitechapel, Mutiny Within, Dir En Grey, Sanctity. and Odd Crew. Suecof has been a member of the technical death metal band Capharnaum, as well as the comic project Crotchduster (under the alias of Fornicus 'Fuckmouth' McFlappy). In 2010, he joined up with Howard Stern Show writer Richard Christy's (Ex-Iced Earth) new project, Charred Walls of the Damned as their guitarist. Suecof is in a wheelchair due to spinal meningitis at age two, though he makes light of his condition and retains a sense of humor about it.
Production discography
References
External links
Audio Hammer Myspace page
1980 births
Heavy metal producers
Living people
American musicians with disabilities
Charred Walls of the Damned members
Capharnaum (band) members
|
James Richard Baird (born June 4, 1945) is an American businessman and politician who serves as the U.S. representative from Indiana's . Before being elected to Congress, Baird served from 2010 to 2018 as a member of the Indiana House of Representatives and as a Putnam County commissioner from 2006 to 2010. A Vietnam veteran, Baird was elected to Congress on November 6, 2018.
Early life and education
Baird graduated from Turkey Run High School in 1963, participating in 4-H and Future Farmers of America. He obtained a Bachelor of Science in animal science from Purdue University in 1967 and a Master's of Science in animal science from Purdue in 1969. After the Vietnam War, Baird earned a PhD in animal science monogastric nutrition from the University of Kentucky in 1975.
Military service
Baird served in the ROTC at Purdue University from 1963 to 1965. He attended the Officer Candidate School Class 2–70 at Fort Benning and Jungle Warfare School in Panama from 1969 to 1970, and was commissioned in the Infantry. The United States Army was sending infantry divisions home when Second Lieutenant Baird arrived in Vietnam in 1970. Because of the excess of Infantry officers, he was assigned to the 523rd Transportation Company (Light Truck) at Cha Rang Valley. Baird and the other officers were highly respected by the men because they shared the same risks and burdens.
The truck companies of the 8th Transportation Group delivered cargo along the most heavily ambushed road in Vietnam, QL19, through the Central Highlands in northern II Corps Tactical Zone. The 523rd had five 5-ton gun trucks at the time. The Group Commander considered the 523rd his best truck company and when instructed to send two light truck companies north to I Corps Tactical Zone for the upcoming Laotian Incursion, Operation Lam Son 719, in February through April 1971, he chose to send his best. The 523rd was attached to the 39th Transportation Battalion and stationed at the abandoned Marine Corps base Camp Vandergrift. During the two-and-a-half-month incursion into Laos, the North Vietnamese Army tried to close down the supply route with 23 convoy ambushes. Baird fought in two of the operation's deadliest ambushes and lost his left arm during the convoy ambush on March 12, 1971. He earned a Bronze Star and two Purple Hearts. In 2012, the 523rd Transportation Company was inducted into the Transportation Corps Hall of Fame for its heroism during Operation Lam Son 719.
Baird was fondly nicknamed "pig farmer" by fellow infantrymen because of his passion for breeding pigs.
Badges, medals, and ribbons
Combat Infantry Badge
Bronze Star with valor "V" device
Purple Heart with Oak Leaf Cluster
Vietnam Service Medal
Army Commendation Medal with valor "V" device
National Defense Service Medal
Meritorious Unit Commendation
Vietnam Campaign Medal with 60 Device
Vietnam Cross of Gallantry with Palm for valorous combat achievement
Vietnam Civil Actions Medal
Expert Rifleman
Jungle Expert Badge
Career
Baird is the owner and operator of Baird Family Farms and Indiana Home Care Plus. He previously worked as an animal nutritionist at Landmark Cooperative, a feed manufacturer, as director of sales and nutrition at Agmax, and as a livestock specialist for Purdue University Cooperative Extension Service.
Baird ran for Putnam County commissioner in 2006 and defeated the incumbent, Dennis O'Hair, in the primary. He represented Marion Township, Greencastle Township, Madison Township, and Clinton Township. He served as commissioner for the second district until his election to the State House in 2010. He was succeeded by Nancy Fogle. The American Conservative Union gave him a lifetime legislative evaluation of 82% in 2017.
Indiana House of Representatives
Baird represented House District 44, including Putnam County and portions of Clay, Morgan, Owen, and Parke counties, from 2010 until 2018. He served as a member of the Ways and Means Committee—chairing the Health and Medicaid Subcommittee—the Agriculture and Rural Development Committee, Veteran Affairs and Public Safety, the Environmental Affairs Committee, and the Statutory Committee on Ethics.
U.S. House of Representatives
Elections
2018
Baird ran for Indiana's 4th congressional district in 2018. The seat was vacated by Todd Rokita in his unsuccessful run for U.S. Senate. Baird won the May 8 Republican primary and the November 6 general election.
2020
Baird was reelected in 2020 with 66.6% of the vote.
2022
Baird was reelected in 2022 with 68.2% of the vote.
Tenure
Baird was the second-oldest member of the 116th Congress freshman class, after Democrat Donna Shalala, who was born in 1941.
In December 2020, Baird was one of 126 Republican members of the House of Representatives to sign an amicus brief in support of Texas v. Pennsylvania, a lawsuit filed at the United States Supreme Court contesting the results of the 2020 presidential election, in which Joe Biden defeated incumbent Donald Trump. The Supreme Court declined to hear the case on the basis that Texas lacked standing under Article III of the Constitution to challenge the results of an election held by another state.
Baird is one of three deployed Vietnam War veterans currently serving in the House, the others being Jack Bergman and Mike Thompson.
Baird voted to provide Israel with support following 2023 Hamas attack on Israel.
Committee assignments
For the 118th Congress:
Committee on Agriculture
Subcommittee on Conservation, Research, and Biotechnology (Chairman)
Subcommittee on Livestock, Dairy, and Poultry
Subcommittee on Nutrition, Foreign Agriculture, and Horticulture
Committee on Foreign Affairs
Subcommittee on Africa
Subcommittee on the Middle East, North Africa and Central Asia
Committee on Science, Space, and Technology
Subcommittee on Energy
Subcommittee on Research and Technology
Caucus membership
Congressional Western Caucus
Republican Study Committee
Electoral history
Personal life
Baird's son, Beau, was elected chair of the Putnam County Republican Party in March 2017. Beau ran to replace him in the Indiana House of Representatives. Beau won the election on November 6, 2018.
Baird resides in Greencastle. Baird has attended Gobin United Methodist Church in Greencastle since 1975.
References
External links
Congressman Jim Baird official U.S. House website
Campaign website
James Baird at Ballotpedia
Our Campaigns – Representative James Baird (IN) profile
|-
|-
|-
1945 births
21st-century American politicians
American amputees
American politicians with disabilities
County commissioners in Indiana
Living people
People from Greencastle, Indiana
Purdue University College of Agriculture alumni
Republican Party members of the Indiana House of Representatives
Republican Party members of the United States House of Representatives from Indiana
United States Army officers
United States Army personnel of the Vietnam War
University of Kentucky alumni
|
```kotlin
/*
*/
package splitties.preferences
import platform.Foundation.NSNumber
import platform.Foundation.NSUserDefaults
internal actual fun NSUserDefaults.setLong(value: Long, forKey: String) {
setObject(value = NSNumber(longLong = value), forKey = forKey)
}
internal actual fun NSUserDefaults.setInt(value: Int, forKey: String) {
setInteger(value = value, forKey = forKey)
}
internal actual fun NSUserDefaults.longForKey(key: String): Long {
return (objectForKey(key) as NSNumber).longLongValue
}
internal actual fun NSUserDefaults.intForKey(key: String): Int = integerForKey(key)
```
|
```smalltalk
using System;
namespace Volo.Abp.BlobStoring.Aliyun;
/// <summary>
/// Sub-account access to OSS or STS temporary authorization to access OSS
/// </summary>
public class AliyunBlobProviderConfiguration
{
public string AccessKeyId {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.AccessKeyId);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.AccessKeyId, Check.NotNullOrWhiteSpace(value, nameof(value)));
}
public string AccessKeySecret {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.AccessKeySecret);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.AccessKeySecret, Check.NotNullOrWhiteSpace(value, nameof(value)));
}
public string Endpoint {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.Endpoint);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.Endpoint, Check.NotNullOrWhiteSpace(value, nameof(value)));
}
public bool UseSecurityTokenService {
get => _containerConfiguration.GetConfigurationOrDefault(AliyunBlobProviderConfigurationNames.UseSecurityTokenService, false);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.UseSecurityTokenService, value);
}
public string RegionId {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.RegionId);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.RegionId, value);
}
/// <summary>
/// acs:ram::$accountID:role/$roleName
/// </summary>
public string RoleArn {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.RoleArn);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.RoleArn, value);
}
/// <summary>
/// The name used to identify the temporary access credentials, it is recommended to use different application users to distinguish.
/// </summary>
public string RoleSessionName {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.RoleSessionName);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.RoleSessionName, value);
}
/// <summary>
/// Set the validity period of the temporary access credential, the unit is s, the minimum is 900, and the maximum is 3600.
/// </summary>
public int DurationSeconds {
get => _containerConfiguration.GetConfigurationOrDefault(AliyunBlobProviderConfigurationNames.DurationSeconds, 0);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.DurationSeconds, value);
}
/// <summary>
/// If policy is empty, the user will get all permissions under this role
/// </summary>
public string Policy {
get => _containerConfiguration.GetConfiguration<string>(AliyunBlobProviderConfigurationNames.Policy);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.Policy, value);
}
/// <summary>
/// This name may only contain lowercase letters, numbers, and hyphens, and must begin with a letter or a number.
/// Each hyphen must be preceded and followed by a non-hyphen character.
/// The name must also be between 3 and 63 characters long.
/// If this parameter is not specified, the ContainerName of the <see cref="BlobProviderArgs"/> will be used.
/// </summary>
public string? ContainerName {
get => _containerConfiguration.GetConfigurationOrDefault<string>(AliyunBlobProviderConfigurationNames.ContainerName);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.ContainerName, value);
}
/// <summary>
/// Default value: false.
/// </summary>
public bool CreateContainerIfNotExists {
get => _containerConfiguration.GetConfigurationOrDefault(AliyunBlobProviderConfigurationNames.CreateContainerIfNotExists, false);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.CreateContainerIfNotExists, value);
}
private readonly string _temporaryCredentialsCacheKey;
public string? TemporaryCredentialsCacheKey {
get => _containerConfiguration.GetConfigurationOrDefault(AliyunBlobProviderConfigurationNames.TemporaryCredentialsCacheKey, _temporaryCredentialsCacheKey);
set => _containerConfiguration.SetConfiguration(AliyunBlobProviderConfigurationNames.TemporaryCredentialsCacheKey, value);
}
private readonly BlobContainerConfiguration _containerConfiguration;
public AliyunBlobProviderConfiguration(BlobContainerConfiguration containerConfiguration)
{
_containerConfiguration = containerConfiguration;
_temporaryCredentialsCacheKey = Guid.NewGuid().ToString("N");
}
}
```
|
```c++
/**
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include "BitUtil.h"
#include <stdexcept>
namespace facebook {
namespace gorilla {
void BitUtil::addValueToBitString(
uint64_t value,
uint64_t bitsInValue,
folly::fbstring& bitString,
uint32_t& numBits) {
uint32_t bitsAvailable = (numBits & 0x7) ? (8 - (numBits & 0x7)) : 0;
numBits += bitsInValue;
if (bitsInValue <= bitsAvailable) {
// Everything fits inside the last byte
bitString[bitString.length() - 1] +=
(value << (bitsAvailable - bitsInValue));
return;
}
uint32_t bitsLeft = bitsInValue;
if (bitsAvailable > 0) {
// Fill up the last byte
bitString[bitString.length() - 1] +=
(value >> (bitsInValue - bitsAvailable));
bitsLeft -= bitsAvailable;
}
while (bitsLeft >= 8) {
// Enough bits for a dedicated byte
char ch = (value >> (bitsLeft - 8)) & 0xFF;
bitString += ch;
bitsLeft -= 8;
}
if (bitsLeft != 0) {
// Start a new byte with the rest of the bits
char ch = (value & ((1 << bitsLeft) - 1)) << (8 - bitsLeft);
bitString += ch;
}
}
uint64_t BitUtil::readValueFromBitString(
folly::StringPiece data,
uint64_t& bitPos,
uint32_t bitsToRead) {
if (bitPos + bitsToRead > data.size() * 8) {
throw std::runtime_error("Trying to read too many bits");
}
uint64_t value = 0;
for (int i = 0; i < bitsToRead; i++) {
value <<= 1;
uint64_t bit = (data.data()[bitPos >> 3] >> (7 - (bitPos & 0x7))) & 1;
value += bit;
bitPos++;
}
return value;
}
uint32_t BitUtil::findTheFirstZeroBit(
folly::StringPiece data,
uint64_t& bitPos,
uint32_t limit) {
uint32_t bits = 0;
while (bits < limit) {
uint32_t bit = BitUtil::readValueFromBitString(data, bitPos, 1);
if (bit == 0) {
return bits;
}
bits++;
}
return bits;
}
uint32_t BitUtil::readValueThroughFirstZero(
folly::StringPiece data,
uint64_t& bitPos,
uint32_t limit) {
uint32_t value = 0;
for (uint32_t bits = 0; bits < limit; bits++) {
uint32_t bit = BitUtil::readValueFromBitString(data, bitPos, 1);
value = (value << 1) + bit;
if (bit == 0) {
return value;
}
}
return value;
}
}
} // facebook::gorilla
```
|
```objective-c
/**************************************************************************\
*
*
* Module Name:
*
* GdiplusFlat.h
*
* Abstract:
*
* Flat GDI+ API wrappers - header file
*
\**************************************************************************/
// TODO: this file style needs to be made internally consistent with the way
// it handles breaking the long argument lists across multiple lines
#ifndef _FLATAPI_H
#define _FLATAPI_H
#define WINGDIPAPI __stdcall
// currently, only C++ wrapper API's force const.
#define GDIPCONST const
#ifdef __cplusplus
extern "C" {
#endif
#ifndef DCR_USE_NEW_175866
VOID
WINGDIPAPI
GdipDisplayPaletteWindowNotify(WindowNotifyEnum notify);
#endif
//your_sha256_hash------------
// GraphicsPath methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreatePath(GpFillMode brushMode, GpPath **path);
GpStatus WINGDIPAPI
GdipCreatePath2(GDIPCONST GpPointF*, GDIPCONST BYTE*, INT, GpFillMode,
GpPath **path);
GpStatus WINGDIPAPI
GdipCreatePath2I(GDIPCONST GpPoint*, GDIPCONST BYTE*, INT, GpFillMode,
GpPath **path);
GpStatus WINGDIPAPI
GdipClonePath(GpPath* path, GpPath **clonePath);
GpStatus WINGDIPAPI
GdipDeletePath(GpPath* path);
GpStatus WINGDIPAPI
GdipResetPath(GpPath* path);
GpStatus WINGDIPAPI
GdipGetPointCount(GpPath* path, INT* count);
GpStatus WINGDIPAPI
GdipGetPathTypes(GpPath* path, BYTE* types, INT count);
GpStatus WINGDIPAPI
GdipGetPathPoints(GpPath*, GpPointF* points, INT count);
GpStatus WINGDIPAPI
GdipGetPathPointsI(GpPath*, GpPoint* points, INT count);
GpStatus WINGDIPAPI
GdipGetPathFillMode(GpPath *path, GpFillMode *fillmode);
GpStatus WINGDIPAPI
GdipSetPathFillMode(GpPath *path, GpFillMode fillmode);
GpStatus WINGDIPAPI
GdipGetPathData(GpPath *path, GpPathData* pathData);
GpStatus WINGDIPAPI
GdipStartPathFigure(GpPath *path);
GpStatus WINGDIPAPI
GdipClosePathFigure(GpPath *path);
GpStatus WINGDIPAPI
GdipClosePathFigures(GpPath *path);
GpStatus WINGDIPAPI
GdipSetPathMarker(GpPath* path);
GpStatus WINGDIPAPI
GdipClearPathMarkers(GpPath* path);
GpStatus WINGDIPAPI
GdipReversePath(GpPath* path);
GpStatus WINGDIPAPI
GdipGetPathLastPoint(GpPath* path, GpPointF* lastPoint);
GpStatus WINGDIPAPI
GdipAddPathLine(GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2);
GpStatus WINGDIPAPI
GdipAddPathLine2(GpPath *path, GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathArc(GpPath *path, REAL x, REAL y, REAL width, REAL height,
REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipAddPathBezier(GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2,
REAL x3, REAL y3, REAL x4, REAL y4);
GpStatus WINGDIPAPI
GdipAddPathBeziers(GpPath *path, GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathCurve(GpPath *path, GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathCurve2(GpPath *path, GDIPCONST GpPointF *points, INT count,
REAL tension);
GpStatus WINGDIPAPI
GdipAddPathCurve3(GpPath *path, GDIPCONST GpPointF *points, INT count,
INT offset, INT numberOfSegments, REAL tension);
GpStatus WINGDIPAPI
GdipAddPathClosedCurve(GpPath *path, GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathClosedCurve2(GpPath *path, GDIPCONST GpPointF *points, INT count,
REAL tension);
GpStatus WINGDIPAPI
GdipAddPathRectangle(GpPath *path, REAL x, REAL y, REAL width, REAL height);
GpStatus WINGDIPAPI
GdipAddPathRectangles(GpPath *path, GDIPCONST GpRectF *rects, INT count);
GpStatus WINGDIPAPI
GdipAddPathEllipse(GpPath *path, REAL x, REAL y, REAL width,
REAL height);
GpStatus WINGDIPAPI
GdipAddPathPie(GpPath *path, REAL x, REAL y, REAL width, REAL height,
REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipAddPathPolygon(GpPath *path, GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathPath(GpPath *path, GDIPCONST GpPath* addingPath, BOOL connect);
GpStatus WINGDIPAPI
GdipAddPathString(GpPath *path, GDIPCONST WCHAR *string,
INT length, GDIPCONST GpFontFamily *family, INT style,
REAL emSize, GDIPCONST RectF *layoutRect,
GDIPCONST GpStringFormat *format);
GpStatus WINGDIPAPI
GdipAddPathStringI(GpPath *path, GDIPCONST WCHAR *string,
INT length, GDIPCONST GpFontFamily *family, INT style,
REAL emSize, GDIPCONST Rect *layoutRect,
GDIPCONST GpStringFormat *format);
GpStatus WINGDIPAPI
GdipAddPathLineI(GpPath *path, INT x1, INT y1, INT x2, INT y2);
GpStatus WINGDIPAPI
GdipAddPathLine2I(GpPath *path, GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathArcI(GpPath *path, INT x, INT y, INT width, INT height,
REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipAddPathBezierI(GpPath *path, INT x1, INT y1, INT x2, INT y2,
INT x3, INT y3, INT x4, INT y4);
GpStatus WINGDIPAPI
GdipAddPathBeziersI(GpPath *path, GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathCurveI(GpPath *path, GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathCurve2I(GpPath *path, GDIPCONST GpPoint *points, INT count,
REAL tension);
GpStatus WINGDIPAPI
GdipAddPathCurve3I(GpPath *path, GDIPCONST GpPoint *points, INT count,
INT offset, INT numberOfSegments, REAL tension);
GpStatus WINGDIPAPI
GdipAddPathClosedCurveI(GpPath *path, GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipAddPathClosedCurve2I(GpPath *path, GDIPCONST GpPoint *points, INT count,
REAL tension);
GpStatus WINGDIPAPI
GdipAddPathRectangleI(GpPath *path, INT x, INT y, INT width, INT height);
GpStatus WINGDIPAPI
GdipAddPathRectanglesI(GpPath *path, GDIPCONST GpRect *rects, INT count);
GpStatus WINGDIPAPI
GdipAddPathEllipseI(GpPath *path, INT x, INT y, INT width, INT height);
GpStatus WINGDIPAPI
GdipAddPathPieI(GpPath *path, INT x, INT y, INT width, INT height,
REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipAddPathPolygonI(GpPath *path, GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipFlattenPath(GpPath *path, GpMatrix* matrix, REAL flatness);
GpStatus WINGDIPAPI
GdipWindingModeOutline(
GpPath *path,
GpMatrix *matrix,
REAL flatness
);
#ifdef DCR_USE_NEW_202903
GpStatus WINGDIPAPI
GdipWidenPath(
GpPath *nativePath,
GpPen *pen,
GpMatrix *matrix,
REAL flatness
);
#else
GpStatus WINGDIPAPI
GdipWidenPathWithMinimumResolutions(GpPath *path, GpPen *pen, REAL minXres,
REAL minYres, GpMatrix *matrix, BOOL removeSelftIntersects);
#endif
GpStatus WINGDIPAPI
GdipWarpPath(GpPath *path, GpMatrix* matrix,
GDIPCONST GpPointF *points, INT count,
REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
WarpMode warpMode, REAL flatness);
GpStatus WINGDIPAPI
GdipTransformPath(GpPath* path, GpMatrix* matrix);
GpStatus WINGDIPAPI
GdipGetPathWorldBounds(GpPath* path, GpRectF* bounds, GDIPCONST GpMatrix *matrix,
GDIPCONST GpPen *pen);
GpStatus WINGDIPAPI
GdipGetPathWorldBoundsI(GpPath* path, GpRect* bounds, GDIPCONST GpMatrix *matrix,
GDIPCONST GpPen *pen);
GpStatus WINGDIPAPI
GdipIsVisiblePathPoint(GpPath* path, REAL x, REAL y,
GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisiblePathPointI(GpPath* path, INT x, INT y,
GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsOutlineVisiblePathPoint(GpPath* path, REAL x, REAL y, GpPen *pen,
GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsOutlineVisiblePathPointI(GpPath* path, INT x, INT y, GpPen *pen,
GpGraphics *graphics, BOOL *result);
//your_sha256_hash------------
// Path Enumeration methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreatePathIter(GpPathIterator **iterator, GpPath* path);
GpStatus WINGDIPAPI
GdipDeletePathIter(GpPathIterator *iterator);
GpStatus WINGDIPAPI
GdipPathIterNextSubpath(GpPathIterator* iterator, INT *resultCount,
INT* startIndex, INT* endIndex, BOOL* isClosed);
GpStatus WINGDIPAPI
GdipPathIterNextSubpathPath(GpPathIterator* iterator, INT* resultCount,
GpPath* path, BOOL* isClosed);
GpStatus WINGDIPAPI
GdipPathIterNextPathType(GpPathIterator* iterator, INT* resultCount,
BYTE* pathType, INT* startIndex, INT* endIndex);
GpStatus WINGDIPAPI
GdipPathIterNextMarker(GpPathIterator* iterator, INT *resultCount,
INT* startIndex, INT* endIndex);
GpStatus WINGDIPAPI
GdipPathIterNextMarkerPath(GpPathIterator* iterator, INT* resultCount,
GpPath* path);
GpStatus WINGDIPAPI
GdipPathIterGetCount(GpPathIterator* iterator, INT* count);
GpStatus WINGDIPAPI
GdipPathIterGetSubpathCount(GpPathIterator* iterator, INT* count);
GpStatus WINGDIPAPI
GdipPathIterIsValid(GpPathIterator* iterator, BOOL* valid);
GpStatus WINGDIPAPI
GdipPathIterHasCurve(GpPathIterator* iterator, BOOL* hasCurve);
GpStatus WINGDIPAPI
GdipPathIterRewind(GpPathIterator* iterator);
GpStatus WINGDIPAPI
GdipPathIterEnumerate(GpPathIterator* iterator, INT* resultCount,
GpPointF *points, BYTE *types, INT count);
GpStatus WINGDIPAPI
GdipPathIterCopyData(GpPathIterator* iterator, INT* resultCount,
GpPointF* points, BYTE* types, INT startIndex, INT endIndex);
//your_sha256_hash------------
// Matrix methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateMatrix(GpMatrix **matrix);
GpStatus WINGDIPAPI
GdipCreateMatrix2(REAL m11, REAL m12, REAL m21, REAL m22, REAL dx,
REAL dy, GpMatrix **matrix);
GpStatus WINGDIPAPI
GdipCreateMatrix3(GDIPCONST GpRectF *rect, GDIPCONST GpPointF *dstplg,
GpMatrix **matrix);
GpStatus WINGDIPAPI
GdipCreateMatrix3I(GDIPCONST GpRect *rect, GDIPCONST GpPoint *dstplg,
GpMatrix **matrix);
GpStatus WINGDIPAPI
GdipCloneMatrix(GpMatrix *matrix, GpMatrix **cloneMatrix);
GpStatus WINGDIPAPI
GdipDeleteMatrix(GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipSetMatrixElements(GpMatrix *matrix, REAL m11, REAL m12, REAL m21, REAL m22,
REAL dx, REAL dy);
GpStatus WINGDIPAPI
GdipMultiplyMatrix(GpMatrix *matrix, GpMatrix* matrix2,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipTranslateMatrix(GpMatrix *matrix, REAL offsetX, REAL offsetY,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipScaleMatrix(GpMatrix *matrix, REAL scaleX, REAL scaleY,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipRotateMatrix(GpMatrix *matrix, REAL angle, GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipShearMatrix(GpMatrix *matrix, REAL shearX, REAL shearY,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipInvertMatrix(GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipTransformMatrixPoints(GpMatrix *matrix, GpPointF *pts, INT count);
GpStatus WINGDIPAPI
GdipTransformMatrixPointsI(GpMatrix *matrix, GpPoint *pts, INT count);
GpStatus WINGDIPAPI
GdipVectorTransformMatrixPoints(GpMatrix *matrix, GpPointF *pts,
INT count);
GpStatus WINGDIPAPI
GdipVectorTransformMatrixPointsI(GpMatrix *matrix, GpPoint *pts,
INT count);
GpStatus WINGDIPAPI
GdipGetMatrixElements(GDIPCONST GpMatrix *matrix, REAL *matrixOut);
GpStatus WINGDIPAPI
GdipIsMatrixInvertible(GDIPCONST GpMatrix *matrix, BOOL *result);
GpStatus WINGDIPAPI
GdipIsMatrixIdentity(GDIPCONST GpMatrix *matrix, BOOL *result);
GpStatus WINGDIPAPI
GdipIsMatrixEqual(GDIPCONST GpMatrix *matrix, GDIPCONST GpMatrix *matrix2, BOOL *result);
//your_sha256_hash------------
// Region methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateRegion(GpRegion **region);
GpStatus WINGDIPAPI
GdipCreateRegionRect(GDIPCONST GpRectF *rect, GpRegion **region);
GpStatus WINGDIPAPI
GdipCreateRegionRectI(GDIPCONST GpRect *rect, GpRegion **region);
GpStatus WINGDIPAPI
GdipCreateRegionPath(GpPath *path, GpRegion **region);
GpStatus WINGDIPAPI
GdipCreateRegionRgnData(GDIPCONST BYTE *regionData, INT size, GpRegion **region);
GpStatus WINGDIPAPI
GdipCreateRegionHrgn(HRGN hRgn, GpRegion **region);
GpStatus WINGDIPAPI
GdipCloneRegion(GpRegion *region, GpRegion **cloneRegion);
GpStatus WINGDIPAPI
GdipDeleteRegion(GpRegion *region);
GpStatus WINGDIPAPI
GdipSetInfinite(GpRegion *region);
GpStatus WINGDIPAPI
GdipSetEmpty(GpRegion *region);
GpStatus WINGDIPAPI
GdipCombineRegionRect(GpRegion *region, GDIPCONST GpRectF *rect,
CombineMode combineMode);
GpStatus WINGDIPAPI
GdipCombineRegionRectI(GpRegion *region, GDIPCONST GpRect *rect,
CombineMode combineMode);
GpStatus WINGDIPAPI
GdipCombineRegionPath(GpRegion *region, GpPath *path, CombineMode combineMode);
GpStatus WINGDIPAPI
GdipCombineRegionRegion(GpRegion *region, GpRegion *region2,
CombineMode combineMode);
GpStatus WINGDIPAPI
GdipTranslateRegion(GpRegion *region, REAL dx, REAL dy);
GpStatus WINGDIPAPI
GdipTranslateRegionI(GpRegion *region, INT dx, INT dy);
GpStatus WINGDIPAPI
GdipTransformRegion(GpRegion *region, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipGetRegionBounds(GpRegion *region, GpGraphics *graphics,
GpRectF *rect);
GpStatus WINGDIPAPI
GdipGetRegionBoundsI(GpRegion *region, GpGraphics *graphics,
GpRect *rect);
GpStatus WINGDIPAPI
GdipGetRegionHRgn(GpRegion *region, GpGraphics *graphics, HRGN *hRgn);
GpStatus WINGDIPAPI
GdipIsEmptyRegion(GpRegion *region, GpGraphics *graphics,
BOOL *result);
GpStatus WINGDIPAPI
GdipIsInfiniteRegion(GpRegion *region, GpGraphics *graphics,
BOOL *result);
GpStatus WINGDIPAPI
GdipIsEqualRegion(GpRegion *region, GpRegion *region2,
GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipGetRegionDataSize(GpRegion *region, UINT * bufferSize);
GpStatus WINGDIPAPI
GdipGetRegionData(GpRegion *region, BYTE * buffer, UINT bufferSize, UINT * sizeFilled);
GpStatus WINGDIPAPI
GdipIsVisibleRegionPoint(GpRegion *region, REAL x, REAL y,
GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisibleRegionPointI(GpRegion *region, INT x, INT y,
GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisibleRegionRect(GpRegion *region, REAL x, REAL y, REAL width,
REAL height, GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisibleRegionRectI(GpRegion *region, INT x, INT y, INT width,
INT height, GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipGetRegionScansCount(GpRegion *region, UINT* count, GpMatrix* matrix);
GpStatus WINGDIPAPI
GdipGetRegionScans(GpRegion *region, GpRectF* rects, INT* count, GpMatrix* matrix);
GpStatus WINGDIPAPI
GdipGetRegionScansI(GpRegion *region, GpRect* rects, INT* count, GpMatrix* matrix);
//your_sha256_hash------------
// Brush methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCloneBrush(GpBrush *brush, GpBrush **cloneBrush);
GpStatus WINGDIPAPI
GdipDeleteBrush(GpBrush *brush);
GpStatus WINGDIPAPI
GdipGetBrushType(GpBrush *brush, GpBrushType *type);
//your_sha256_hash------------
// Hatch Brush methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateHatchBrush(GpHatchStyle hatchstyle, ARGB forecol,
ARGB backcol, GpHatch **brush);
GpStatus WINGDIPAPI
GdipGetHatchStyle(GpHatch *brush, GpHatchStyle *hatchstyle);
GpStatus WINGDIPAPI
GdipGetHatchForegroundColor(GpHatch *brush, ARGB* forecol);
GpStatus WINGDIPAPI
GdipGetHatchBackgroundColor(GpHatch *brush, ARGB* backcol);
//your_sha256_hash------------
// Texture Brush methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateTexture(GpImage *image, GpWrapMode wrapmode,
GpTexture **texture);
GpStatus WINGDIPAPI
GdipCreateTexture2(GpImage *image, GpWrapMode wrapmode, REAL x,
REAL y, REAL width, REAL height, GpTexture **texture);
GpStatus WINGDIPAPI
GdipCreateTextureIA(GpImage *image, GDIPCONST GpImageAttributes *imageAttributes,
REAL x, REAL y, REAL width, REAL height,
GpTexture **texture);
GpStatus WINGDIPAPI
GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode, INT x,
INT y, INT width, INT height, GpTexture **texture);
GpStatus WINGDIPAPI
GdipCreateTextureIAI(GpImage *image, GDIPCONST GpImageAttributes *imageAttributes,
INT x, INT y, INT width, INT height,
GpTexture **texture);
GpStatus WINGDIPAPI
GdipGetTextureTransform(GpTexture *brush, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipSetTextureTransform(GpTexture *brush, GDIPCONST GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipResetTextureTransform(GpTexture* brush);
GpStatus WINGDIPAPI
GdipMultiplyTextureTransform(GpTexture* brush, GDIPCONST GpMatrix *matrix,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipTranslateTextureTransform(GpTexture* brush, REAL dx, REAL dy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipScaleTextureTransform(GpTexture* brush, REAL sx, REAL sy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipRotateTextureTransform(GpTexture* brush, REAL angle, GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipSetTextureWrapMode(GpTexture *brush, GpWrapMode wrapmode);
GpStatus WINGDIPAPI
GdipGetTextureWrapMode(GpTexture *brush, GpWrapMode *wrapmode);
GpStatus WINGDIPAPI
GdipGetTextureImage(GpTexture *brush, GpImage **image);
//your_sha256_hash------------
// Solid Brush methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateSolidFill(ARGB color, GpSolidFill **brush);
GpStatus WINGDIPAPI
GdipSetSolidFillColor(GpSolidFill *brush, ARGB color);
GpStatus WINGDIPAPI
GdipGetSolidFillColor(GpSolidFill *brush, ARGB *color);
//your_sha256_hash------------
// LineBrush methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateLineBrush(GDIPCONST GpPointF* point1,
GDIPCONST GpPointF* point2,
ARGB color1, ARGB color2,
GpWrapMode wrapMode,
GpLineGradient **lineGradient);
GpStatus WINGDIPAPI
GdipCreateLineBrushI(GDIPCONST GpPoint* point1,
GDIPCONST GpPoint* point2,
ARGB color1, ARGB color2,
GpWrapMode wrapMode,
GpLineGradient **lineGradient);
GpStatus WINGDIPAPI
GdipCreateLineBrushFromRect(GDIPCONST GpRectF* rect,
ARGB color1, ARGB color2,
LinearGradientMode mode,
GpWrapMode wrapMode,
GpLineGradient **lineGradient);
GpStatus WINGDIPAPI
GdipCreateLineBrushFromRectI(GDIPCONST GpRect* rect,
ARGB color1, ARGB color2,
LinearGradientMode mode,
GpWrapMode wrapMode,
GpLineGradient **lineGradient);
GpStatus WINGDIPAPI
GdipCreateLineBrushFromRectWithAngle(GDIPCONST GpRectF* rect,
ARGB color1, ARGB color2,
REAL angle,
BOOL isAngleScalable,
GpWrapMode wrapMode,
GpLineGradient **lineGradient);
GpStatus WINGDIPAPI
GdipCreateLineBrushFromRectWithAngleI(GDIPCONST GpRect* rect,
ARGB color1, ARGB color2,
REAL angle,
BOOL isAngleScalable,
GpWrapMode wrapMode,
GpLineGradient **lineGradient);
GpStatus WINGDIPAPI
GdipSetLinePoints(GpLineGradient *brush,
GDIPCONST GpPointF* point1,
GDIPCONST GpPointF* point2);
GpStatus WINGDIPAPI
GdipSetLinePointsI(GpLineGradient *brush,
GDIPCONST GpPoint* point1,
GDIPCONST GpPoint* point2);
GpStatus WINGDIPAPI
GdipGetLinePoints(GpLineGradient *brush, GpPointF* points);
GpStatus WINGDIPAPI
GdipGetLinePointsI(GpLineGradient *brush, GpPoint* points);
GpStatus WINGDIPAPI
GdipSetLineColors(GpLineGradient *brush, ARGB color1, ARGB color2);
GpStatus WINGDIPAPI
GdipGetLineColors(GpLineGradient *brush, ARGB* colors);
GpStatus WINGDIPAPI
GdipGetLineRect(GpLineGradient *brush, GpRectF *rect);
GpStatus WINGDIPAPI
GdipGetLineRectI(GpLineGradient *brush, GpRect *rect);
GpStatus WINGDIPAPI
GdipSetLineGammaCorrection(GpLineGradient *brush, BOOL useGammaCorrection);
GpStatus WINGDIPAPI
GdipGetLineGammaCorrection(GpLineGradient *brush, BOOL *useGammaCorrection);
GpStatus WINGDIPAPI
GdipGetLineBlendCount(GpLineGradient *brush, INT *count);
GpStatus WINGDIPAPI
GdipGetLineBlend(GpLineGradient *brush, REAL *blend, REAL* positions,
INT count);
GpStatus WINGDIPAPI
GdipSetLineBlend(GpLineGradient *brush, GDIPCONST REAL *blend,
GDIPCONST REAL* positions, INT count);
GpStatus WINGDIPAPI
GdipGetLinePresetBlendCount(GpLineGradient *brush, INT *count);
GpStatus WINGDIPAPI
GdipGetLinePresetBlend(GpLineGradient *brush, ARGB *blend,
REAL* positions, INT count);
GpStatus WINGDIPAPI
GdipSetLinePresetBlend(GpLineGradient *brush, GDIPCONST ARGB *blend,
GDIPCONST REAL* positions, INT count);
GpStatus WINGDIPAPI
GdipSetLineSigmaBlend(GpLineGradient *brush, REAL focus, REAL scale);
GpStatus WINGDIPAPI
GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus, REAL scale);
GpStatus WINGDIPAPI
GdipSetLineWrapMode(GpLineGradient *brush, GpWrapMode wrapmode);
GpStatus WINGDIPAPI
GdipGetLineWrapMode(GpLineGradient *brush, GpWrapMode *wrapmode);
GpStatus WINGDIPAPI
GdipGetLineTransform(GpLineGradient *brush, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipSetLineTransform(GpLineGradient *brush, GDIPCONST GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipResetLineTransform(GpLineGradient* brush);
GpStatus WINGDIPAPI
GdipMultiplyLineTransform(GpLineGradient* brush, GDIPCONST GpMatrix *matrix,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipTranslateLineTransform(GpLineGradient* brush, REAL dx, REAL dy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipScaleLineTransform(GpLineGradient* brush, REAL sx, REAL sy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipRotateLineTransform(GpLineGradient* brush, REAL angle, GpMatrixOrder order);
//your_sha256_hash------------
// PathGradient Brush
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreatePathGradient(GDIPCONST GpPointF* points,
INT count,
GpWrapMode wrapMode,
GpPathGradient **polyGradient);
GpStatus WINGDIPAPI
GdipCreatePathGradientI(GDIPCONST GpPoint* points,
INT count,
GpWrapMode wrapMode,
GpPathGradient **polyGradient);
GpStatus WINGDIPAPI
GdipCreatePathGradientFromPath(GDIPCONST GpPath* path,
GpPathGradient **polyGradient);
GpStatus WINGDIPAPI
GdipGetPathGradientCenterColor(
GpPathGradient *brush, ARGB* colors);
GpStatus WINGDIPAPI
GdipSetPathGradientCenterColor(
GpPathGradient *brush, ARGB colors);
GpStatus WINGDIPAPI
GdipGetPathGradientSurroundColorsWithCount(
GpPathGradient *brush, ARGB* color, INT* count);
GpStatus WINGDIPAPI
GdipSetPathGradientSurroundColorsWithCount(
GpPathGradient *brush,
GDIPCONST ARGB* color, INT* count);
GpStatus WINGDIPAPI
GdipGetPathGradientPath(GpPathGradient *brush, GpPath *path);
GpStatus WINGDIPAPI
GdipSetPathGradientPath(GpPathGradient *brush, GDIPCONST GpPath *path);
GpStatus WINGDIPAPI
GdipGetPathGradientCenterPoint(
GpPathGradient *brush, GpPointF* points);
GpStatus WINGDIPAPI
GdipGetPathGradientCenterPointI(
GpPathGradient *brush, GpPoint* points);
GpStatus WINGDIPAPI
GdipSetPathGradientCenterPoint(
GpPathGradient *brush, GDIPCONST GpPointF* points);
GpStatus WINGDIPAPI
GdipSetPathGradientCenterPointI(
GpPathGradient *brush, GDIPCONST GpPoint* points);
GpStatus WINGDIPAPI
GdipGetPathGradientRect(GpPathGradient *brush, GpRectF *rect);
GpStatus WINGDIPAPI
GdipGetPathGradientRectI(GpPathGradient *brush, GpRect *rect);
GpStatus WINGDIPAPI
GdipGetPathGradientPointCount(GpPathGradient *brush, INT* count);
GpStatus WINGDIPAPI
GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT* count);
GpStatus WINGDIPAPI
GdipSetPathGradientGammaCorrection(GpPathGradient *brush, BOOL useGammaCorrection);
GpStatus WINGDIPAPI
GdipGetPathGradientGammaCorrection(GpPathGradient *brush, BOOL *useGammaCorrection);
GpStatus WINGDIPAPI
GdipGetPathGradientBlendCount(GpPathGradient *brush,
INT *count);
GpStatus WINGDIPAPI
GdipGetPathGradientBlend(GpPathGradient *brush,
REAL *blend, REAL *positions, INT count);
GpStatus WINGDIPAPI
GdipSetPathGradientBlend(GpPathGradient *brush,
GDIPCONST REAL *blend, GDIPCONST REAL *positions, INT count);
GpStatus WINGDIPAPI
GdipGetPathGradientPresetBlendCount(GpPathGradient *brush, INT *count);
GpStatus WINGDIPAPI
GdipGetPathGradientPresetBlend(GpPathGradient *brush, ARGB *blend,
REAL* positions, INT count);
GpStatus WINGDIPAPI
GdipSetPathGradientPresetBlend(GpPathGradient *brush, GDIPCONST ARGB *blend,
GDIPCONST REAL* positions, INT count);
GpStatus WINGDIPAPI
GdipSetPathGradientSigmaBlend(GpPathGradient *brush, REAL focus, REAL scale);
GpStatus WINGDIPAPI
GdipSetPathGradientLinearBlend(GpPathGradient *brush, REAL focus, REAL scale);
GpStatus WINGDIPAPI
GdipGetPathGradientWrapMode(GpPathGradient *brush,
GpWrapMode *wrapmode);
GpStatus WINGDIPAPI
GdipSetPathGradientWrapMode(GpPathGradient *brush,
GpWrapMode wrapmode);
GpStatus WINGDIPAPI
GdipGetPathGradientTransform(GpPathGradient *brush,
GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipSetPathGradientTransform(GpPathGradient *brush,
GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipResetPathGradientTransform(GpPathGradient* brush);
GpStatus WINGDIPAPI
GdipMultiplyPathGradientTransform(GpPathGradient* brush, GDIPCONST GpMatrix *matrix,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipTranslatePathGradientTransform(GpPathGradient* brush, REAL dx, REAL dy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipScalePathGradientTransform(GpPathGradient* brush, REAL sx, REAL sy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipRotatePathGradientTransform(GpPathGradient* brush, REAL angle,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipGetPathGradientFocusScales(GpPathGradient *brush, REAL* xScale, REAL* yScale);
GpStatus WINGDIPAPI
GdipSetPathGradientFocusScales(GpPathGradient *brush, REAL xScale, REAL yScale);
//your_sha256_hash------------
// Pen methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreatePen1(ARGB color, REAL width, GpUnit unit, GpPen **pen);
GpStatus WINGDIPAPI
GdipCreatePen2(GpBrush *brush, REAL width, GpUnit unit,
GpPen **pen);
GpStatus WINGDIPAPI
GdipClonePen(GpPen *pen, GpPen **clonepen);
GpStatus WINGDIPAPI
GdipDeletePen(GpPen *pen);
GpStatus WINGDIPAPI
GdipSetPenWidth(GpPen *pen, REAL width);
GpStatus WINGDIPAPI
GdipGetPenWidth(GpPen *pen, REAL *width);
GpStatus WINGDIPAPI
GdipSetPenUnit(GpPen *pen, GpUnit unit);
GpStatus WINGDIPAPI
GdipGetPenUnit(GpPen *pen, GpUnit *unit);
#ifdef DCR_USE_NEW_197819
GpStatus WINGDIPAPI
GdipSetPenLineCap197819(GpPen *pen, GpLineCap startCap, GpLineCap endCap,
GpDashCap dashCap);
#else
GpStatus WINGDIPAPI
GdipSetPenLineCap(GpPen *pen, GpLineCap startCap, GpLineCap endCap,
GpLineCap dashCap);
#endif // DCR_USE_NEW_197819
GpStatus WINGDIPAPI
GdipSetPenStartCap(GpPen *pen, GpLineCap startCap);
GpStatus WINGDIPAPI
GdipSetPenEndCap(GpPen *pen, GpLineCap endCap);
#ifdef DCR_USE_NEW_197819
GpStatus WINGDIPAPI
GdipSetPenDashCap197819(GpPen *pen, GpDashCap dashCap);
#else
GpStatus WINGDIPAPI
GdipSetPenDashCap(GpPen *pen, GpLineCap dashCap);
#endif // DCR_USE_NEW_197819
GpStatus WINGDIPAPI
GdipGetPenStartCap(GpPen *pen, GpLineCap *startCap);
GpStatus WINGDIPAPI
GdipGetPenEndCap(GpPen *pen, GpLineCap *endCap);
#ifdef DCR_USE_NEW_197819
GpStatus WINGDIPAPI
GdipGetPenDashCap197819(GpPen *pen, GpDashCap *dashCap);
#else
GpStatus WINGDIPAPI
GdipGetPenDashCap(GpPen *pen, GpLineCap *dashCap);
#endif // DCR_USE_NEW_197819
GpStatus WINGDIPAPI
GdipSetPenLineJoin(GpPen *pen, GpLineJoin lineJoin);
GpStatus WINGDIPAPI
GdipGetPenLineJoin(GpPen *pen, GpLineJoin *lineJoin);
GpStatus WINGDIPAPI
GdipSetPenCustomStartCap(GpPen *pen, GpCustomLineCap* customCap);
GpStatus WINGDIPAPI
GdipGetPenCustomStartCap(GpPen *pen, GpCustomLineCap** customCap);
GpStatus WINGDIPAPI
GdipSetPenCustomEndCap(GpPen *pen, GpCustomLineCap* customCap);
GpStatus WINGDIPAPI
GdipGetPenCustomEndCap(GpPen *pen, GpCustomLineCap** customCap);
GpStatus WINGDIPAPI
GdipSetPenMiterLimit(GpPen *pen, REAL miterLimit);
GpStatus WINGDIPAPI
GdipGetPenMiterLimit(GpPen *pen, REAL *miterLimit);
GpStatus WINGDIPAPI
GdipSetPenMode(GpPen *pen, GpPenAlignment penMode);
GpStatus WINGDIPAPI
GdipGetPenMode(GpPen *pen, GpPenAlignment *penMode);
GpStatus WINGDIPAPI
GdipSetPenTransform(GpPen *pen, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipGetPenTransform(GpPen *pen, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipResetPenTransform(GpPen *pen);
GpStatus WINGDIPAPI
GdipMultiplyPenTransform(GpPen *pen, GDIPCONST GpMatrix *matrix,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipTranslatePenTransform(GpPen *pen, REAL dx, REAL dy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipRotatePenTransform(GpPen *pen, REAL angle, GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipSetPenColor(GpPen *pen, ARGB argb);
GpStatus WINGDIPAPI
GdipGetPenColor(GpPen *pen, ARGB *argb);
GpStatus WINGDIPAPI
GdipSetPenBrushFill(GpPen *pen, GpBrush *brush);
GpStatus WINGDIPAPI
GdipGetPenBrushFill(GpPen *pen, GpBrush **brush);
GpStatus WINGDIPAPI
GdipGetPenFillType(GpPen *pen, GpPenType* type);
GpStatus WINGDIPAPI
GdipGetPenDashStyle(GpPen *pen, GpDashStyle *dashstyle);
GpStatus WINGDIPAPI
GdipSetPenDashStyle(GpPen *pen, GpDashStyle dashstyle);
GpStatus WINGDIPAPI
GdipGetPenDashOffset(GpPen *pen, REAL *offset);
GpStatus WINGDIPAPI
GdipSetPenDashOffset(GpPen *pen, REAL offset);
GpStatus WINGDIPAPI
GdipGetPenDashCount(GpPen *pen, INT *count);
GpStatus WINGDIPAPI
GdipSetPenDashArray(GpPen *pen, GDIPCONST REAL *dash, INT count);
GpStatus WINGDIPAPI
GdipGetPenDashArray(GpPen *pen, REAL *dash, INT count);
GpStatus WINGDIPAPI
GdipGetPenCompoundCount(GpPen *pen, INT *count);
GpStatus WINGDIPAPI
GdipSetPenCompoundArray(GpPen *pen, GDIPCONST REAL *dash, INT count);
GpStatus WINGDIPAPI
GdipGetPenCompoundArray(GpPen *pen, REAL *dash, INT count);
//your_sha256_hash------------
// CustomLineCap methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateCustomLineCap(GpPath* fillPath, GpPath* strokePath,
GpLineCap baseCap, REAL baseInset, GpCustomLineCap **customCap);
GpStatus WINGDIPAPI
GdipDeleteCustomLineCap(GpCustomLineCap* customCap);
GpStatus WINGDIPAPI
GdipCloneCustomLineCap(GpCustomLineCap* customCap,
GpCustomLineCap** clonedCap);
GpStatus WINGDIPAPI
GdipGetCustomLineCapType(GpCustomLineCap* customCap,
CustomLineCapType* capType);
GpStatus WINGDIPAPI
GdipSetCustomLineCapStrokeCaps(GpCustomLineCap* customCap,
GpLineCap startCap, GpLineCap endCap);
GpStatus WINGDIPAPI
GdipGetCustomLineCapStrokeCaps(GpCustomLineCap* customCap,
GpLineCap* startCap, GpLineCap* endCap);
GpStatus WINGDIPAPI
GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* customCap, GpLineJoin lineJoin);
GpStatus WINGDIPAPI
GdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap, GpLineJoin* lineJoin);
GpStatus WINGDIPAPI
GdipSetCustomLineCapBaseCap(GpCustomLineCap* customCap, GpLineCap baseCap);
GpStatus WINGDIPAPI
GdipGetCustomLineCapBaseCap(GpCustomLineCap* customCap, GpLineCap* baseCap);
GpStatus WINGDIPAPI
GdipSetCustomLineCapBaseInset(GpCustomLineCap* customCap, REAL inset);
GpStatus WINGDIPAPI
GdipGetCustomLineCapBaseInset(GpCustomLineCap* customCap, REAL* inset);
GpStatus WINGDIPAPI
GdipSetCustomLineCapWidthScale(GpCustomLineCap* customCap, REAL widthScale);
GpStatus WINGDIPAPI
GdipGetCustomLineCapWidthScale(GpCustomLineCap* customCap, REAL* widthScale);
//your_sha256_hash------------
// AdjustableArrowCap methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateAdjustableArrowCap(REAL height, REAL width, BOOL isFilled,
GpAdjustableArrowCap **cap);
GpStatus WINGDIPAPI
GdipSetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap, REAL height);
GpStatus WINGDIPAPI
GdipGetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap, REAL* height);
GpStatus WINGDIPAPI
GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap, REAL width);
GpStatus WINGDIPAPI
GdipGetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap, REAL* width);
GpStatus WINGDIPAPI
GdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap, REAL middleInset);
GpStatus WINGDIPAPI
GdipGetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap, REAL* middleInset);
GpStatus WINGDIPAPI
GdipSetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap, BOOL fillState);
GpStatus WINGDIPAPI
GdipGetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap, BOOL* fillState);
//your_sha256_hash------------
// Image methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipLoadImageFromStream(IStream* stream, GpImage **image);
GpStatus WINGDIPAPI
GdipLoadImageFromFile(GDIPCONST WCHAR* filename, GpImage **image);
GpStatus WINGDIPAPI
GdipLoadImageFromStreamICM(IStream* stream, GpImage **image);
GpStatus WINGDIPAPI
GdipLoadImageFromFileICM(GDIPCONST WCHAR* filename, GpImage **image);
GpStatus WINGDIPAPI
GdipCloneImage(GpImage *image, GpImage **cloneImage);
GpStatus WINGDIPAPI
GdipDisposeImage(GpImage *image);
GpStatus WINGDIPAPI
GdipSaveImageToFile(GpImage *image, GDIPCONST WCHAR* filename,
GDIPCONST CLSID* clsidEncoder, GDIPCONST EncoderParameters* encoderParams);
GpStatus WINGDIPAPI
GdipSaveImageToStream(GpImage *image, IStream* stream,
GDIPCONST CLSID* clsidEncoder, GDIPCONST EncoderParameters* encoderParams);
GpStatus WINGDIPAPI
GdipSaveAdd(GpImage *image, GDIPCONST EncoderParameters* encoderParams);
GpStatus WINGDIPAPI
GdipSaveAddImage(GpImage *image, GpImage* newImage,
GDIPCONST EncoderParameters* encoderParams);
GpStatus WINGDIPAPI
GdipGetImageGraphicsContext(GpImage *image, GpGraphics **graphics);
GpStatus WINGDIPAPI
GdipGetImageBounds(GpImage *image, GpRectF *srcRect, GpUnit *srcUnit);
GpStatus WINGDIPAPI
GdipGetImageDimension(GpImage *image, REAL *width, REAL *height);
GpStatus WINGDIPAPI
GdipGetImageType(GpImage *image, ImageType *type);
GpStatus WINGDIPAPI
GdipGetImageWidth(GpImage *image, UINT *width);
GpStatus WINGDIPAPI
GdipGetImageHeight(GpImage *image, UINT *height);
GpStatus WINGDIPAPI
GdipGetImageHorizontalResolution(GpImage *image, REAL *resolution);
GpStatus WINGDIPAPI
GdipGetImageVerticalResolution(GpImage *image, REAL *resolution);
GpStatus WINGDIPAPI
GdipGetImageFlags(GpImage *image, UINT *flags);
GpStatus WINGDIPAPI
GdipGetImageRawFormat(GpImage *image, GUID *format);
GpStatus WINGDIPAPI
GdipGetImagePixelFormat(GpImage *image, PixelFormat *format);
GpStatus WINGDIPAPI
GdipGetImageThumbnail(GpImage *image, UINT thumbWidth, UINT thumbHeight,
GpImage **thumbImage,
GetThumbnailImageAbort callback, VOID * callbackData);
GpStatus WINGDIPAPI
GdipGetEncoderParameterListSize(GpImage *image, GDIPCONST CLSID* clsidEncoder,
UINT* size);
GpStatus WINGDIPAPI
GdipGetEncoderParameterList(GpImage *image, GDIPCONST CLSID* clsidEncoder,
UINT size, EncoderParameters* buffer);
GpStatus WINGDIPAPI
GdipImageGetFrameDimensionsCount(GpImage* image, UINT* count);
GpStatus WINGDIPAPI
GdipImageGetFrameDimensionsList(GpImage* image, GUID* dimensionIDs, UINT count);
GpStatus WINGDIPAPI
GdipImageGetFrameCount(GpImage *image, GDIPCONST GUID* dimensionID, UINT* count);
GpStatus WINGDIPAPI
GdipImageSelectActiveFrame(GpImage *image, GDIPCONST GUID* dimensionID,
UINT frameIndex);
GpStatus WINGDIPAPI
GdipImageRotateFlip(GpImage *image, RotateFlipType rfType);
GpStatus WINGDIPAPI
GdipGetImagePalette(GpImage *image, ColorPalette *palette, INT size);
GpStatus WINGDIPAPI
GdipSetImagePalette(GpImage *image, GDIPCONST ColorPalette *palette);
GpStatus WINGDIPAPI
GdipGetImagePaletteSize(GpImage *image, INT *size);
GpStatus WINGDIPAPI
GdipGetPropertyCount(GpImage *image, UINT* numOfProperty);
GpStatus WINGDIPAPI
GdipGetPropertyIdList(GpImage *image, UINT numOfProperty, PROPID* list);
GpStatus WINGDIPAPI
GdipGetPropertyItemSize(GpImage *image, PROPID propId, UINT* size);
GpStatus WINGDIPAPI
GdipGetPropertyItem(GpImage *image, PROPID propId,UINT propSize,
PropertyItem* buffer);
GpStatus WINGDIPAPI
GdipGetPropertySize(GpImage *image, UINT* totalBufferSize, UINT* numProperties);
GpStatus WINGDIPAPI
GdipGetAllPropertyItems(GpImage *image, UINT totalBufferSize,
UINT numProperties, PropertyItem* allItems);
GpStatus WINGDIPAPI
GdipRemovePropertyItem(GpImage *image, PROPID propId);
GpStatus WINGDIPAPI
GdipSetPropertyItem(GpImage *image, GDIPCONST PropertyItem* item);
GpStatus WINGDIPAPI
GdipImageForceValidation(GpImage *image);
GpStatus WINGDIPAPI
GdipGetImageLayout(GpImage *image, ImageLayout* layout);
GpStatus WINGDIPAPI
GdipSetImageLayout(GpImage *image, GDIPCONST ImageLayout layout);
//your_sha256_hash------------
// Bitmap methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateBitmapFromStream(IStream* stream, GpBitmap **bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromFile(GDIPCONST WCHAR* filename, GpBitmap **bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromStreamICM(IStream* stream, GpBitmap **bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromFileICM(GDIPCONST WCHAR* filename, GpBitmap **bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromScan0(INT width,
INT height,
INT stride,
PixelFormat format,
BYTE* scan0,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromGraphics(INT width,
INT height,
GpGraphics* target,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromDirectDrawSurface(IDirectDrawSurface7* surface,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromGdiDib(GDIPCONST BITMAPINFO* gdiBitmapInfo,
VOID* gdiBitmapData,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCreateBitmapFromHBITMAP(HBITMAP hbm,
HPALETTE hpal,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCreateHBITMAPFromBitmap(GpBitmap* bitmap,
HBITMAP* hbmReturn,
ARGB background);
GpStatus WINGDIPAPI
GdipCreateBitmapFromHICON(HICON hicon,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCreateHICONFromBitmap(GpBitmap* bitmap,
HICON* hbmReturn);
GpStatus WINGDIPAPI
GdipCreateBitmapFromResource(HINSTANCE hInstance,
GDIPCONST WCHAR* lpBitmapName,
GpBitmap** bitmap);
GpStatus WINGDIPAPI
GdipCloneBitmapArea(REAL x, REAL y, REAL width, REAL height,
PixelFormat format,
GpBitmap *srcBitmap,
GpBitmap **dstBitmap);
GpStatus WINGDIPAPI
GdipCloneBitmapAreaI(INT x,
INT y,
INT width,
INT height,
PixelFormat format,
GpBitmap *srcBitmap,
GpBitmap **dstBitmap);
GpStatus WINGDIPAPI
GdipBitmapLockBits(GpBitmap* bitmap,
GDIPCONST GpRect* rect,
UINT flags,
PixelFormat format,
BitmapData* lockedBitmapData);
GpStatus WINGDIPAPI
GdipBitmapUnlockBits(GpBitmap* bitmap,
BitmapData* lockedBitmapData);
GpStatus WINGDIPAPI
GdipBitmapGetPixel(GpBitmap* bitmap, INT x, INT y, ARGB *color);
GpStatus WINGDIPAPI
GdipBitmapSetPixel(GpBitmap* bitmap, INT x, INT y, ARGB color);
GpStatus WINGDIPAPI
GdipBitmapSetResolution(GpBitmap* bitmap, REAL xdpi, REAL ydpi);
//your_sha256_hash------------
// ImageAttributes methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateImageAttributes(GpImageAttributes **imageattr);
GpStatus WINGDIPAPI
GdipCloneImageAttributes(GDIPCONST GpImageAttributes *imageattr,
GpImageAttributes **cloneImageattr);
GpStatus WINGDIPAPI
GdipDisposeImageAttributes(GpImageAttributes *imageattr);
GpStatus WINGDIPAPI
GdipSetImageAttributesToIdentity(GpImageAttributes *imageattr,
ColorAdjustType type);
GpStatus WINGDIPAPI
GdipResetImageAttributes(GpImageAttributes *imageattr,
ColorAdjustType type);
GpStatus WINGDIPAPI
GdipSetImageAttributesColorMatrix(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
GDIPCONST ColorMatrix* colorMatrix,
GDIPCONST ColorMatrix* grayMatrix,
ColorMatrixFlags flags);
GpStatus WINGDIPAPI
GdipSetImageAttributesThreshold(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
REAL threshold);
GpStatus WINGDIPAPI
GdipSetImageAttributesGamma(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
REAL gamma);
GpStatus WINGDIPAPI
GdipSetImageAttributesNoOp(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag);
GpStatus WINGDIPAPI
GdipSetImageAttributesColorKeys(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
ARGB colorLow,
ARGB colorHigh);
GpStatus WINGDIPAPI
GdipSetImageAttributesOutputChannel(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
ColorChannelFlags channelFlags);
GpStatus WINGDIPAPI
GdipSetImageAttributesOutputChannelColorProfile(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
GDIPCONST WCHAR *colorProfileFilename);
GpStatus WINGDIPAPI
GdipSetImageAttributesRemapTable(GpImageAttributes *imageattr,
ColorAdjustType type,
BOOL enableFlag,
UINT mapSize,
GDIPCONST ColorMap *map);
GpStatus WINGDIPAPI
GdipSetImageAttributesWrapMode(
GpImageAttributes *imageAttr,
WrapMode wrap,
ARGB argb,
BOOL clamp
);
GpStatus WINGDIPAPI
GdipSetImageAttributesICMMode(
GpImageAttributes *imageAttr,
BOOL on
);
GpStatus WINGDIPAPI
GdipGetImageAttributesAdjustedPalette(
GpImageAttributes *imageAttr,
ColorPalette * colorPalette,
ColorAdjustType colorAdjustType
);
//your_sha256_hash------------
// Graphics methods
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipFlush(GpGraphics *graphics, GpFlushIntention intention);
GpStatus WINGDIPAPI
GdipCreateFromHDC(HDC hdc, GpGraphics **graphics);
GpStatus WINGDIPAPI
GdipCreateFromHDC2(HDC hdc, HANDLE hDevice, GpGraphics **graphics);
GpStatus WINGDIPAPI
GdipCreateFromHWND(HWND hwnd, GpGraphics **graphics);
GpStatus WINGDIPAPI
GdipCreateFromHWNDICM(HWND hwnd, GpGraphics **graphics);
GpStatus WINGDIPAPI
GdipDeleteGraphics(GpGraphics *graphics);
GpStatus WINGDIPAPI
GdipGetDC(GpGraphics* graphics, HDC * hdc);
GpStatus WINGDIPAPI
GdipReleaseDC(GpGraphics* graphics, HDC hdc);
GpStatus WINGDIPAPI
GdipSetCompositingMode(GpGraphics *graphics, CompositingMode compositingMode);
GpStatus WINGDIPAPI
GdipGetCompositingMode(GpGraphics *graphics, CompositingMode *compositingMode);
GpStatus WINGDIPAPI
GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y);
GpStatus WINGDIPAPI
GdipGetRenderingOrigin(GpGraphics *graphics, INT *x, INT *y);
GpStatus WINGDIPAPI
GdipSetCompositingQuality(GpGraphics *graphics, CompositingQuality compositingQuality);
GpStatus WINGDIPAPI
GdipGetCompositingQuality(GpGraphics *graphics, CompositingQuality *compositingQuality);
GpStatus WINGDIPAPI
GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode smoothingMode);
GpStatus WINGDIPAPI
GdipGetSmoothingMode(GpGraphics *graphics, SmoothingMode *smoothingMode);
GpStatus WINGDIPAPI
GdipSetPixelOffsetMode(GpGraphics* graphics, PixelOffsetMode pixelOffsetMode);
GpStatus WINGDIPAPI
GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode *pixelOffsetMode);
GpStatus WINGDIPAPI
GdipSetTextRenderingHint(GpGraphics *graphics, TextRenderingHint mode);
GpStatus WINGDIPAPI
GdipGetTextRenderingHint(GpGraphics *graphics, TextRenderingHint *mode);
#ifdef DCR_USE_NEW_188922
GpStatus WINGDIPAPI
GdipSetTextContrast(GpGraphics *graphics, UINT contrast);
GpStatus WINGDIPAPI
GdipGetTextContrast(GpGraphics *graphics, UINT * contrast);
#else
GpStatus WINGDIPAPI
GdipSetTextGammaValue(GpGraphics *graphics, UINT gammaValue);
GpStatus WINGDIPAPI
GdipGetTextGammaValue(GpGraphics *graphics, UINT * gammaValue);
#endif // DCR_USE_NEW_188922
GpStatus WINGDIPAPI
GdipSetInterpolationMode(GpGraphics *graphics, InterpolationMode interpolationMode);
GpStatus WINGDIPAPI
GdipGetInterpolationMode(GpGraphics *graphics, InterpolationMode *interpolationMode);
GpStatus WINGDIPAPI
GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipResetWorldTransform(GpGraphics *graphics);
GpStatus WINGDIPAPI
GdipMultiplyWorldTransform(GpGraphics *graphics, GDIPCONST GpMatrix *matrix,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx, REAL dy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipScaleWorldTransform(GpGraphics *graphics, REAL sx, REAL sy,
GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipRotateWorldTransform(GpGraphics *graphics, REAL angle, GpMatrixOrder order);
GpStatus WINGDIPAPI
GdipGetWorldTransform(GpGraphics *graphics, GpMatrix *matrix);
GpStatus WINGDIPAPI
GdipResetPageTransform(GpGraphics *graphics);
GpStatus WINGDIPAPI
GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit);
GpStatus WINGDIPAPI
GdipGetPageScale(GpGraphics *graphics, REAL *scale);
GpStatus WINGDIPAPI
GdipSetPageUnit(GpGraphics *graphics, GpUnit unit);
GpStatus WINGDIPAPI
GdipSetPageScale(GpGraphics *graphics, REAL scale);
GpStatus WINGDIPAPI
GdipGetDpiX(GpGraphics *graphics, REAL* dpi);
GpStatus WINGDIPAPI
GdipGetDpiY(GpGraphics *graphics, REAL* dpi);
GpStatus WINGDIPAPI
GdipTransformPoints(GpGraphics *graphics, GpCoordinateSpace destSpace,
GpCoordinateSpace srcSpace, GpPointF *points,
INT count);
GpStatus WINGDIPAPI
GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace destSpace,
GpCoordinateSpace srcSpace, GpPoint *points,
INT count);
GpStatus WINGDIPAPI
GdipGetNearestColor(GpGraphics *graphics, ARGB* argb);
// Create the Win9x Halftone Palette (even on NT) with correct Desktop colors
HPALETTE WINGDIPAPI
GdipCreateHalftonePalette();
GpStatus WINGDIPAPI
GdipDrawLine(GpGraphics *graphics, GpPen *pen, REAL x1, REAL y1,
REAL x2, REAL y2);
GpStatus WINGDIPAPI
GdipDrawLineI(GpGraphics *graphics, GpPen *pen, INT x1, INT y1,
INT x2, INT y2);
GpStatus WINGDIPAPI
GdipDrawLines(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawLinesI(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawArc(GpGraphics *graphics, GpPen *pen, REAL x, REAL y,
REAL width, REAL height, REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipDrawArcI(GpGraphics *graphics, GpPen *pen, INT x, INT y,
INT width, INT height, REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipDrawBezier(GpGraphics *graphics, GpPen *pen, REAL x1, REAL y1,
REAL x2, REAL y2, REAL x3, REAL y3, REAL x4, REAL y4);
GpStatus WINGDIPAPI
GdipDrawBezierI(GpGraphics *graphics, GpPen *pen, INT x1, INT y1,
INT x2, INT y2, INT x3, INT y3, INT x4, INT y4);
GpStatus WINGDIPAPI
GdipDrawBeziers(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawBeziersI(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawRectangle(GpGraphics *graphics, GpPen *pen, REAL x, REAL y,
REAL width, REAL height);
GpStatus WINGDIPAPI
GdipDrawRectangleI(GpGraphics *graphics, GpPen *pen, INT x, INT y,
INT width, INT height);
GpStatus WINGDIPAPI
GdipDrawRectangles(GpGraphics *graphics, GpPen *pen, GDIPCONST GpRectF *rects,
INT count);
GpStatus WINGDIPAPI
GdipDrawRectanglesI(GpGraphics *graphics, GpPen *pen, GDIPCONST GpRect *rects,
INT count);
GpStatus WINGDIPAPI
GdipDrawEllipse(GpGraphics *graphics, GpPen *pen, REAL x, REAL y,
REAL width, REAL height);
GpStatus WINGDIPAPI
GdipDrawEllipseI(GpGraphics *graphics, GpPen *pen, INT x, INT y,
INT width, INT height);
GpStatus WINGDIPAPI
GdipDrawPie(GpGraphics *graphics, GpPen *pen, REAL x, REAL y,
REAL width, REAL height, REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipDrawPieI(GpGraphics *graphics, GpPen *pen, INT x, INT y,
INT width, INT height, REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipDrawPolygon(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawPolygonI(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *path);
GpStatus WINGDIPAPI
GdipDrawCurve(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawCurveI(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points,
INT count);
GpStatus WINGDIPAPI
GdipDrawCurve2(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points,
INT count, REAL tension);
GpStatus WINGDIPAPI
GdipDrawCurve2I(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points,
INT count, REAL tension);
GpStatus WINGDIPAPI
GdipDrawCurve3(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPointF *points,
INT count, INT offset, INT numberOfSegments, REAL tension);
GpStatus WINGDIPAPI
GdipDrawCurve3I(GpGraphics *graphics, GpPen *pen, GDIPCONST GpPoint *points,
INT count, INT offset, INT numberOfSegments, REAL tension);
GpStatus WINGDIPAPI
GdipDrawClosedCurve(GpGraphics *graphics, GpPen *pen,
GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipDrawClosedCurveI(GpGraphics *graphics, GpPen *pen,
GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipDrawClosedCurve2(GpGraphics *graphics, GpPen *pen,
GDIPCONST GpPointF *points, INT count, REAL tension);
GpStatus WINGDIPAPI
GdipDrawClosedCurve2I(GpGraphics *graphics, GpPen *pen,
GDIPCONST GpPoint *points, INT count, REAL tension);
GpStatus WINGDIPAPI
GdipGraphicsClear(GpGraphics *graphics, ARGB color);
GpStatus WINGDIPAPI
GdipFillRectangle(GpGraphics *graphics, GpBrush *brush, REAL x, REAL y,
REAL width, REAL height);
GpStatus WINGDIPAPI
GdipFillRectangleI(GpGraphics *graphics, GpBrush *brush, INT x, INT y,
INT width, INT height);
GpStatus WINGDIPAPI
GdipFillRectangles(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpRectF *rects, INT count);
GpStatus WINGDIPAPI
GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpRect *rects, INT count);
GpStatus WINGDIPAPI
GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPointF *points, INT count, GpFillMode fillMode);
GpStatus WINGDIPAPI
GdipFillPolygonI(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPoint *points, INT count, GpFillMode fillMode);
GpStatus WINGDIPAPI
GdipFillPolygon2(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipFillPolygon2I(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipFillEllipse(GpGraphics *graphics, GpBrush *brush, REAL x, REAL y,
REAL width, REAL height);
GpStatus WINGDIPAPI
GdipFillEllipseI(GpGraphics *graphics, GpBrush *brush, INT x, INT y,
INT width, INT height);
GpStatus WINGDIPAPI
GdipFillPie(GpGraphics *graphics, GpBrush *brush, REAL x, REAL y,
REAL width, REAL height, REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x, INT y,
INT width, INT height, REAL startAngle, REAL sweepAngle);
GpStatus WINGDIPAPI
GdipFillPath(GpGraphics *graphics, GpBrush *brush, GpPath *path);
GpStatus WINGDIPAPI
GdipFillClosedCurve(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPointF *points, INT count);
GpStatus WINGDIPAPI
GdipFillClosedCurveI(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPoint *points, INT count);
GpStatus WINGDIPAPI
GdipFillClosedCurve2(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPointF *points, INT count,
REAL tension, GpFillMode fillMode);
GpStatus WINGDIPAPI
GdipFillClosedCurve2I(GpGraphics *graphics, GpBrush *brush,
GDIPCONST GpPoint *points, INT count,
REAL tension, GpFillMode fillMode);
GpStatus WINGDIPAPI
GdipFillRegion(GpGraphics *graphics, GpBrush *brush,
GpRegion *region);
GpStatus WINGDIPAPI
GdipDrawImage(GpGraphics *graphics, GpImage *image, REAL x, REAL y);
GpStatus WINGDIPAPI
GdipDrawImageI(GpGraphics *graphics, GpImage *image, INT x, INT y);
GpStatus WINGDIPAPI
GdipDrawImageRect(GpGraphics *graphics, GpImage *image, REAL x, REAL y,
REAL width, REAL height);
GpStatus WINGDIPAPI
GdipDrawImageRectI(GpGraphics *graphics, GpImage *image, INT x, INT y,
INT width, INT height);
GpStatus WINGDIPAPI
GdipDrawImagePoints(GpGraphics *graphics, GpImage *image,
GDIPCONST GpPointF *dstpoints, INT count);
GpStatus WINGDIPAPI
GdipDrawImagePointsI(GpGraphics *graphics, GpImage *image,
GDIPCONST GpPoint *dstpoints, INT count);
GpStatus WINGDIPAPI
GdipDrawImagePointRect(GpGraphics *graphics, GpImage *image, REAL x,
REAL y, REAL srcx, REAL srcy, REAL srcwidth,
REAL srcheight, GpUnit srcUnit);
GpStatus WINGDIPAPI
GdipDrawImagePointRectI(GpGraphics *graphics, GpImage *image, INT x,
INT y, INT srcx, INT srcy, INT srcwidth,
INT srcheight, GpUnit srcUnit);
GpStatus WINGDIPAPI
GdipDrawImageRectRect(GpGraphics *graphics, GpImage *image, REAL dstx,
REAL dsty, REAL dstwidth, REAL dstheight,
REAL srcx, REAL srcy, REAL srcwidth, REAL srcheight,
GpUnit srcUnit,
GDIPCONST GpImageAttributes* imageAttributes,
DrawImageAbort callback, VOID * callbackData);
GpStatus WINGDIPAPI
GdipDrawImageRectRectI(GpGraphics *graphics, GpImage *image, INT dstx,
INT dsty, INT dstwidth, INT dstheight,
INT srcx, INT srcy, INT srcwidth, INT srcheight,
GpUnit srcUnit,
GDIPCONST GpImageAttributes* imageAttributes,
DrawImageAbort callback, VOID * callbackData);
GpStatus WINGDIPAPI
GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image,
GDIPCONST GpPointF *points, INT count, REAL srcx,
REAL srcy, REAL srcwidth, REAL srcheight,
GpUnit srcUnit,
GDIPCONST GpImageAttributes* imageAttributes,
DrawImageAbort callback, VOID * callbackData);
GpStatus WINGDIPAPI
GdipDrawImagePointsRectI(GpGraphics *graphics, GpImage *image,
GDIPCONST GpPoint *points, INT count, INT srcx,
INT srcy, INT srcwidth, INT srcheight,
GpUnit srcUnit,
GDIPCONST GpImageAttributes* imageAttributes,
DrawImageAbort callback, VOID * callbackData);
GpStatus WINGDIPAPI
GdipEnumerateMetafileDestPoint(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST PointF & destPoint,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileDestPointI(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST Point & destPoint,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileDestRect(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST RectF & destRect,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileDestRectI(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST Rect & destRect,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileDestPoints(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST PointF * destPoints,
INT count,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileDestPointsI(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST Point * destPoints,
INT count,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileSrcRectDestPoint(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST PointF & destPoint,
GDIPCONST RectF & srcRect,
Unit srcUnit,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileSrcRectDestPointI(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST Point & destPoint,
GDIPCONST Rect & srcRect,
Unit srcUnit,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileSrcRectDestRect(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST RectF & destRect,
GDIPCONST RectF & srcRect,
Unit srcUnit,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileSrcRectDestRectI(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST Rect & destRect,
GDIPCONST Rect & srcRect,
Unit srcUnit,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileSrcRectDestPoints(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST PointF * destPoints,
INT count,
GDIPCONST RectF & srcRect,
Unit srcUnit,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipEnumerateMetafileSrcRectDestPointsI(
GpGraphics * graphics,
GDIPCONST GpMetafile * metafile,
GDIPCONST Point * destPoints,
INT count,
GDIPCONST Rect & srcRect,
Unit srcUnit,
EnumerateMetafileProc callback,
VOID * callbackData,
GDIPCONST GpImageAttributes * imageAttributes
);
GpStatus WINGDIPAPI
GdipPlayMetafileRecord(
GDIPCONST GpMetafile * metafile,
EmfPlusRecordType recordType,
UINT flags,
UINT dataSize,
GDIPCONST BYTE * data
);
GpStatus WINGDIPAPI
GdipSetClipGraphics(GpGraphics *graphics, GpGraphics *srcgraphics,
CombineMode combineMode);
GpStatus WINGDIPAPI
GdipSetClipRect(GpGraphics *graphics, REAL x, REAL y,
REAL width, REAL height, CombineMode combineMode);
GpStatus WINGDIPAPI
GdipSetClipRectI(GpGraphics *graphics, INT x, INT y,
INT width, INT height, CombineMode combineMode);
GpStatus WINGDIPAPI
GdipSetClipPath(GpGraphics *graphics, GpPath *path, CombineMode combineMode);
GpStatus WINGDIPAPI
GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
CombineMode combineMode);
GpStatus WINGDIPAPI
GdipSetClipHrgn(GpGraphics *graphics, HRGN hRgn, CombineMode combineMode);
GpStatus WINGDIPAPI
GdipResetClip(GpGraphics *graphics);
GpStatus WINGDIPAPI
GdipTranslateClip(GpGraphics *graphics, REAL dx, REAL dy);
GpStatus WINGDIPAPI
GdipTranslateClipI(GpGraphics *graphics, INT dx, INT dy);
GpStatus WINGDIPAPI
GdipGetClip(GpGraphics *graphics, GpRegion *region);
GpStatus WINGDIPAPI
GdipGetClipBounds(GpGraphics *graphics, GpRectF *rect);
GpStatus WINGDIPAPI
GdipGetClipBoundsI(GpGraphics *graphics, GpRect *rect);
GpStatus WINGDIPAPI
GdipIsClipEmpty(GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipGetVisibleClipBounds(GpGraphics *graphics, GpRectF *rect);
GpStatus WINGDIPAPI
GdipGetVisibleClipBoundsI(GpGraphics *graphics, GpRect *rect);
GpStatus WINGDIPAPI
GdipIsVisibleClipEmpty(GpGraphics *graphics, BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisiblePoint(GpGraphics *graphics, REAL x, REAL y,
BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisiblePointI(GpGraphics *graphics, INT x, INT y,
BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisibleRect(GpGraphics *graphics, REAL x, REAL y,
REAL width, REAL height, BOOL *result);
GpStatus WINGDIPAPI
GdipIsVisibleRectI(GpGraphics *graphics, INT x, INT y,
INT width, INT height, BOOL *result);
GpStatus WINGDIPAPI
GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state);
GpStatus WINGDIPAPI
GdipRestoreGraphics(GpGraphics *graphics, GraphicsState state);
GpStatus WINGDIPAPI
GdipBeginContainer(GpGraphics *graphics, GDIPCONST GpRectF* dstrect,
GDIPCONST GpRectF *srcrect, GpUnit unit, GraphicsContainer *state);
GpStatus WINGDIPAPI
GdipBeginContainerI(GpGraphics *graphics, GDIPCONST GpRect* dstrect,
GDIPCONST GpRect *srcrect, GpUnit unit, GraphicsContainer *state);
GpStatus WINGDIPAPI
GdipBeginContainer2(GpGraphics *graphics, GraphicsContainer* state);
GpStatus WINGDIPAPI
GdipEndContainer(GpGraphics *graphics, GraphicsContainer state);
GpStatus
GdipGetMetafileHeaderFromWmf(
HMETAFILE hWmf,
GDIPCONST APMFileHeader * apmFileHeader,
MetafileHeader * header
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromEmf(
HENHMETAFILE hEmf,
MetafileHeader * header
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromFile(
GDIPCONST WCHAR* filename,
MetafileHeader * header
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromStream(
IStream * stream,
MetafileHeader * header
);
GpStatus
WINGDIPAPI
GdipGetMetafileHeaderFromMetafile(
GpMetafile * metafile,
MetafileHeader * header
);
GpStatus
WINGDIPAPI
GdipGetHemfFromMetafile(
GpMetafile * metafile,
HENHMETAFILE * hEmf
);
GpStatus WINGDIPAPI
GdipCreateStreamOnFile(GDIPCONST WCHAR * filename, UINT access, IStream **stream);
GpStatus WINGDIPAPI
GdipCreateMetafileFromWmf(HMETAFILE hWmf, BOOL deleteWmf,
GDIPCONST APMFileHeader * apmFileHeader, GpMetafile **metafile);
GpStatus WINGDIPAPI
GdipCreateMetafileFromEmf(HENHMETAFILE hEmf, BOOL deleteEmf,
GpMetafile **metafile);
GpStatus WINGDIPAPI
GdipCreateMetafileFromFile(GDIPCONST WCHAR* file, GpMetafile **metafile);
GpStatus WINGDIPAPI
GdipCreateMetafileFromWmfFile(GDIPCONST WCHAR* file, GDIPCONST APMFileHeader * apmFileHeader, GpMetafile **metafile);
GpStatus WINGDIPAPI
GdipCreateMetafileFromStream(IStream * stream, GpMetafile **metafile);
GpStatus WINGDIPAPI
GdipRecordMetafile(
HDC referenceHdc,
EmfType type,
GDIPCONST GpRectF * frameRect,
MetafileFrameUnit frameUnit,
GDIPCONST WCHAR * description,
GpMetafile ** metafile
);
GpStatus WINGDIPAPI
GdipRecordMetafileI(
HDC referenceHdc,
EmfType type,
GDIPCONST GpRect * frameRect,
MetafileFrameUnit frameUnit,
GDIPCONST WCHAR * description,
GpMetafile ** metafile
);
GpStatus WINGDIPAPI
GdipRecordMetafileFileName(
GDIPCONST WCHAR* fileName,
HDC referenceHdc,
EmfType type,
GDIPCONST GpRectF * frameRect,
MetafileFrameUnit frameUnit,
GDIPCONST WCHAR * description,
GpMetafile ** metafile
);
GpStatus WINGDIPAPI
GdipRecordMetafileFileNameI(
GDIPCONST WCHAR* fileName,
HDC referenceHdc,
EmfType type,
GDIPCONST GpRect * frameRect,
MetafileFrameUnit frameUnit,
GDIPCONST WCHAR * description,
GpMetafile ** metafile
);
GpStatus WINGDIPAPI
GdipRecordMetafileStream(
IStream * stream,
HDC referenceHdc,
EmfType type,
GDIPCONST GpRectF * frameRect,
MetafileFrameUnit frameUnit,
GDIPCONST WCHAR * description,
GpMetafile ** metafile
);
GpStatus WINGDIPAPI
GdipRecordMetafileStreamI(
IStream * stream,
HDC referenceHdc,
EmfType type,
GDIPCONST GpRect * frameRect,
MetafileFrameUnit frameUnit,
GDIPCONST WCHAR * description,
GpMetafile ** metafile
);
GpStatus WINGDIPAPI
GdipSetMetafileDownLevelRasterizationLimit(
GpMetafile * metafile,
UINT metafileRasterizationLimitDpi
);
GpStatus WINGDIPAPI
GdipGetMetafileDownLevelRasterizationLimit(
GDIPCONST GpMetafile * metafile,
UINT * metafileRasterizationLimitDpi
);
GpStatus WINGDIPAPI
GdipGetImageDecodersSize(UINT *numDecoders, UINT *size);
GpStatus WINGDIPAPI
GdipGetImageDecoders(UINT numDecoders,
UINT size,
ImageCodecInfo *decoders);
GpStatus WINGDIPAPI
GdipGetImageEncodersSize(UINT *numEncoders, UINT *size);
GpStatus WINGDIPAPI
GdipGetImageEncoders(UINT numEncoders,
UINT size,
ImageCodecInfo *encoders);
GpStatus WINGDIPAPI
GdipAddImageCodec(GDIPCONST ImageCodecInfo *codec);
GpStatus WINGDIPAPI
GdipRemoveImageCodec(GDIPCONST ImageCodecInfo *codec);
#ifndef DCR_USE_NEW_186091
GpStatus WINGDIPAPI
GdipGetGraphicsPixel(GpGraphics* graphics, REAL x, REAL y, ARGB* argb);
#endif
GpStatus WINGDIPAPI
GdipComment(GpGraphics* graphics, UINT sizeData, GDIPCONST BYTE * data);
GpStatus WINGDIPAPI
GdipGetGraphicsLayout(GpGraphics* graphics, GraphicsLayout* layout);
GpStatus WINGDIPAPI
GdipSetGraphicsLayout(GpGraphics* graphics, GDIPCONST GraphicsLayout layout);
//your_sha256_hash------------
// FontFamily
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateFontFamilyFromName(GDIPCONST WCHAR *name,
GpFontCollection *fontCollection,
GpFontFamily **FontFamily);
GpStatus WINGDIPAPI
GdipDeleteFontFamily(GpFontFamily *FontFamily);
GpStatus WINGDIPAPI
GdipCloneFontFamily(GpFontFamily *FontFamily, GpFontFamily **clonedFontFamily);
GpStatus WINGDIPAPI
GdipGetGenericFontFamilySansSerif(GpFontFamily **nativeFamily);
GpStatus WINGDIPAPI
GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily);
GpStatus WINGDIPAPI
GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamily);
GpStatus WINGDIPAPI
GdipGetFamilyName(
GDIPCONST GpFontFamily *family,
WCHAR name[LF_FACESIZE],
LANGID language
);
GpStatus WINGDIPAPI
GdipIsStyleAvailable(GDIPCONST GpFontFamily *family, INT style, BOOL * IsStyleAvailable);
GpStatus WINGDIPAPI
GdipFontCollectionEnumerable(
GpFontCollection* fontCollection,
GpGraphics* graphics,
INT * numFound
);
GpStatus WINGDIPAPI GdipFontCollectionEnumerate(
GpFontCollection* fontCollection,
INT numSought,
GpFontFamily* gpfamilies[],
INT* numFound,
GpGraphics* graphics
);
//-----------------------------------
// New API
//-----------------------------------
GpStatus WINGDIPAPI
GdipGetEmHeight(GDIPCONST GpFontFamily *family, INT style, UINT16 * EmHeight);
GpStatus WINGDIPAPI
GdipGetCellAscent(GDIPCONST GpFontFamily *family, INT style, UINT16 * CellAscent);
GpStatus WINGDIPAPI
GdipGetCellDescent(GDIPCONST GpFontFamily *family, INT style, UINT16 * CellDescent);
GpStatus WINGDIPAPI
GdipGetLineSpacing(GDIPCONST GpFontFamily *family, INT style, UINT16 * LineSpacing);
//your_sha256_hash------------
// Font
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateFontFromDC(
HDC hdc,
GpFont **font
);
GpStatus WINGDIPAPI
GdipCreateFontFromLogfontA(
HDC hdc,
GDIPCONST LOGFONTA *logfont,
GpFont **font
);
GpStatus WINGDIPAPI
GdipCreateFontFromLogfontW(
HDC hdc,
GDIPCONST LOGFONTW *logfont,
GpFont **font
);
GpStatus WINGDIPAPI
GdipCreateFont(
GDIPCONST GpFontFamily *fontFamily,
REAL emSize,
INT style,
Unit unit,
GpFont **font
);
GpStatus WINGDIPAPI
GdipCloneFont(GpFont* font, GpFont** cloneFont);
GpStatus WINGDIPAPI
GdipDeleteFont(GpFont* font);
GpStatus WINGDIPAPI
GdipGetFamily(GpFont *font, GpFontFamily **family);
GpStatus WINGDIPAPI
GdipGetFontStyle(GpFont *font, INT *style);
GpStatus WINGDIPAPI
GdipGetFontSize(GpFont *font, REAL *size);
GpStatus WINGDIPAPI
GdipGetFontUnit(GpFont *font, Unit *unit);
GpStatus WINGDIPAPI
GdipGetFontHeight(GDIPCONST GpFont *font, GDIPCONST GpGraphics *graphics, REAL *height);
#ifdef DCR_USE_NEW_125467
GpStatus WINGDIPAPI
GdipGetFontHeightGivenDPI(GDIPCONST GpFont *font, REAL dpi, REAL *height);
#endif
GpStatus WINGDIPAPI
GdipGetLogFontA(GpFont * font, GpGraphics *graphics, LOGFONTA * logfontA);
GpStatus WINGDIPAPI
GdipGetLogFontW(GpFont * font, GpGraphics *graphics, LOGFONTW * logfontW);
// FontCollection
GpStatus WINGDIPAPI
GdipNewInstalledFontCollection(GpFontCollection** fontCollection);
GpStatus WINGDIPAPI
GdipNewPrivateFontCollection(GpFontCollection** fontCollection);
GpStatus WINGDIPAPI
GdipDeletePrivateFontCollection(GpFontCollection** fontCollection);
GpStatus WINGDIPAPI
GdipGetFontCollectionFamilyCount(
GpFontCollection* fontCollection,
INT * numFound
);
GpStatus WINGDIPAPI
GdipGetFontCollectionFamilyList(
GpFontCollection* fontCollection,
INT numSought,
GpFontFamily* gpfamilies[],
INT* numFound
);
#ifndef DCR_USE_NEW_235072
GpStatus WINGDIPAPI
GdipInstallFontFile(
GpFontCollection* fontCollection,
GDIPCONST WCHAR* filename
);
GpStatus WINGDIPAPI
GdipUninstallFontFile(
GpFontCollection* fontCollection,
GDIPCONST WCHAR* filename
);
#endif
GpStatus WINGDIPAPI
GdipPrivateAddFontFile(
GpFontCollection* fontCollection,
GDIPCONST WCHAR* filename
);
GpStatus WINGDIPAPI
GdipPrivateAddMemoryFont(
GpFontCollection* fontCollection,
GDIPCONST void* memory,
INT length
);
//your_sha256_hash------------
// Text
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipDrawString(
GpGraphics *graphics,
GDIPCONST WCHAR *string,
INT length,
GDIPCONST GpFont *font,
GDIPCONST RectF *layoutRect,
GDIPCONST GpStringFormat *stringFormat,
GDIPCONST GpBrush *brush
);
GpStatus WINGDIPAPI
GdipMeasureString(
GpGraphics *graphics,
GDIPCONST WCHAR *string,
INT length,
GDIPCONST GpFont *font,
GDIPCONST RectF *layoutRect,
GDIPCONST GpStringFormat *stringFormat,
RectF *boundingBox,
INT *codepointsFitted,
INT *linesFilled
);
#ifndef DCR_USE_NEW_174340
GpStatus WINGDIPAPI
GdipMeasureStringRegion(
GpGraphics *graphics,
GDIPCONST WCHAR *string,
INT length,
GDIPCONST GpFont *font,
GDIPCONST RectF &layoutRect,
GDIPCONST GpStringFormat *stringFormat,
INT firstCharacterIndex,
INT characterCount,
GpRegion *region
);
#endif
#ifdef DCR_USE_NEW_174340
GpStatus
WINGDIPAPI
GdipMeasureCharacterRanges(
GpGraphics *graphics,
GDIPCONST WCHAR *string,
INT length,
GDIPCONST GpFont *font,
GDIPCONST RectF &layoutRect,
GDIPCONST GpStringFormat *stringFormat,
INT regionCount,
GpRegion **regions
);
#endif
GpStatus WINGDIPAPI
GdipDrawDriverString(
GpGraphics *graphics,
GDIPCONST UINT16 *text,
INT length,
GDIPCONST GpFont *font,
GDIPCONST GpBrush *brush,
GDIPCONST PointF *positions,
INT flags,
GDIPCONST GpMatrix *matrix
);
GpStatus WINGDIPAPI
GdipMeasureDriverString(
GpGraphics *graphics,
GDIPCONST UINT16 *text,
INT length,
GDIPCONST GpFont *font,
GDIPCONST PointF *positions,
INT flags,
GDIPCONST GpMatrix *matrix,
RectF *boundingBox
);
#ifndef DCR_USE_NEW_168772
GpStatus WINGDIPAPI
GdipDriverStringPointToCodepoint(
GpGraphics *graphics,
GDIPCONST UINT16 *text,
INT length,
GDIPCONST GpFont *font,
GDIPCONST PointF *positions,
INT flags,
GpMatrix *matrix,
GDIPCONST PointF *hit,
INT *index,
BOOL *rightEdge,
REAL *distance
);
#endif
//your_sha256_hash------------
// String format APIs
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateStringFormat(
INT formatAttributes,
LANGID language,
GpStringFormat **format
);
GpStatus WINGDIPAPI
GdipStringFormatGetGenericDefault(GpStringFormat **format);
GpStatus WINGDIPAPI
GdipStringFormatGetGenericTypographic(GpStringFormat **format);
GpStatus WINGDIPAPI
GdipDeleteStringFormat(GpStringFormat *format);
GpStatus WINGDIPAPI
GdipCloneStringFormat(GDIPCONST GpStringFormat *format, GpStringFormat **newFormat);
GpStatus WINGDIPAPI
GdipSetStringFormatFlags(GpStringFormat *format, INT flags);
GpStatus WINGDIPAPI GdipGetStringFormatFlags(GDIPCONST GpStringFormat *format, INT *flags);
#ifndef DCR_USE_NEW_152154
GpStatus WINGDIPAPI
GdipSetStringFormatLineSpacing(GpStringFormat *format, REAL amount,
LineSpacing method);
GpStatus WINGDIPAPI
GdipGetStringFormatLineSpacingAmount(GDIPCONST GpStringFormat *format, REAL *amount);
GpStatus WINGDIPAPI
GdipGetStringFormatLineSpacingMethod(GDIPCONST GpStringFormat *format, LineSpacing *method);
#endif
GpStatus WINGDIPAPI
GdipSetStringFormatAlign(GpStringFormat *format, StringAlignment align);
GpStatus WINGDIPAPI
GdipGetStringFormatAlign(GDIPCONST GpStringFormat *format, StringAlignment *align);
GpStatus WINGDIPAPI
GdipSetStringFormatLineAlign(GpStringFormat *format,
StringAlignment align);
GpStatus WINGDIPAPI
GdipGetStringFormatLineAlign(GDIPCONST GpStringFormat *format,
StringAlignment *align);
GpStatus WINGDIPAPI
GdipSetStringFormatTrimming(
GpStringFormat *format,
StringTrimming trimming
);
GpStatus WINGDIPAPI
GdipGetStringFormatTrimming(
GDIPCONST GpStringFormat *format,
StringTrimming *trimming
);
GpStatus WINGDIPAPI
GdipSetStringFormatHotkeyPrefix(GpStringFormat *format, INT hotkeyPrefix);
GpStatus WINGDIPAPI
GdipGetStringFormatHotkeyPrefix(GDIPCONST GpStringFormat *format, INT *hotkeyPrefix);
GpStatus WINGDIPAPI
GdipSetStringFormatTabStops(GpStringFormat *format, REAL firstTabOffset, INT count, GDIPCONST REAL *tabStops);
GpStatus WINGDIPAPI
GdipGetStringFormatTabStops(GDIPCONST GpStringFormat *format, INT count, REAL *firstTabOffset, REAL *tabStops);
GpStatus WINGDIPAPI
GdipGetStringFormatTabStopCount(GDIPCONST GpStringFormat *format, INT * count);
#ifdef DCR_USE_NEW_146933
GpStatus WINGDIPAPI
GdipSetStringFormatDigitSubstitution(GpStringFormat *format, LANGID language,
StringDigitSubstitute substitute);
GpStatus WINGDIPAPI
GdipGetStringFormatDigitSubstitution(GDIPCONST GpStringFormat *format, LANGID *language,
StringDigitSubstitute *substitute);
#endif // DCR_USE_NEW_146933
#ifdef DCR_USE_NEW_174340
GpStatus WINGDIPAPI
GdipGetStringFormatMeasurableCharacterRangeCount(
GDIPCONST GpStringFormat *format,
INT *count
);
GpStatus WINGDIPAPI
GdipSetStringFormatMeasurableCharacterRanges(
GpStringFormat *format,
INT rangeCount,
GDIPCONST CharacterRange *ranges
);
#endif
//your_sha256_hash------------
// Cached Bitmap APIs
//your_sha256_hash------------
GpStatus WINGDIPAPI
GdipCreateCachedBitmap(
GpBitmap *bitmap,
GpGraphics *graphics,
GpCachedBitmap **cachedBitmap
);
GpStatus WINGDIPAPI
GdipDeleteCachedBitmap(GpCachedBitmap *cachedBitmap);
GpStatus WINGDIPAPI
GdipDrawCachedBitmap(
GpGraphics *graphics,
GpCachedBitmap *cachedBitmap,
INT x,
INT y
);
UINT WINGDIPAPI
GdipEmfToWmfBits(
HENHMETAFILE hemf,
UINT cbData16,
LPBYTE pData16,
INT iMapMode,
INT eFlags
);
#ifdef __cplusplus
}
#endif
#endif // !_FLATAPI_H
```
|
The Coinage Offences Act 1861 (24 & 25 Vict. c. 99) was an Act of the Parliament of the United Kingdom which codified various coinage offences. It was repealed and replaced by the Coinage Offences Act 1936.
The statute provides that whoever falsely makes or counterfeits any coin resembling or apparently intended to resemble or pass for any current gold or silver coin of the realm (s. 2), or gilds, silvers, washes, cases over or colours with materials capable of producing the appearance of gold or silver a coin or a piece of any metal or mixture of metals, or files or alters it, with intent to make it resemble or pass for any current gold or silver coin (s. 3), or who buys, sells, receives or pays a false gold or silver coin at a lower rate than its denomination imports, or who receives into the United Kingdom any false coin knowing it to be counterfeit (ss. 6, 7), or who, without lawful authority or excuse, knowingly makes or mends, buys or sells, or has in his custody or possession, or conveys out of the Royal Mint any coining moulds, machines or tools, is guilty of felony (ss. 24, 25). The punishment for such offences is either penal servitude for life or for not less than three years, or imprisonment for not more than two years, with or without hard labour. Whoever impairs, diminishes or lightens current gold or silver coin, with intent to pass same, is liable to penal servitude for from three to fourteen years (s. 4), and whoever has in his possession filings or clippings obtained by impairing or lightening current coin is liable to the same punishment, or to penal servitude for from three to seven years.
The statute also makes provision against tendering or uttering false gold or silver coin, which is a misdemeanour, punishable by imprisonment with or without hard labour. Provision is also made with respect to falsely making, counterfeiting, tendering or uttering copper coin, exporting false coin, or defacing current coin by stamping names or words on it, and counterfeiting, tendering or uttering coin resembling or meant to pass as that of some foreign state.
The act applies to offences with respect to colonial coins as well as to those of the United Kingdom.
References
External links
United Kingdom Acts of Parliament 1861
|
Trochomorpha is a genus of air-breathing land snails, terrestrial pulmonate gastropod mollusks in the family Trochomorphidae.
Species
Species within the genus Trochomorpha include:
Trochomorpha abrochroa (Crosse, 1868)
Trochomorpha accurata Mousson, 1870
Trochomorpha albostriata Mousson, 1870
Trochomorpha apia (Hombron & Jacquinot, 1852)
Trochomorpha apicis B. Rensch, 1931
Trochomorpha approximata (Le Guillou, 1842)
Trochomorpha assimilis Garrett, 1884
Trochomorpha aukiensis Clapp, 1923
Trochomorpha backhuysi Delsaerdt, 2016
Trochomorpha beckiana (L. Pfeiffer, 1842)
Trochomorpha belmorei (Cox, 1872)
Trochomorpha benigna (L. Pfeiffer, 1863)
Trochomorpha borealis Möllendorff, 1888
Trochomorpha burrowsi H. B. Baker, 1941
Trochomorpha carolinae H. B. Baker, 1941
Trochomorpha ceroconus (L. Pfeiffer, 1864)
Trochomorpha concava Clapp, 1923
Trochomorpha concolor O. Boettger, 1890
Trochomorpha conoides H. B. Baker, 1941
Trochomorpha contigua Pease, 1871
Trochomorpha corallina Mousson, 1870
Trochomorpha cornea Hedley, 1891
Trochomorpha corneofusca I. Rensch & B. Rensch, 1929: synonym of Trochomorpha mejmi corneofusca I. Rensch & B. Rensch, 1929
Trochomorpha cressida (A. Gould, 1846)
Trochomorpha crustulum (Cox, 1873)
Trochomorpha dautzenbergi Sykes, 1904
Trochomorpha deiopeia (Angas, 1869)
Trochomorpha depressostriata Mousson, 1870
Trochomorpha discrepans van Benthem Jutting, 1964
Trochomorpha dondani Thach & F. Huber, 2021
Trochomorpha eurydice (A. Gould, 1846)
Trochomorpha exaltata (L. Pfeiffer, 1855)
Trochomorpha exclusa (Quoy & Gaimard, 1825)
Trochomorpha fatigata (Cox, 1873)
Trochomorpha fessonia (Angas, 1869)
Trochomorpha flava Clapp, 1923
Trochomorpha froggatti (Iredale, 1941)
Trochomorpha godeti G. B. Sowerby III, 1890
Trochomorpha gulielmi Sykes, 1904
Trochomorpha haptoderma Vermeulen, Liew & Schilthuizen, 2015
Trochomorpha henschei (L. Pfeiffer, 1867)
Trochomorpha hidalgoiana (Crosse, 1864)
Trochomorpha huberi Thach, 2018
Trochomorpha jampeana E. A. Smith, 1896
Trochomorpha johnabbasi Thach, 2021
Trochomorpha juanita (Angas, 1873)
Trochomorpha kambarae H. B. Baker, 1941
Trochomorpha kantavuensis Garrett, 1887
Trochomorpha kierulfi (Mörch, 1850)
Trochomorpha kuesteri (L. Pfeiffer, 1845)
Trochomorpha latimarginata (E. A. Smith, 1884)
Trochomorpha lofti Delsaerdt, 2016
Trochomorpha ludersi (L. Pfeiffer, 1855)
Trochomorpha luteocornea (Reeve, 1854)
Trochomorpha manni Clapp, 1923
Trochomorpha matura (L. Pfeiffer, 1855)
Trochomorpha mcleani Clench, 1958
Trochomorpha mejmi (Leschke, 1912)
Trochomorpha meleagris (L. Pfeiffer, 1855)
Trochomorpha melvillensis Solem, 1988
Trochomorpha membranicosta (L. Pfeiffer, 1854)
Trochomorpha merziana (L. Pfeiffer, 1853)
Trochomorpha merzianoides (Garrett, 1873)
Trochomorpha moalensis H. B. Baker, 1941
Trochomorpha morio Tapparone Canefri, 1886
Trochomorpha neuhausi I. Rensch, 1930
Trochomorpha nigrans E. A. Smith, 1889
Trochomorpha nigritella (L. Pfeiffer, 1847)
Trochomorpha ottonis I. Rensch, 1930
Trochomorpha pallens Pease, 1871
Trochomorpha papua (Lesson, 1831)
Trochomorpha partunda Angas, 1868
Trochomorpha patrium I. Rensch & B. Rensch, 1929
Trochomorpha patulaeformis I. Rensch & B. Rensch, 1929
Trochomorpha paviei (Morlet, 1885)
Trochomorpha percompressa (W. T. Blanford, 1869)
Trochomorpha planoconus Garrett, 1887
Trochomorpha rhoda (Angas, 1876)
Trochomorpha rhysa Tillier & Bouchet, 1989
Trochomorpha robusta P. Sarasin & F. Sarasin, 1899
Trochomorpha rubens W. D. Hartman, 1888
Trochomorpha saigonensis (Crosse, 1867)
Trochomorpha samoa (Hombron & Jacquinot, 1841)
Trochomorpha sanctaeannae (E. A. Smith, 1885)
Trochomorpha sapeca (Heude, 1890)
Trochomorpha scytodes (L. Pfeiffer, 1854)
Trochomorpha serena (Cox, 1873)
Trochomorpha solarium (Quoy & Gaimard, 1832)
Trochomorpha strubelli O. Boettger, 1890
Trochomorpha swainsoni (L. Pfeiffer, 1846)
Trochomorpha synoecia Möllendorff, 1891
Trochomorpha tavinniensis (Garrett, 1872)
Trochomorpha tentoriolum (Gould, 1846)
Trochomorpha ternatana (Le Guillou, 1842)
Trochomorpha tertia I. Rensch & B. Rensch, 1929: synonym of Trochomorpha mejmi tertia I. Rensch & B. Rensch, 1929 (original rank)
Trochomorpha thachi F. Huber, 2020
Trochomorpha thelecoryphe Vermeulen, Liew & Schilthuizen, 2015
Trochomorpha trachus Vermeulen, Liew & Schilthuizen, 2015
Trochomorpha transarata (Mousson, 1865)
Trochomorpha troilus (Gould, 1846)
Trochomorpha tuber Mousson, 1869
Trochomorpha tumulus (A. Gould, 1846)
Trochomorpha tuvuthae H. B. Baker, 1941
Trochomorpha typus H. B. Baker, 1941
Trochomorpha unica I. Rensch & B. Rensch, 1935
Trochomorpha vanderrieti Clench, 1965
Trochomorpha vestersi I. Rensch & B. Rensch, 1929
Trochomorpha vicdani Thach & F. Huber, 2021
Trochomorpha vincekessneri Thach, 2021
Trochomorpha xiphias (L. Pfeiffer, 1856)
Trochomorpha zenobia (L. Pfeiffer, 1864)
Trochomorpha zenobiella Clapp, 1923
Taxa inquirenda
Trochomorpha hartmanni (L. Pfeiffer, 1846)
References
Bank, R. A. (2017). Classification of the Recent terrestrial Gastropoda of the World. Last update: July 16th, 2017
External links
Albers, J. C. (1850). Die Heliceen nach natürlicher Verwandtschaft systematisch geordnet. Berlin: Enslin. 262 pp
Iredale, T. (1941). A basic list of the land Mollusca of Papua. The Australian Zoologist. 10(1): 51-94, pls. 3-4
Baker, H. B. (1941). Zonitid snails from Pacific islands. Part 3 and 4. Bernice P. Bishop Museum Bulletin. 166: 203–370
Solem, A. (1959). Systematics and zoogeography of the land and fresh-water Mollusca of the New Hebrides. Fieldiana Zoology. 4(3): 1-359
Semper, C. (1870-1885). Reisen im Archipel der Philippinen, Theil 2. Wissenschaftliche Resultate. Band 3, Landmollusken. Wiesbaden: Kreidel
Animal Base info on the genus
Trochomorphidae
|
was an animator, illustrator, character designer, and animation director born in Kumamoto Prefecture, Japan. He is most well known for his work as character designer on the anime television series Armored Trooper Votoms. Shioyama, along with Kōichi Murata, Kazuo Komatsubara, and Kōshin Yonekawa, was one of the founding members of the animation studio Oh! Production.
Profile
In 1961, Shioyama moved to Tokyo. In 1966, he joined Hatena Pro under the direction of Bonjin Nagaki. After helping to found Oh! Production in 1970, Shioyama left to become a freelancer, doing work for Tatsunoko Pro and working on many projects for Sunrise as an animation director.
Shioyama's first project as a character designer was for Invincible Steel Man Daitarn 3, which anime director Ryōsuke Takahashi praised. Shioyama then worked on such shows as Fang of the Sun Dougram as animation production chief, and Armored Trooper Votoms, Panzer World Galient, and Ronin Warriors as both character designer and animation production chief. Together with Takahashi, he and his designs epitomized Sunrise's work in the 1980s.
On April 13, 2017, a fire occurred at 1:00 AM, destroying his eighth-floor apartment in a 14-floor danchi in Misato, Saitama Prefecture. Shioyama and his wife Tokiko were both found dead, he was 77 years old.
Awards
Shioyama has received multiple awards and recognition throughout his career. Those listed here are chronological, with the oldest at the top.
First place, Most Popular Male Character: Chirico Cuvie from Armored Trooper Votoms (1984, 6th Anime Grand Prix in Animage magazine)
for Armored Trooper Votoms: The Last Red Shoulder (1985, 2nd Japan Anime Grand Award • Atom Award)
Readers Award for Yoroiden Samurai Troopers (1990, 13th Anime Grand Prix, Animage magazine)
Fan Grand Award, Sakuhin Award for Yoroiden Samurai Troopers (1990, 7th Japan Anime Grand Award • Atom Award)
Fan Grand Award, Male Character Award for Ryō Sanada/Wildfire Ryō from Yoroiden Samurai Troopers (1990, 7th Japan Anime Grand Award • Atom Award)
Animation works
Listed alphabetically in chronological order (oldest at top).
TV
Star of the Giants (1968–1971, key animation)
Attack No. 1 (1969–1971, key animation)
Tiger Mask (1969–1971, key animation)
Science Ninja Team Gatchaman (1972–1974, key animation)
Casshan (1973–1974, animation director, key animation)
Brave Raideen (1975, animation director)
Tekkaman: The Space Knight (1975, key animation)
Combattler V (1976–1977, animation director)
Voltes V (1977–1978, animation director)
Daimos (1978, animation director)
Invincible Steel Man Daitarn 3 (1978–1979, character designer, animation director)
Daltanius (1979–1980, animation director)
Trider G7 (1980, animation director)
Saikyō Robo: Daioja (1981, animation director)
Fang of the Sun Dougram (1981–1983, animation production chief, sub-character design)
Shiroi Kiba: White Fang Monogatari (1982, key animation)
Armored Trooper Votoms (1983–1984, character design, animation production chief)
Panzer World Galient (1984–1985, character design, animation production chief)
The Centurions (1986, character design, animation director)
Metal Armor Dragonar (1987, key animation)
Yoroiden Samurai Troopers (1988–1989, character design (with Akihiro Kanayama), chief animation director for opening and ending animation (last half of series))
Mobile Suit Victory Gundam (1993, key animation)
Yamiyo no Jidaigeki Rō no Saka (1995, character design, key animation (original illustrations))
Jūsenshi Gulkeeva (1995, key animation, opening/ending/DN animation)
The King of Braves GaoGaiGar (1997–1999, design work (with Tatsuya Suzuki of Seta), key animation)
Infinite Ryvius (1999, key animation)
InuYasha (2001–2004, design work, key animation)
Onmyō Taisenki (2004–2005, key animation)
Yakitate!! Japan (2004–2006, key animation)
Video games
Armored Troopers Votoms: The Battling Road (1993, character design)
Armored Troopers Votoms: Lightning Slash (1999, character design)
Sunrise Eiyūtan (1999, character key animation (with Yoshikazu Yasuhiko, others))
Sunrise Eiyūtan R (2000, character key animation (with Yoshikazu Yasuhiko, others))
Sunrise Eiyūtan 2 (2001, character key animation (with Yoshikazu Yasuhiko, others))
Internet broadcast
Kengō Retsuden #01: Hiken Tsubame Kaeshi (2006, original creator, animation)
OVA
Armored Trooper Votoms: The Last Red Shoulder (1985, character design, animation director)
Armored Troopers Votoms Vol.I: Stories of the A.T.Votoms (1985, character design, new footage key animation)
Armored Troopers Votoms Vol.II: Highlights of the A.T.Votoms (1985, character design, ending animation, new footage key animation)
Armored Troopers Votoms: Big Battle (1986, character design, animation director)
Armored Troopers Votoms: Kumen (1986, character design)
Armored Troopers Votoms: Udo (1986, character design)
Panzer World Galient Part I: Earth Chapter (1986, character design)
Panzer World Galient Part II: Sky Chapter (1986, character design)
Panzer World Galient Part III: Iron Crest (1986, character design, animation director)
Armored Troopers Votoms: Kuento (1988, ending animation)
Armored Troopers Votoms: The Red Shoulder Document: Roots of Ambition (1988, character design, animation director)
Armored Troopers Votoms: Sansa (1988, ending animation)
Yoroiden Samurai Troopers Gaiden (1989, character design)
Yoroiden Samurai Troopers: Legend of Kikoutei (1989–1990, character design, animation director (with Shukō Murase))
(1991, original creator, character design, supervising animation director, storyboards, key animation)
Samurai Troopers in Message (1991, character design, animation director)
Armored Troopers Votoms: Shining Heresy (1994, character design, supervising animation director)
Yamiyo no Jidaigeki: Bakumatsu Rakuchū Kawaraban (1995, character design, key animation, animation director)
The King of Braves GaoGaiGar Final (1999, key animation)
Armored Trooper Votoms: Pailsen Files (2007-2008, Character Design, Key Animation)
Film
Tiger Mask: Fukumen League-sen (1970, key animation)
Document: Fang of the Sun Dougram (1983, character design (with Sōji Yoshikawa), animation director, new footage key animation (with Moriyasu Taniguchi))
Japan Sunrise Anime Festival (1986, character designs and animation director for Armored Trooper Votoms: The Red Shoulder)
Neo Heroic Fantasia Arion (1986, image boards (with Yoshikazu Yasuhiko), key animation)
Yoroiden Samurai Troopers: Legend of Kikoutei (1990, character design, animation director (with Shukō Murase))
Mobile Suit Gundam F91 (1991, key animation)
InuYasha the Movie: Affections Touching Across Time (2001, key animation)
InuYasha the Movie: The Castle Beyond the Looking Glass (2002, key animation)
InuYasha the Movie: Swords of an Honorable Ruler (2003, key animation)
Sources:
Illustration works
Listed alphabetically in chronological order (oldest at top).
Novels
Fang of the Sun Dougram 1, by Hiroyuki Hoshiyama (October 1983, Asahi Sonorama)
Fang of the Sun Dougram 2, by Hiroyuki Hoshiyama (March 1984, Asahi Sonorama)
Armored Troopers Votoms: The First Red Shoulder, by Sōji Yoshikawa (June 1988, Tokuma Shoten)
Armored Troopers Votoms: The Last Red Shoulder, by Sōji Yoshikawa (June 1988, Tokuma Shoten)
Seijūshi Glint vol.1-3, by Yoshitake Suzuki (July 1991 - March 1993, Asahi Sonorama)
Ake-Ō Hōkōden 1: Gekishin no Hatō, by Masanori Hama (January 1991, Tairiki Shobō)
Mosaica, by Ryōsuke Takahashi (August 1992, Fujimi Shobo)
Kōkoku no Shugosha vol.1-7, by Daisuke Satō (June 1998 - September 2001, Chūō Kōron Shinsha)
Yoroiden Samurai Troopers: Eikonhen, by Yoshie Kawahara (July 1989, Keibunsha)
Yoroiden Samurai Troopers: Kankonhen, by Yoshie Kawahara (July 1989, Keibunsha)
Yoroiden Samurai Troopers: Kikōtei Densetsu, by Mamoru Hamatsu (April 1990, Keibunsha)
Armored Troopers Votoms I: Udo-hen, by Ryōsuke Takahashi (November 2002, Kadokawa Shoten)
Armored Troopers Votoms II: Kumen-hen, by Ryōsuke Takahashi (February 2003, Kadokawa Shoten)
Armored Troopers Votoms III: Sansa-hen, by Ryōsuke Takahashi (June 2003, Kadokawa Shoten)
Armored Troopers Votoms IV: Kuento-hen, by Ryōsuke Takahashi (October 2003, Kadokawa Shoten)
CD drama
Armored Troopers Votoms, by Ryōsuke Takahashi (December 1988, Asahi Sonorama cassette 21)
Yoroiden Samurai Troopers Memorials Deluxe, includes illustration book and video (June 1991, Sunrise, Movic)
CD Drama Collections: Sangokushi vol.1-8 (June 1992 - March 1994, character designs, illustration, Koei)
CD Drama Collections: Sangokushi: Highlights #1 (August 1994, character designs, illustration, Koei)
CD Drama Collections: Sangokushi: Zhuge Liang Seiranden vol.1-4 (March - December 1995, character designs, illustration, Koei)
Armored Troopers Votoms Digital Memorials 1 (October 1999, CD-ROM, Movic)
CD Drama Collections: Sangokushi DX (2003-03-26, character designs, illustration, Koei)
Onmyō Taisenki OP "Kimi to nara" ED "Sora Kakeagaru" Special Limited Edition (Onmyō Tōshinpu illustrations)
Manga
Shin Yoroiden Samurai Troopers, created by Hajime Yatate and Izumi Nikaidō, written by Yūji Hosoi, armor design by Hideo Okamoto (Shioyama is credited with the original character designs at the end of the book) (December 1992, Kodansha)
Collections
Shioyama Norio no Sekai: Odyssey (published in Hobby Japan from January 1987 through January 1988)
Shioyama Norio Gashū (October 1996, Movic)
Eikyū Hozonban: Shioyama Norio Artwork Kessakusen (March 2002, Village Center Publishing)
Silk screen artwork
These silk screen prints are available through the Eagle Gallery and Art Collection House KK.
From Armored Troopers Votoms and published in 2001 (all measurements in centimeters, listed width x height):
(33.2 × 48.9)
(64.4 × 44.8)
(64.2 × 32.3)
(34.8 × 49.9)
(44.8 × 64.8)
(64.8 × 44.8)
Original works gallery showings
Shioyama Norio Gengaten ~The World of Armored Trooper Votoms~
Nagoya, 22–24 September 2001, Nadia Park Design Center Building, 3F Design Hall
Fukuoka, 27 September - 1 October 2001, Club AS Galleria Arch, Galleria Arch Fukuoka
References
External links
Oh! Production official site
1940 births
2017 deaths
Anime character designers
Japanese animators
People from Kumamoto Prefecture
Sunrise (company) people
Deaths from fire in Japan
|
Robert Levin (born January 20, 1939, New York, New York) is an American writer of fiction and essays.
The author of When Pacino’s Hot, I’m Hot: A Miscellany of Stories & Commentary, Against Mental Health: Short Stories, The Killer and Other Stories, A Robert Levin Reader and Going Outside: Fiction • Commentary • Jazz, he is also the co-author and coeditor, respectively, of two collections of essays about jazz and rock in the 1960s: Music & Politics (with John Sinclair) and Giants of Black Music (with Pauline Rivelli).
In addition, his fiction and essays have appeared in a number of collections, including: Twenty-Minute Fandangoes and Forever Changes, Best of Nuvein Fiction, the Word Riot 2003 Anthology, Unlikely Stories of the Third Kind, Unspeakable—a PulpCult Anthology Of Contemporary Fiction, and ...Musings on a Manic Reality.
His comedic short story, "When Pacino’s Hot, I’m Hot," was a storySouth Million Writers Award "Notable Story" of 2004.
A staunch and sometimes bellicose defender of the free jazz movement of the 1960s, Levin wrote for The Village Voice (where his regular column played a significant role in establishing an audience for Cecil Taylor), Rolling Stone, Down Beat, Metronome, American Record Guide and Jazz & Pop (of which he was jazz editor).
Levin's Village Voice article "200,000 Invisible Men" (in which he questioned the tactics and ultimate value of the 1963 March on Washington) drew letters to the editor for the better part of a year and was quoted and discussed in a Norman Mailer Esquire column.
Characterized by Nat Hentoff as "a writer from whom I always learn something," Levin also wrote some 100 liner notes for Blue Note Records, Prestige Records, Impulse Records, and United Artists Records, encompassing albums by the likes of such artists as Miles Davis, John Coltrane, Thelonious Monk, Sonny Rollins, Cecil Taylor and Coleman Hawkins. Levin has said of his liner notes, many of which were written before he was twenty-one: "They’re all still out there and I wish I could rewrite every last one of them—especially the notes for [Coltrane’s] Blue Train."
References
StorySouth Million Writers Award Notable Stories 2004
Norman Mailer, "The Big Bite," Esquire, December 1963
Nat Hentoff, Foreword, Giants of Black Music, Da Capo Press 1971
External links
Shattercolors Author Interview
http://www.robertlevin.wordpress.com
1939 births
Living people
Writers from New York City
|
So Long, and Thanks for All the Fish is the fourth book of the Hitchhiker's Guide to the Galaxy "trilogy of six books" written by Douglas Adams. Its title is the message left by the dolphins when they departed Planet Earth just before it was demolished to make way for a hyperspace bypass, as described in The Hitchhiker's Guide to the Galaxy. A song of the same name was featured in the 2005 film adaptation of The Hitchhiker's Guide to the Galaxy.
Plot summary
While hitchhiking through the galaxy, Arthur Dent is dropped off on a planet in a rainstorm. He appears to be in England on Earth, even though he had seen the planet destroyed by the Vogons. He has been gone for several years, but only a few months have passed on Earth. He hitches a lift with a man named Russell and his sister Fenchurch (nicknamed "Fenny"). Russell explains that Fenny, who is sitting in a drugged state in the back seat of the car, became delusional after worldwide mass hysteria, in which everyone hallucinated "big yellow spaceships" (the Vogon destructor ships that "demolished" the Earth). Arthur becomes curious about Fenchurch, but he is dropped off before he can ask more questions. Inside his inexplicably undamaged home, Arthur finds a gift-wrapped bowl inscribed with the words "So long and thanks for all the fish", into which he puts his Babel Fish. Arthur thinks that Fenchurch is somehow connected to him and to the Earth's destruction. He still has the ability to fly whenever he lets his thoughts wander.
Arthur puts his life in order, and then tries to find out more about Fenchurch. He happens to find her hitchhiking and picks her up. He obtains her phone number, but shortly thereafter loses it. He discovers her home by accident when he searches for the cave in which he had lived on prehistoric Earth; Fenchurch's flat is built on the same spot. Arthur and Fenchurch find more circumstances connecting them. Fenchurch reveals that, moments before her "hallucinations", she had an epiphany about how to make everything right, but then blacked out. She has not been able to recall the substance of the epiphany. Eventually discovering that Fenchurch's feet do not touch the ground, Arthur teaches her how to fly. They have sex in the skies over London.
In her conversation with Arthur, Fenchurch learns about his adventures hitchhiking across the galaxy, and Arthur learns that all the dolphins disappeared shortly after the world hallucinations. Arthur and Fenchurch travel to California to see John Watson, an enigmatic scientist who claims to know why the dolphins disappeared. Watson has abandoned his original name in favour of "Wonko the Sane", because he believes that the rest of the world's population has gone mad. Watson shows them another bowl with the words "So long and thanks for all the fish" inscribed on it, and encourages them to listen to it. The bowl explains audibly that the dolphins, aware of the planet's coming destruction, left Earth for an alternate dimension. Before leaving, they pulled the Earth from a parallel universe into this one and transported everyone and everything onto it from the one about to be destroyed. After the meeting, Fenchurch tells Arthur that, while he lost something and later found it, she found something and later lost it. She desires that they travel to space together, and that they reach the site where God's Final Message to His Creation is written.
Ford Prefect discovers that the Hitchhiker's Guide entry for Earth has been updated to include the volumes of text that he originally wrote, instead of the previous truncated entry, "Mostly harmless". Curious, Ford hitchhikes across the galaxy to reach Earth. Eventually he uses the ship of a giant robot to land in the centre of London, causing a panic. In the chaos, Ford reunites with Arthur and the two of them and Fenchurch commandeer the robot's ship. Arthur takes Fenchurch to the planet where God's Final Message to His Creation is written, where they discover Marvin. Due to previous events, Marvin is now approximately 37 times older than the known age of the universe and is barely functional. With Arthur's and Fenchurch's help, Marvin reads the Message ("We apologise for the inconvenience"), utters the final words "I think... I feel good about it", and dies happily.
Style and themes
The novel has a very different tone from the previous books in the series. It is a romance, and also moves around in time more erratically than its predecessors. It is set largely on Earth; Arthur only returns to outer space in the final chapters. The different tone also reflects the rushed nature of the writing; Adams' editor Sonny Mehta moved in with him to ensure that the book met its deadline, which had been repeatedly extended. As a result, Adams later stated that he was not entirely happy with the book, which includes several jarring authorial intrusions, which his biographer Neil Gaiman described as "patronising and unfair".
The book also reflects a significant shift in Adams's view of computers. In the previous books, computers had been portrayed quite negatively, reflecting Adams' views on the subject at the time. However, between the writing of Life, the Universe and Everything and So Long, and Thanks for All the Fish, his attitude toward technology changed considerably. Having been taken to a computer fair, he became enamored of the first model of the Macintosh; the start of a long love affair with the brand (he claimed to have bought two of the first three Macs in the UK, the other being bought by his friend Stephen Fry). In So Long, and Thanks for All the Fish, Arthur Dent purchases an Apple computer for the purpose of star mapping in order to pinpoint the location of the cave he lived in on prehistoric Earth, and although Adams mocks Arthur's methodology (noting that he really has no idea of how to go about such a task), the computer itself is not disparaged, and produces the correct result despite Arthur's haphazard approach. In a later essay, Adams noted that some people had accused him of being a "turncoat" because of this change in his attitudes.
Literary significance and reception
In 1993, Library Journal said that So Long, and Thanks for all the Fish was "filled with loopy humor and pretzel logic that makes Adams' writing so delightful". Betsy Shorb, reviewing for School Library Journal, said that "the humor is still off-the-wall but more gentle than the other books. The plot is more straight forward and slightly less bizarre than its predecessors". Dave Langford reviewed So Long, and Thanks for All the Fish for White Dwarf #62, and stated that "Sequelholism has drained Adams of his high-speed inventiveness which made him famous. No doubt he'll agree with me all the way to the bank".
Audiobook adaptations
There have been three audiobook recordings of the novel. The first was an abridged edition, recorded in the mid-1980s by Stephen Moore, best known for playing the voice of Marvin the Paranoid Android in the radio series, LP adaptations and in the TV series. In 1990, Adams himself recorded an unabridged edition, later re-released by New Millennium Audio in the United States and available from BBC Audiobooks in the United Kingdom. In 2006, actor Martin Freeman, who had played Arthur Dent in the 2005 movie, recorded a new unabridged edition of the audiobook.
The Quandary Phase of the radio series is drawn from So Long and Thanks for All the Fish, but is not a direct audiobook reading.
Dedication
The dedication thanks, among others, "Mogens and Andy and all at Huntsham Court for a number of unstable events". This refers to the then country hotel in Devon where Adams retreated in the summer of 1984 to work on the book but instead enjoyed drinking wine with the owners and Steve Meretzky who had joined him to work on the Hitchhiker's video game.
In popular culture
In 1997, American punk rock band NOFX named their seventh studio album So Long and Thanks for All the Shoes in an obvious homage to this book.
In 2018, American rock band A Perfect Circle released a song titled "So Long, and Thanks for All the Fish" as a single off their album Eat the Elephant.
See also
Kiitoksia kaloista, a species of protozoa named after the book.
Footnotes
External links
1984 British novels
The Hitchhiker's Guide to the Galaxy novels
British science fiction novels
Novels by Douglas Adams
Fiction about dolphins
Comic science fiction novels
British comedy novels
Pan Books books
Harmony Books books
|
```c++
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of NVIDIA CORPORATION nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#include "GuLegacyTraceLineCallback.h"
#include "GuConvexMeshData.h"
#include "GuEdgeCache.h"
#include "GuConvexHelper.h"
#include "GuContactMethodImpl.h"
#include "GuContactBuffer.h"
using namespace physx;
using namespace Gu;
using namespace shdfnd::aos;
#define DISTANCE_BASED_TEST
// ptchernev TODO: make sure these are ok before shipping
static const bool gCompileConvexVertex = true;
static const bool gCompileEdgeEdge = true;
static const bool gCompileHeightFieldVertex = true;
/**
\param point vertex tested for penetration (in local hull space)
\param safeNormal if none of the faces are good this becomes the normal
\param normal the direction to translate vertex to depenetrate
\param distance the distance along normal to translate vertex to depenetrate
*/
static bool GuDepenetrateConvex( const PxVec3& point,
const PxVec3& safeNormal,
const Gu::ConvexHullData& hull,
float contactDistance,
PxVec3& normal,
PxReal& distance,
const Cm::FastVertex2ShapeScaling& scaling,
bool isConvexScaleIdentity)
{
PxVec3 faceNormal(PxReal(0));
PxReal distance1 = -PX_MAX_REAL; // cant be more
PxReal distance2 = -PX_MAX_REAL; // cant be more
PxI32 poly1 = -1;
PxI32 poly2 = -2;
// const Cm::FastVertex2ShapeScaling& scaling = context.mVertex2ShapeSkew[0];
for (PxU32 poly = 0; poly < hull.mNbPolygons; poly++)
{
PX_ALIGN(16, PxPlane) shapeSpacePlane;
if(isConvexScaleIdentity)
{
V4StoreA(V4LoadU(&hull.mPolygons[poly].mPlane.n.x), &shapeSpacePlane.n.x);
}
else
{
const PxPlane& vertSpacePlane = hull.mPolygons[poly].mPlane;
scaling.transformPlaneToShapeSpace(vertSpacePlane.n, vertSpacePlane.d, shapeSpacePlane.n, shapeSpacePlane.d);//transform plane into shape space
}
#ifdef DISTANCE_BASED_TEST
// PT: I'm not really sure about contactDistance here
const PxReal d = shapeSpacePlane.distance(point) - contactDistance;
#else
const PxReal d = shapeSpacePlane.distance(point);
#endif
if (d >= 0)
{
// no penetration at all
return false;
}
//const PxVec3& n = plane.normal;
const PxReal proj = shapeSpacePlane.n.dot(safeNormal);
if (proj > 0)
{
if (d > distance1) // less penetration
{
distance1 = d;
faceNormal = shapeSpacePlane.n;
poly1 = PxI32(poly);
}
// distance2 / d = 1 / proj
const PxReal tmp = d / proj;
if (tmp > distance2)
{
distance2 = tmp;
poly2 = PxI32(poly);
}
}
}
if (poly1 == poly2)
{
PX_ASSERT(faceNormal.magnitudeSquared() != 0.0f);
normal = faceNormal;
distance = -distance1;
}
else
{
normal = safeNormal;
distance = -distance2;
}
return true;
}
//Box-Heightfield and Convex-Heightfield do not support positive values for contactDistance,
//and if in this case we would emit contacts normally, we'd cause things to jitter.
//as a workaround we add contactDistance to the distance values that we emit in contacts.
//this has the effect that the biasing will work exactly as if we had specified a legacy skinWidth of (contactDistance - restDistance)
#include "GuContactMethodImpl.h"
namespace physx
{
namespace Gu
{
bool legacyContactConvexHeightfield(GU_CONTACT_METHOD_ARGS)
{
PX_UNUSED(cache);
PX_UNUSED(renderOutput);
#ifndef DISTANCE_BASED_TEST
PX_WARN_ONCE(contactDistance > 0.0f, "PxcContactConvexHeightField: Convex-Heightfield does not support distance based contact generation! Ignoring contactOffset > 0!");
#endif
// Get actual shape data
const PxConvexMeshGeometryLL& shapeConvex = shape0.get<const PxConvexMeshGeometryLL>();
const PxHeightFieldGeometryLL& hfGeom = shape1.get<const PxHeightFieldGeometryLL>();
Cm::Matrix34 convexShapeAbsPose(transform0);
Cm::Matrix34 hfShapeAbsPose(transform1);
PX_ASSERT(contactBuffer.count==0);
const Gu::HeightFieldTraceUtil hfUtil(hfGeom);
const Gu::HeightField& hf = hfUtil.getHeightField();
const bool isConvexScaleIdentity = shapeConvex.scale.isIdentity();
Cm::FastVertex2ShapeScaling convexScaling; // PT: TODO: remove default ctor
if(!isConvexScaleIdentity)
convexScaling.init(shapeConvex.scale);
const PxMat33& left = hfShapeAbsPose.m;
const PxMat33& right = convexShapeAbsPose.m;
Cm::Matrix34 convexShape2HfShape(left.getInverse()* right, left.getInverse()*(convexShapeAbsPose.p - hfShapeAbsPose.p));
Cm::Matrix34 convexVertex2World( right * convexScaling.getVertex2ShapeSkew(),convexShapeAbsPose.p );
// Allocate space for transformed vertices.
const Gu::ConvexHullData* PX_RESTRICT hull = shapeConvex.hullData;
PxVec3* PX_RESTRICT convexVerticesInHfShape = reinterpret_cast<PxVec3*>(PxAlloca(hull->mNbHullVertices*sizeof(PxVec3)));
// Transform vertices to height field shape
PxMat33 convexShape2HfShape_rot(convexShape2HfShape[0],convexShape2HfShape[1],convexShape2HfShape[2]);
Cm::Matrix34 convexVertices2HfShape(convexShape2HfShape_rot*convexScaling.getVertex2ShapeSkew(), convexShape2HfShape[3]);
const PxVec3* const PX_RESTRICT hullVerts = hull->getHullVertices();
for(PxU32 i = 0; i<hull->mNbHullVertices; i++)
convexVerticesInHfShape[i] = convexVertices2HfShape.transform(hullVerts[i]);
PxVec3 convexBoundsInHfShapeMin( PX_MAX_REAL, PX_MAX_REAL, PX_MAX_REAL);
PxVec3 convexBoundsInHfShapeMax(-PX_MAX_REAL, -PX_MAX_REAL, -PX_MAX_REAL);
// Compute bounds of convex in hf space
for(PxU32 i = 0; i<hull->mNbHullVertices; i++)
{
const PxVec3& v = convexVerticesInHfShape[i];
convexBoundsInHfShapeMin.x = PxMin(convexBoundsInHfShapeMin.x, v.x);
convexBoundsInHfShapeMin.y = PxMin(convexBoundsInHfShapeMin.y, v.y);
convexBoundsInHfShapeMin.z = PxMin(convexBoundsInHfShapeMin.z, v.z);
convexBoundsInHfShapeMax.x = PxMax(convexBoundsInHfShapeMax.x, v.x);
convexBoundsInHfShapeMax.y = PxMax(convexBoundsInHfShapeMax.y, v.y);
convexBoundsInHfShapeMax.z = PxMax(convexBoundsInHfShapeMax.z, v.z);
}
const bool thicknessNegOrNull = (hf.getThicknessFast() <= 0.0f); // PT: don't do this each time! FCMPs are slow.
// Compute the height field extreme over the bounds area.
const PxReal oneOverRowScale = hfUtil.getOneOverRowScale();
const PxReal oneOverColumnScale = hfUtil.getOneOverColumnScale();
PxU32 minRow;
PxU32 maxRow;
PxU32 minColumn;
PxU32 maxColumn;
minRow = hf.getMinRow(convexBoundsInHfShapeMin.x * oneOverRowScale);
maxRow = hf.getMaxRow(convexBoundsInHfShapeMax.x * oneOverRowScale);
minColumn = hf.getMinColumn(convexBoundsInHfShapeMin.z * oneOverColumnScale);
maxColumn = hf.getMaxColumn(convexBoundsInHfShapeMax.z * oneOverColumnScale);
PxReal hfExtreme = hf.computeExtreme(minRow, maxRow, minColumn, maxColumn);
hfExtreme *= hfGeom.heightScale;
// Return if convex is on the wrong side of the extreme.
if (thicknessNegOrNull)
{
if (convexBoundsInHfShapeMin.y > hfExtreme) return false;
}
else
{
if (convexBoundsInHfShapeMax.y < hfExtreme) return false;
}
// Test convex vertices
if (gCompileConvexVertex)
{
for(PxU32 i=0; i<hull->mNbHullVertices; i++)
{
const PxVec3& convexVertexInHfShape = convexVerticesInHfShape[i];
//////// SAME CODE AS IN BOX-HF
const bool insideExtreme = thicknessNegOrNull ? (convexVertexInHfShape.y < hfExtreme) : (convexVertexInHfShape.y > hfExtreme);
if (insideExtreme && hfUtil.isShapePointOnHeightField(convexVertexInHfShape.x, convexVertexInHfShape.z))
{
// PT: compute this once, reuse results (3 times!)
// PT: TODO: also reuse this in EE tests
PxReal fracX, fracZ;
const PxU32 vertexIndex = hfUtil.getHeightField().computeCellCoordinates(convexVertexInHfShape.x * oneOverRowScale, convexVertexInHfShape.z * oneOverColumnScale, fracX, fracZ);
const PxReal y = hfUtil.getHeightAtShapePoint2(vertexIndex, fracX, fracZ);
const PxReal dy = convexVertexInHfShape.y - y;
#ifdef DISTANCE_BASED_TEST
if (hf.isDeltaHeightInsideExtent(dy, params.mContactDistance/**2.0f*/))
#else
if (hf.isDeltaHeightInsideExtent(dy))
#endif
{
const PxU32 faceIndex = hfUtil.getFaceIndexAtShapePointNoTest2(vertexIndex, fracX, fracZ);
if (faceIndex != 0xffffffff)
{
PxVec3 n;
n = hfUtil.getNormalAtShapePoint2(vertexIndex, fracX, fracZ);
n = n.getNormalized();
contactBuffer
#ifdef DISTANCE_BASED_TEST
.contact(convexVertex2World.transform(hullVerts[i]), hfShapeAbsPose.rotate(n), n.y*dy/* - contactDistance*/, faceIndex);
#else
.contact(convexVertex2World.transform(hullVerts[i]), hfShapeAbsPose.rotate(n), n.y*dy + contactDistance, faceIndex);//add contactDistance to compensate for fact that we don't support dist based contacts! See comment at start of funct.
#endif
}
}
}
////////~SAME CODE AS IN BOX-HF
}
}
// Test convex edges
if (gCompileEdgeEdge)
{
// create helper class for the trace segment
GuContactHeightfieldTraceSegmentHelper traceSegmentHelper(hfUtil);
if(1)
{
PxU32 numPolygons = hull->mNbPolygons;
const Gu::HullPolygonData* polygons = hull->mPolygons;
const PxU8* vertexData = hull->getVertexData8();
ConvexEdge edges[512];
PxU32 nbEdges = findUniqueConvexEdges(512, edges, numPolygons, polygons, vertexData);
for(PxU32 i=0;i<nbEdges;i++)
{
const PxVec3 convexNormalInHfShape = convexVertices2HfShape.rotate(edges[i].normal);
if(convexNormalInHfShape.y>0.0f)
continue;
const PxU8 vi0 = edges[i].vref0;
const PxU8 vi1 = edges[i].vref1;
const PxVec3& sv0 = convexVerticesInHfShape[vi0];
const PxVec3& sv1 = convexVerticesInHfShape[vi1];
if (thicknessNegOrNull)
{
if ((sv0.y > hfExtreme) && (sv1.y > hfExtreme)) continue;
}
else
{
if ((sv0.y < hfExtreme) && (sv1.y < hfExtreme)) continue;
}
GuContactTraceSegmentCallback cb(sv1 - sv0, contactBuffer, hfShapeAbsPose, params.mContactDistance);
traceSegmentHelper.traceSegment(sv0, sv1, &cb);
}
}
else
{
Gu::EdgeCache edgeCache;
PxU32 numPolygons = hull->mNbPolygons;
const Gu::HullPolygonData* polygons = hull->mPolygons;
const PxU8* vertexData = hull->getVertexData8();
while (numPolygons--)
{
const Gu::HullPolygonData& polygon = *polygons++;
const PxU8* vRefBase = vertexData + polygon.mVRef8;
PxU32 numEdges = polygon.mNbVerts;
PxU32 a = numEdges - 1;
PxU32 b = 0;
while(numEdges--)
{
PxU8 vi0 = vRefBase[a];
PxU8 vi1 = vRefBase[b];
if(vi1 < vi0)
{
PxU8 tmp = vi0;
vi0 = vi1;
vi1 = tmp;
}
a = b;
b++;
// avoid processing edges 2x if possible (this will typically have cache misses about 5% of the time
// leading to 5% redundant work).
if (edgeCache.isInCache(vi0, vi1))
continue;
const PxVec3& sv0 = convexVerticesInHfShape[vi0];
const PxVec3& sv1 = convexVerticesInHfShape[vi1];
if (thicknessNegOrNull)
{
if ((sv0.y > hfExtreme) && (sv1.y > hfExtreme))
continue;
}
else
{
if ((sv0.y < hfExtreme) && (sv1.y < hfExtreme))
continue;
}
GuContactTraceSegmentCallback cb(sv1 - sv0, contactBuffer, hfShapeAbsPose, params.mContactDistance);
traceSegmentHelper.traceSegment(sv0, sv1, &cb);
}
}
}
}
// Test height field vertices
if (gCompileHeightFieldVertex)
{
// Iterate over HeightField vertices inside the projected box bounds.
for(PxU32 row = minRow; row <= maxRow; row++)
{
for(PxU32 column = minColumn; column <= maxColumn; column++)
{
const PxU32 vertexIndex = row * hf.getNbColumnsFast() + column;
if (!hfUtil.isCollisionVertex(vertexIndex, row, column))
continue;
const PxVec3 hfVertex(hfGeom.rowScale * row, hfGeom.heightScale * hf.getHeight(vertexIndex), hfGeom.columnScale * column);
const PxVec3 nrm = hfUtil.getVertexNormal(vertexIndex, row, column);
PxVec3 hfVertexNormal = thicknessNegOrNull ? nrm : -nrm;
hfVertexNormal = hfVertexNormal.getNormalized();
const PxVec3 hfVertexNormalInConvexShape = convexShape2HfShape.rotateTranspose(hfVertexNormal);
PxVec3 hfVertexInConvexShape = convexShape2HfShape.transformTranspose(hfVertex);
PxReal depth;
PxVec3 normal;
if (!GuDepenetrateConvex(hfVertexInConvexShape, -hfVertexNormalInConvexShape, *hull, params.mContactDistance, normal, depth,
convexScaling,
isConvexScaleIdentity))
{
continue;
}
PxVec3 normalInHfShape = convexShape2HfShape.rotate(-normal);
hfUtil.clipShapeNormalToVertexVoronoi(normalInHfShape, vertexIndex, row, column);
if (normalInHfShape.dot(hfVertexNormal) < PX_EPS_REAL) // AP scaffold: verify this is impossible
continue;
normalInHfShape = normalInHfShape.getNormalized();
PxU32 faceIndex = hfUtil.getVertexFaceIndex(vertexIndex, row, column);
contactBuffer
.contact(hfShapeAbsPose.transform(hfVertex), hfShapeAbsPose.rotate(normalInHfShape),
#ifdef DISTANCE_BASED_TEST
-depth,
#else
//add contactDistance to compensate for fact that we don't support dist based contacts!
// See comment at start of funct.
-depth + contactDistance,
#endif
faceIndex);
}
}
}
return contactBuffer.count>0;
}
}//Gu
}//physx
```
|
The 2002 Euro Formula 3000 Championship was scheduled over 10 rounds and contested over 9 rounds. 14 different teams, 35 different drivers competed. All teams raced with Lola T99/50 chassis with Zytek engines.
Entries
Race calendar
Note:
Race 1 originally scheduled over 47 laps but stopped early due to rain.
The race in Cagliari was originally scheduled for 10 October.
Results
Note:
Race 1 originally scheduled over 47 laps but stopped early due to rain.
The race in Cagliari was originally scheduled for 10 October.
Championships standings
References
External links
Official Euroseries 3000 site
Euro Formula 3000
Euro Formula 3000
Auto GP
Euro Formula 3000
|
The Artsakh Defence Army () was the defence force of the breakaway Republic of Artsakh. Established in 1992, it united previously disorganized self-defence units which were formed in the early 1990s with the goal of protecting the ethnic Armenian population of Nagorno-Karabakh from attacks by Soviet and Azerbaijani armed forces.
It was disbanded on 21 September 2023 under the terms of Nagorno-Karabakh ceasefire agreement following the 2023 Azerbaijani military offensive.
History
Establishment
The Artsakh Defence Army was founded on 9 May 1992. It created "its own central command and military structure distinct from the Armenian Army." Its founders included Robert Kocharyan (the former President of Armenia, he was the first commander-in-chief of the Army); Serzh Sargsyan (former Prime Minister and President of Armenia); Vazgen Sargsyan (Armenia's Defence Minister 1992–93, State Minister in Charge of defence 1993–95, Armenia's Prime Minister 1998–99); Monte Melkonian (responsible for Martuni Province); Samvel Babayan (Nagorno-Karabakh's Defence Minister from 1994 to 2000) and others. Many of the men who served in its ranks and in the officer corps during the First Nagorno-Karabakh War were seasoned veterans of the Soviet military and had fought in the Soviet–Afghan War.
First Nagorno-Karabakh War
The formal formation of the NKR Defence Army was rooted in the concept of the Jokat (volunteer detachment). With the early outbreak of hostilities prior to 1992, Armenians of Nagorno-Karabakh began forming small detachments of volunteers, often self-described as Fedayeen, inheriting the name of the fighters who actively resisted the Ottoman Empire in the final decades of the nineteenth and early decades of the twentieth centuries.
At the outset these detachments were small groups of no more than 12–40 men. For example, during Operation Ring, Shahumyan was defended by a force as small as 22 men under the command of Tatul Krpeyan. These volunteer militia would initially arm themselves with whatever was available, including hunting shotguns borrowed from local farmers and even home-made rifles. In the later stages of the war, these units armed themselves with AK-47s, RPGs and sometimes MANPADs, transforming the defence force into a highly mobile and flexible force that was capable of waging guerrilla warfare. Likewise, these units initially had no heavy military equipment, but later started taking over large quantities of Azerbaijani tanks and armored personnel carriers that were abandoned on the battlefield. Most of these captured tanks and APCs later became part of the NKR Defense Army's equipment. Improvization, multi-functionality, creativity, strong-morale, focus on defensive tactics, adaptation, flexibility, high-mobility and a native knowledge of the mountainous terrain are all important factors in understanding the combat success of these small units.
The initial purpose of these detachments, made up of volunteers, was mainly to defend Armenian civilian population, each in a particular village or town. Each of them was operating independently with no central command or leadership. Yet, these units would regularly collaborate in joint operations such as the battle of Khojaly in February 1992 or the June 1992 surprise counter-offensives during Operation Goranboy. The increasing scale and intensity of Azerbaijani attacks, the devastation caused by Grad multiple rocket launchers firing from Shusha and the Lachin, the blockade from mainland Armenia had broadened the notion of security beyond the mere defence of a small village. Capturing Shusha and Lachin as well as turning the tide of Operation Goranboy became, for the Armenians, not only a matter of security, but that of survival. For the successful conduct of such large-scale operations, the detachments had to be consolidated under a single, unified command.
Mient Jan Faber argues that "August 1992 marked the watershed between purely voluntary Armenian Karabakh forces reinforced by volunteers from Armenia and an organised NKR army with its own central command and a military structure distinct from the Armenian army."
Post war
The Nagorno-Karabakh Defence Army's primary role after the conclusion of the First Nagorno-Karabakh War in 1994 is the protection of the NKR from foreign and domestic threats. Though the war ended with the signing of a cease fire between Armenia, Nagorno-Karabakh and Azerbaijan and the de facto independence of the NKR, the Azerbaijani leadership repeatedly threatened to restart hostilities to retake the region. Violations of the cease fire along the line of contact were frequent and often resulted in the deaths of several soldiers and civilians each year. One of the most significant breaches of the ceasefire occurred in Martakert on 8 March 2008, when up to sixteen soldiers were killed. Both sides accused the other of starting the battle. In June 2010, new skirmishes broke out between Armenian and Azerbaijani troops along the line of contact, resulting in the deaths of four Armenian servicemen. Clashes in summer 2014 resulted in the deaths of six Armenian and thirteen Azerbaijani servicemen. On 12 November 2014, a Nagorno-Karabakh Defence Army Mi-24 attack helicopter participating in the week-long joint Armenian–NKR Unity 2014 military exercises was shot down by the Azerbaijani military, killing all three crew members. On 1 April 2016 large scale clashes began along the line of contact, which lasted for four days and came to be known as the Four-Day War. According to several sources they were the worst since 1994. These clashes culminated in the 2020 Nagorno-Karabakh war, in which the Artsakh Defence Army was defeated while fighting against the military of Azerbaijan and Turkey. Turkish President Recep Tayyip Erdogan Erdogan admitted that Turkey provided military and diplomatic backing to Azerbaijan during the fighting. During the war, Turkey sent a number of Syrian opposition fighters as mercenaries to fight against Armenian forces, including fighters from Sultan Murad Division and Hamza Division.
In May 2021, President Arayik Harutyunyan announced plans to transform the Defense Army into a professional combat force.
It was disbanded on 21 September 2023 following the 2023 Nagorno-Karabakh clashes, as one of the conditions imposed by Azerbaijan to end the clashes.
Structure
The Ministry of Defence serves as the chief administrative body of the Defence Army.
Chiefs of Staff
Lieutenant General Anatoly Zinevich (1994–1997)
Major General Kamo Vardanyan (-11 September 2021)
Defense Districts
The five Defense Districts are as follows:
Central Defense District
NKR self-defense detachments were formed on 22 February 1988. At the end of 1991 and at the beginning of 1992, more than ten volunteer detachments and detachments were formed in Stepanakert and included more than a thousand fighters. Motorized regiments were then formed on the basis of the following structure:
1st Motorized Rifle Battalion
2nd Motorized Rifle Battalion
3rd Motorized Rifle Battalion
In September 1989, the Central Defense District (also known as the Stepanakert Defense District) was formed on the basis of those battalions. The 8th Separate Motorized Rifle Brigade is part of the district, being formed on 14 October 1992. It is named after "Commander Vazgen Sargsyan".
Hadrut Defense District
Its first battalion was formed on 16 July 1992. The district was formed in September 1992, in accordance with the order of the Chairman of the Committee for Self-Defense of the Artsakh Republic in August 1992.
Martuni Defense District
It was formed in September 1991 by the order of the President on the basis of self-defense detachments and platoon operating in the region. The Mataghis Military Unit is part of the district. It was based in the Madagiz settlement of the Martakert Province. In May 2017, the commander and two deputies of the military unit were dismissed after 3 soldiers drowned after their UAZ-315195 vehicle fell into a reservoir. Among its notable commanders was Mikael Arzumanyan, the current Commander of the Defense Army, serving as the commander of the unit at the age of 22.
Shahumyan Defensive Region
The Yeghnikner ("The Deers") Detachment was founded on 11 March 1993 and is considered to be one of the most elite units of the army of the unrecognized republic. It originated from a partisan unit created by Shahen Meghryan, which was formed on 25 June 1992 from self-defense detachments of the district villages. Among its symbols were the coat of arms of the Meliks of Gulistan and its unit banner. The Shahumyan Defensive Region (SDR) was formed by the Chairman of the Self Defense Committee in March 1993, originally incorporating two battalions Between 1993 and 1994, SDR units participated in battles and operations in Martakert and Shahumyan.
On 2 October 2021, President Arayik Harutyunyan conferred the title of Hero of Artsakh on the commander of the Yeghnikner unit Karen Jalavyan. After the 2020 war, rumors on the Internet claimed that the unit had to leave its positions, which was denied by the commander.
Askeran Defense District
Askeran Defense District was formed by the order of the NKR IPC President of August 14, 1992. There are 4 rifle battalions in the district:
1st Rifle Battalion
2nd Rifle Battalion
3rd Rifle Battalion
4th Rifle Battalion
Personnel
The Artsakh Defence Army is currently composed of around 20,000 officers and soldiers and maintains a "constant state of readiness, undergoing more serious combat training and operational exercises than any other former Soviet army." The Nagorno-Karabakh Defence Army maintains a small air force with a personnel of around 250 men. The Army is a conscript force, with there also being a growing number of professional officers.
Personnel units
Special Forces
The Special Forces of the Artsakh Defense Army was established in 2000. Based on the previous National Guard, it carries out both of planned and unplanned combat operations. Among its notable commanders were Samvel Harutyunyan. On 11 August 2010, a memorial fountain was unveiled in Aygestan community of Askeran region on August 10 in memory of the fallen soldiers of the Special Forces. The memorial was built with the financial means of the former and current servicemen of the detachment. Their professional holiday is on 5 November.
Engineer Battalion
The Defense Army has an engineering battalion that is involved in the clearance of minefields of strategic importance. It was formed on 1 February 1995. Roles Aghajanyan was the first head of the Defence Army engineering services.
Educational institutions
Vazgen Sargsyan Military University
Kristapor Ivanyan Military College
Armenak Khanperyants Military Aviation University
Yerevan State Medical University Military Faculty
Equipment
The Nagorno-Karabakh Defence Army's equipment consists of infantry, tanks, artillery and anti-aircraft systems. The Karabakh army's heavy military hardware includes: 186 tanks, 68 armoured vehicles, 98 artillery pieces of calibres over 122mm, 44 multiple rocket launchers (most likely BM-21 Grad), and an anti-aircraft defence system of an unspecified type WM-80, Scud-B: at least 4 launchers.
As for infantry, most rely on the AK-74 rifle and older AKMs in reserve for standard-issue rifles. Other basic weapons consist of Makarov PM pistols, PK machine guns, and RPG-7 rocket launchers, all mostly supplied by Armenia. The Nagorno-Karabakh military is deeply integrated with the Armenian military, and the NKR depends on the Armenian Army to ensure its survival as an independent national entity. Armenia considers any act of aggression against Karabakh as an act of aggression against itself.
Ground Forces
Small arms
Artsakh Defence Army's equipment (before dissolution)
Available estimates vary with reference to military holdings in Nagorno-Karabakh and must be treated with caution due to the heavy levels of attrition in the 2020 conflict and subsequent clashes.
Military holidays
Shushi Liberation Day (9 May) and Homeland Defender's Day (28 January) are two military holidays celebrated by the Defence Army. The former commemorates the founding of the military as well as the Capture of Shusha and the traditional Victory Day celebrations commemorating the surrender of Nazi Germany at the end of the Great Patriotic War in 1945. Because of this, it is sometimes referred to as a "triple holiday". An annual military parade is held in the capital, with a reception being held at the local House of Officers in the capital.
Whereas the Armenian Army celebrates Army Day on 28 January, the Defence Army celebrates Homeland Defender's Day on the same day.
See also
Land mine situation in Nagorno-Karabakh
References
External links
Important Facts about the NKR Defence Army (Nagorno Karabakh Army). Office of the Nagorno-Karabakh Republic, Washington, D.C.
Official website of NKR Ministry of Defence
Official YouTube Channel of the NKR Defence Army
Military units and formations established in 1992
Military units and formations disestablished in 2023
Military of the Republic of Artsakh
Military of Armenia
2023 disestablishments in Asia
2023 disestablishments in Europe
|
Oćwieka is a village in the administrative district of Gmina Gąsawa, within Żnin County, Kuyavian-Pomeranian Voivodeship, in north-central Poland. It lies approximately south-east of Gąsawa, south-east of Żnin, and south of Bydgoszcz.
References
Villages in Żnin County
|
Torville Ashburn M. Jones (born 6 April 1984), better known by the stage name Tokio Myers, is an English musician and record producer best known for his work as a pianist. He won the reality show Britain's Got Talent in 2017, after which he released many of his independent compositions, including his debut album Our Generation.
Early life
Myers was born Torville Ashburn M. Jones in London on 6 April 1984. He is of West Indian descent. As an 11-year-old student at St George's Catholic School in Maida Vale, he witnessed the murder of the school's Irish headmaster Philip Lawrence at the hands of a local youth branch of the Wo Shing Wo gang, and was ushered to safety inside the building by his music teacher. He later studied with a full scholarship at the Royal College of Music.
Career
Myers has previously supported Kanye West, The Police, and Amy Winehouse when he toured with producer Mr Hudson's band Mr Hudson and the Library. Myers also supported Lianne La Havas on her 2016 European Tour.
He used synths and a sample pad as part of his performances, fusing classical roots with dance and pop genres. He was signed to a publishing deal with BMG.
In June 2017, Myers featured in and co-produced a charity single of "Bridge over Troubled Water" to raise money for those impacted by the Grenfell Tower fire, which happened in North Kensington on 14 June 2017.
On 13 October 2017, he released his official debut single, entitled "Bloodstream", which is his studio rendition of his audition performance at Britain's Got Talent. It was also announced as being the lead single from his debut album, entitled Our Generation, which being released in November 2017.
On 5 November 2017, Myers performed as a guest on The X Factor, performing "Angel", and he returned in the final, to duet with Kevin Davy White performing "Fastlove, Pt. 1" by George Michael.
On 4 February 2019, Myers competed in America's Got Talent: The Champions. The first time travelling to the US, his performance consisted of performing a medley of Claude Debussy's "Clair de lune" and Ed Sheeran's "Bloodstream" on the piano and drums. He failed to make it to the final. He returned in the finale as a guest along with Voices of Hope Children's Choir, performing "All We Got" by Robin Schulz.
On 11 September 2019, Myers performed as a guest on America's Got Talent along with Stewart Copeland, performing "Safe and Sound". English singer Grace Davies performed the vocals.
Discography
Studio albums
Singles
As lead artist
As featured artist
Remixes
References
External links
Official website
1984 births
Living people
Britain's Got Talent winners
British classical pianists
British pop pianists
Black British musicians
British people of Barbadian descent
British multi-instrumentalists
Musicians from London
Alumni of the Royal College of Music
21st-century British pianists
|
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
import nanstdev = require( './index' );
// TESTS //
// The function returns a number...
{
const x = new Float64Array( 10 );
nanstdev( x.length, 1, x, 1 ); // $ExpectType number
}
// The compiler throws an error if the function is provided a first argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev( '10', 1, x, 1 ); // $ExpectError
nanstdev( true, 1, x, 1 ); // $ExpectError
nanstdev( false, 1, x, 1 ); // $ExpectError
nanstdev( null, 1, x, 1 ); // $ExpectError
nanstdev( undefined, 1, x, 1 ); // $ExpectError
nanstdev( [], 1, x, 1 ); // $ExpectError
nanstdev( {}, 1, x, 1 ); // $ExpectError
nanstdev( ( x: number ): number => x, 1, x, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a second argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev( x.length, '10', x, 1 ); // $ExpectError
nanstdev( x.length, true, x, 1 ); // $ExpectError
nanstdev( x.length, false, x, 1 ); // $ExpectError
nanstdev( x.length, null, x, 1 ); // $ExpectError
nanstdev( x.length, undefined, x, 1 ); // $ExpectError
nanstdev( x.length, [], x, 1 ); // $ExpectError
nanstdev( x.length, {}, x, 1 ); // $ExpectError
nanstdev( x.length, ( x: number ): number => x, x, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a third argument which is not a numeric array...
{
const x = new Float64Array( 10 );
nanstdev( x.length, 1, 10, 1 ); // $ExpectError
nanstdev( x.length, 1, '10', 1 ); // $ExpectError
nanstdev( x.length, 1, true, 1 ); // $ExpectError
nanstdev( x.length, 1, false, 1 ); // $ExpectError
nanstdev( x.length, 1, null, 1 ); // $ExpectError
nanstdev( x.length, 1, undefined, 1 ); // $ExpectError
nanstdev( x.length, 1, [ '1' ], 1 ); // $ExpectError
nanstdev( x.length, 1, {}, 1 ); // $ExpectError
nanstdev( x.length, 1, ( x: number ): number => x, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a fourth argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev( x.length, 1, x, '10' ); // $ExpectError
nanstdev( x.length, 1, x, true ); // $ExpectError
nanstdev( x.length, 1, x, false ); // $ExpectError
nanstdev( x.length, 1, x, null ); // $ExpectError
nanstdev( x.length, 1, x, undefined ); // $ExpectError
nanstdev( x.length, 1, x, [] ); // $ExpectError
nanstdev( x.length, 1, x, {} ); // $ExpectError
nanstdev( x.length, 1, x, ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the function is provided an unsupported number of arguments...
{
const x = new Float64Array( 10 );
nanstdev(); // $ExpectError
nanstdev( x.length ); // $ExpectError
nanstdev( x.length, 1 ); // $ExpectError
nanstdev( x.length, 1, x ); // $ExpectError
nanstdev( x.length, 1, x, 1, 10 ); // $ExpectError
}
// Attached to main export is an `ndarray` method which returns a number...
{
const x = new Float64Array( 10 );
nanstdev.ndarray( x.length, 1, x, 1, 0 ); // $ExpectType number
}
// The compiler throws an error if the `ndarray` method is provided a first argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev.ndarray( '10', 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( true, 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( false, 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( null, 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( undefined, 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( [], 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( {}, 1, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( ( x: number ): number => x, 1, x, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a second argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev.ndarray( x.length, '10', x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, true, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, false, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, null, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, undefined, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, [], x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, {}, x, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, ( x: number ): number => x, x, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a third argument which is not a numeric array...
{
const x = new Float64Array( 10 );
nanstdev.ndarray( x.length, 1, 10, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, '10', 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, true, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, false, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, null, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, undefined, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, [ '1' ], 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, {}, 1, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, ( x: number ): number => x, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a fourth argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev.ndarray( x.length, 1, x, '10', 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, true, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, false, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, null, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, undefined, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, [], 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, {}, 0 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, ( x: number ): number => x, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a fifth argument which is not a number...
{
const x = new Float64Array( 10 );
nanstdev.ndarray( x.length, 1, x, 1, '10' ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, true ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, false ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, null ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, undefined ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, [] ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, {} ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided an unsupported number of arguments...
{
const x = new Float64Array( 10 );
nanstdev.ndarray(); // $ExpectError
nanstdev.ndarray( x.length ); // $ExpectError
nanstdev.ndarray( x.length, 1 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1 ); // $ExpectError
nanstdev.ndarray( x.length, 1, x, 1, 0, 10 ); // $ExpectError
}
```
|
```less
@import '~themes/vars';
.result {
height: 600px;
width: 100%;
background: @hover-color;
border-color: #ddd;
padding: 16px;
margin-top: 16px;
word-break: break-word;
line-height: 2;
overflow: scroll;
}
.requestList {
padding-right: 24px;
margin-bottom: 24px;
.listItem {
cursor: pointer;
padding-left: 8px;
&.lstItemActive {
background-color: @hover-color;
}
.background-hover();
}
}
.paramsBlock {
overflow: visible;
opacity: 1;
height: auto;
transition: opacity 0.3s;
&.hideParams {
width: 0;
height: 0;
opacity: 0;
overflow: hidden;
}
}
```
|
Yagodina () is a rural locality (a village) in Yorgvinskoye Rural Settlement, Kudymkarsky District, Perm Krai, Russia. The population was 43 as of 2010.
Geography
Yagodina is located 21 km north of Kudymkar (the district's administrative centre) by road. Pronina is the nearest rural locality.
References
Rural localities in Kudymkarsky District
|
```css
Change the style of the decoration with `text-decoration-style`
Use `em` instead of `px` for sizes
Using the `font-variant` property to transform text to small caps
Load custom fonts on a web page using `@font-face`
Comma-separated lists
```
|
```smalltalk
using System;
using System.Collections.Generic;
namespace CSharpFunctionalExtensions
{
public static partial class MaybeExtensions
{
public static IEnumerable<U> Choose<T, U>(this IEnumerable<Maybe<T>> source, Func<T, U> selector)
{
using (var enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
var item = enumerator.Current;
if (item.HasValue) yield return selector(item.GetValueOrThrow());
}
}
}
public static IEnumerable<T> Choose<T>(this IEnumerable<Maybe<T>> source)
{
using (var enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
var item = enumerator.Current;
if (item.HasValue) yield return item.GetValueOrThrow();
}
}
}
}
}
```
|
Anexartisias Street is located in the Old Town of Limassol. It hosts many retail stores as well as Gregori Afxentiou Square, where events (such as New Year's Eve) are held.
History
The street first showed signs of growth in 1923; The Independence of The Republic of Cyprus in 1960 was an important day in the History of Cyprus, and it was the call for the street to be named after it; Anexartisias (, meaning “Independence”).
In its first years of growth, the Limassol Hospital (now the District Administration Building) was built; during the times when the street wasn't named.
Around 1930–1940 the street was referred to as “Macedonias Street”.
Features
The main attractions are, evidently, the multitude of shops and cafes hosted on the street, which are what made it so well known to the residents of the area.
Other than shops, the District Office is also located in the street. The District administration also takes part in decorating the street and the surrounding ones with decorations (for example: Christmas).
Controversies & Incidents
Incidents
Collapsed Roof, February 2022
On Sunday (20/02), the roof of a building collapsed, after renovations; due to poor concrete stability testing. Pedestrians and vehicles were in the incident site during the collapse; with no injuries or damages to the vehicles. The building was owned by a church administration in the area.
Controversies
H&M Opening
In February 2021, the Swedish-Brand, H&M, announced that they were building a new branch in the street. It was scheduled to open the Summer of that year. The opening was later postponed to 18 November 2021, before it was finally opened 3 March 2022. The 8-month delay surely had upset many shoppers and once it opened, there was criticism around the “unfinished” building, especially after months of delay.
Transportation
EMEL ANEXARTISIAS - DISTRICT OFFICE
The street is a two-lane road, mainly connected by Gladstonos (Dual-Carriageway) and 28 October Avenue.
The street is also connected to many smaller neighborhoods and roads.
See also
Limassol District
List of shopping streets and districts by city
List of shopping malls in Cyprus
Cyprus
References
Streets in Cyprus
|
```go
package multiratelimit
import (
"sync"
"time"
"golang.org/x/time/rate"
)
type MultiRatelimiter struct {
mu sync.Mutex
limiters map[interface{}]*rate.Limiter
maxPerSecond float64
maxBurst int
}
func NewMultiRatelimiter(maxPerSecond float64, maxBurst int) *MultiRatelimiter {
multiLimiter := &MultiRatelimiter{
limiters: make(map[interface{}]*rate.Limiter),
maxPerSecond: maxPerSecond,
maxBurst: maxBurst,
}
return multiLimiter
}
func (multi *MultiRatelimiter) findCreateLimiter(key interface{}) *rate.Limiter {
multi.mu.Lock()
defer multi.mu.Unlock()
if current, ok := multi.limiters[key]; ok {
return current
}
// not found, create it
multi.limiters[key] = rate.NewLimiter(rate.Limit(multi.maxPerSecond), multi.maxBurst)
return multi.limiters[key]
}
func (multi *MultiRatelimiter) AllowN(key interface{}, now time.Time, n int) bool {
return multi.findCreateLimiter(key).AllowN(now, n)
}
```
|
The Family Man is a 1979 television film, directed by Glenn Jordan and starring Ed Asner and Meredith Baxter Birney.
Plot
Asner plays a prosperous Irish-born New Yorker who falls in love with a young pianist and is tempted to be unfaithful to his wife for the first time.
Cast
Edward Asner as Eddie Madden
Meredith Baxter Birney as Mercedes Cole
Anne Jackson as Maggie Madden
Dick Latessa as Fred
Michael Kirby as Walter
Michael Wincott as Charlie
Martin Short as Louie
Gordon Thomson as Dance Instructor
Michael Ironside as Bartender
Reception
Writing in the New York Times, Tom Buckley gave the film a bad review, calling the script "resolutely undramatic, stilted and humorless", the directing "like stretching taffy" and Asner's accent "intermittent and unconvincing".
References
External links
1979 television films
1979 films
American television films
Films scored by Billy Goldenberg
|
```javascript
Page({
mixins: [require('../../mixin/common')],
data: {
showTopTips: false,
radioItems: [
{ name: 'cell standard', value: '0' },
{ name: 'cell standard', value: '1', checked: true },
],
checkboxItems: [
{ name: 'standard is dealt for u.', value: '0', checked: true },
{ name: 'standard is dealicient for u.', value: '1' },
],
date: '2016-09-01',
time: '12:01',
countryCodes: ['+86', '+80', '+84', '+87'],
countryCodeIndex: 0,
countries: ['', '', ''],
countryIndex: 0,
accounts: ['', 'QQ', 'Email'],
accountIndex: 0,
isAgree: false,
},
showTopTips() {
const that = this;
this.setData({
showTopTips: true,
});
setTimeout(() => {
that.setData({
showTopTips: false,
});
}, 3000);
},
radioChange(e) {
console.log('radiochangevalue', e.detail.value);
const { radioItems } = this.data;
for (let i = 0, len = radioItems.length; i < len; ++i) {
radioItems[i].checked = radioItems[i].value == e.detail.value;
}
this.setData({
radioItems,
});
},
checkboxChange(e) {
console.log('checkboxchangevalue', e.detail.value);
const { checkboxItems } = this.data; const values = e.detail.value;
for (let i = 0, lenI = checkboxItems.length; i < lenI; ++i) {
checkboxItems[i].checked = false;
for (let j = 0, lenJ = values.length; j < lenJ; ++j) {
if (checkboxItems[i].value == values[j]) {
checkboxItems[i].checked = true;
break;
}
}
}
this.setData({
checkboxItems,
});
},
bindDateChange(e) {
this.setData({
date: e.detail.value,
});
},
bindTimeChange(e) {
this.setData({
time: e.detail.value,
});
},
bindCountryCodeChange(e) {
console.log('picker country code ', e.detail.value);
this.setData({
countryCodeIndex: e.detail.value,
});
},
bindCountryChange(e) {
console.log('picker country ', e.detail.value);
this.setData({
countryIndex: e.detail.value,
});
},
bindAccountChange(e) {
console.log('picker account ', e.detail.value);
this.setData({
accountIndex: e.detail.value,
});
},
bindAgreeChange(e) {
this.setData({
isAgree: !!e.detail.value.length,
});
},
});
```
|
```kotlin
package kotlinx.coroutines.selects
import kotlinx.coroutines.testing.*
import kotlinx.coroutines.*
import kotlin.test.*
class SelectOldTest : TestBase() {
@Test
fun testSelectCompleted() = runTest {
expect(1)
launch { // makes sure we don't yield to it earlier
finish(4) // after main exits
}
val job = Job()
job.cancel()
selectOld<Unit> {
job.onJoin {
expect(2)
}
}
expect(3)
// will wait for the first coroutine
}
@Test
fun testSelectUnbiasedCompleted() = runTest {
expect(1)
launch { // makes sure we don't yield to it earlier
finish(4) // after main exits
}
val job = Job()
job.cancel()
selectUnbiasedOld<Unit> {
job.onJoin {
expect(2)
}
}
expect(3)
// will wait for the first coroutine
}
@Test
fun testSelectIncomplete() = runTest {
expect(1)
val job = Job()
launch { // makes sure we don't yield to it earlier
expect(3)
val res = selectOld<String> {
job.onJoin {
expect(6)
"OK"
}
}
expect(7)
assertEquals("OK", res)
}
expect(2)
yield()
expect(4)
job.cancel()
expect(5)
yield()
finish(8)
}
@Test
fun testSelectUnbiasedIncomplete() = runTest {
expect(1)
val job = Job()
launch { // makes sure we don't yield to it earlier
expect(3)
val res = selectUnbiasedOld<String> {
job.onJoin {
expect(6)
"OK"
}
}
expect(7)
assertEquals("OK", res)
}
expect(2)
yield()
expect(4)
job.cancel()
expect(5)
yield()
finish(8)
}
@Test
fun testSelectUnbiasedComplete() = runTest {
expect(1)
val job = Job()
job.complete()
expect(2)
val res = selectUnbiasedOld<String> {
job.onJoin {
expect(3)
"OK"
}
}
assertEquals("OK", res)
finish(4)
}
@Test
fun testSelectUnbiasedThrows() = runTest {
try {
select<Unit> {
expect(1)
throw TestException()
}
} catch (e: TestException) {
finish(2)
}
}
@Test
fun testSelectLazy() = runTest {
expect(1)
val job = launch(start = CoroutineStart.LAZY) {
expect(2)
}
val res = selectOld<String> {
job.onJoin {
expect(3)
"OK"
}
}
finish(4)
assertEquals("OK", res)
}
@Test
fun testSelectUnbiasedLazy() = runTest {
expect(1)
val job = launch(start = CoroutineStart.LAZY) {
expect(2)
}
val res = selectUnbiasedOld<String> {
job.onJoin {
expect(3)
"OK"
}
}
finish(4)
assertEquals("OK", res)
}
}
```
|
```python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of satpy.
#
# satpy is free software: you can redistribute it and/or modify it under the
# version.
#
# satpy is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
#
# satpy. If not, see <path_to_url
"""The agri_l1 reader tests package."""
import os
from unittest import mock
import dask.array as da
import numpy as np
import pytest
import xarray as xr
from satpy.tests.reader_tests.test_hdf5_utils import FakeHDF5FileHandler
ALL_BAND_NAMES = ["C01", "C02", "C03", "C04", "C05", "C06", "C07"]
RESOLUTION_LIST = [250, 500, 2000]
CHANNELS_BY_RESOLUTION = {250: ["C01"],
500: ["C01", "C02", "C03", "C04", "C05", "C06"],
2000: ALL_BAND_NAMES,
"GEO": "solar_azimuth_angle"
}
AREA_EXTENTS_BY_RESOLUTION = {
250: (896278.676104, 562456.016066, 895155.242397, 452480.774883),
500: (896153.676104, 562331.016066, 895155.242397, 452480.774883),
2000: (895403.676104, 561581.016066, 895155.242397, 452480.774883)
}
class FakeHDF5FileHandler2(FakeHDF5FileHandler):
"""Swap-in HDF5 File Handler."""
def make_test_data(self, cwl, ch, prefix, dims, file_type):
"""Make test data."""
if prefix == "CAL":
data = xr.DataArray(
da.from_array((np.arange(10.) + 1.) / 10., [dims[0] * dims[1]]),
attrs={
"Slope": np.array(1.), "Intercept": np.array(0.),
"FillValue": np.array(-65535.0),
"units": "NUL",
"center_wavelength": "{}um".format(cwl).encode("utf-8"),
"band_names": "band{}(band number is range from 1 to 14)"
.format(ch).encode("utf-8"),
"long_name": "Calibration table of {}um Channel".format(cwl).encode("utf-8"),
"valid_range": np.array([0, 1.5]),
},
dims="_const")
elif prefix == "NOM":
data = xr.DataArray(
da.from_array(np.arange(10, dtype=np.uint16).reshape((2, 5)) + 1,
[dim for dim in dims]),
attrs={
"Slope": np.array(1.), "Intercept": np.array(0.),
"FillValue": np.array(65535),
"units": "DN",
"center_wavelength": "{}um".format(cwl).encode("utf-8"),
"band_names": "band{}(band number is range from 1 to 7)"
.format(ch).encode("utf-8"),
"long_name": "Calibration table of {}um Channel".format(cwl).encode("utf-8"),
"valid_range": np.array([0, 4095]),
},
dims=("_RegLength", "_RegWidth"))
elif prefix == "GEO":
data = xr.DataArray(
da.from_array(np.arange(10, dtype=np.float32).reshape((2, 5)) + 1,
[dim for dim in dims]),
attrs={
"Slope": np.array(1.), "Intercept": np.array(0.),
"FillValue": np.array(65535.),
"units": "NUL",
"band_names": "NUL",
"valid_range": np.array([0., 360.]),
},
dims=("_RegLength", "_RegWidth"))
elif prefix == "COEF":
if file_type == "250":
data = self._create_coeff_array(1)
elif file_type == "500":
data = self._create_coeff_array(6)
elif file_type == "2000":
data = self._create_coeff_array(7)
return data
def _create_coeff_array(self, nb_channels):
data = xr.DataArray(
da.from_array((np.arange(nb_channels * 2).reshape((nb_channels, 2)) + 1.) /
np.array([1E4, 1E2]), [nb_channels, 2]),
attrs={
"Slope": 1., "Intercept": 0.,
"FillValue": 0,
"units": "NUL",
"band_names": "NUL",
"long_name": b"Calibration coefficient (SCALE and OFFSET)",
"valid_range": [-500, 500],
},
dims=("_num_channel", "_coefs"))
return data
def _create_channel_data(self, chs, cwls, file_type):
dim_0 = 2
dim_1 = 5
data = {}
for index, _cwl in enumerate(cwls):
data["Calibration/CALChannel" + "%02d" % chs[index]] = self.make_test_data(cwls[index], chs[index], "CAL",
[dim_0, dim_1], file_type)
data["Data/NOMChannel" + "%02d" % chs[index]] = self.make_test_data(cwls[index], chs[index], "NOM",
[dim_0, dim_1], file_type)
data["Calibration/CALIBRATION_COEF(SCALE+OFFSET)"] = self.make_test_data(cwls[index], chs[index], "COEF",
[dim_0, dim_1], file_type)
return data
def _get_250m_data(self, file_type):
chs = [1]
cwls = [0.675]
data = self._create_channel_data(chs, cwls, file_type)
return data
def _get_500m_data(self, file_type):
chs = [1, 2, 3, 4, 5, 6]
cwls = [0.675, 0.47, 0.545, 0.645, 1.378, 1.61]
data = self._create_channel_data(chs, cwls, file_type)
return data
def _get_2km_data(self, file_type):
chs = [1, 2, 3, 4, 5, 6, 7]
cwls = [0.675, 0.47, 0.545, 0.645, 1.378, 1.61, 11.4]
data = self._create_channel_data(chs, cwls, file_type)
return data
def _get_geo_data(self, file_type):
dim_0 = 2
dim_1 = 5
data = {"Navigation/NOMSunAzimuth": self.make_test_data("NUL", "NUL", "GEO",
[dim_0, dim_1], file_type)}
return data
def get_test_content(self, filename, filename_info, filetype_info):
"""Mimic reader input file content."""
global_attrs = {
"/attr/NOMSubSatLat": np.array(0.0),
"/attr/NOMSubSatLon": np.array(133.0),
"/attr/NOMSatHeight": np.array(3.5786E7),
"/attr/Semi_major_axis": np.array(6378.14),
"/attr/Semi_minor_axis": np.array(6353.28),
"/attr/OBIType": "REGX",
"/attr/RegLength": np.array(2.0),
"/attr/RegWidth": np.array(5.0),
"/attr/Corner-Point Latitudes": np.array((4.1, 5.1, 4.1, 5.1)),
"/attr/Corner-Point Longitudes": np.array((141.1, 141.1, 141.1, 151.1)),
"/attr/Begin Line Number": np.array(0),
"/attr/End Line Number": np.array(1),
"/attr/Observing Beginning Date": "2019-06-03", "/attr/Observing Beginning Time": "00:30:01.807",
"/attr/Observing Ending Date": "2019-06-03", "/attr/Observing Ending Time": "00:34:07.572",
"/attr/Satellite Name": "FY4B", "/attr/Sensor Identification Code": "GHI", "/attr/Sensor Name": "GHI",
}
data = {}
if self.filetype_info["file_type"] == "ghi_l1_0250m":
data = self._get_250m_data("250")
elif self.filetype_info["file_type"] == "ghi_l1_0500m":
data = self._get_500m_data("500")
elif self.filetype_info["file_type"] == "ghi_l1_2000m":
data = self._get_2km_data("2000")
elif self.filetype_info["file_type"] == "ghi_l1_2000m_geo":
data = self._get_geo_data("2000")
test_content = {}
test_content.update(global_attrs)
test_content.update(data)
return test_content
def _create_filenames_from_resolutions(*resolutions):
"""Create filenames from the given resolutions."""
if "GEO" in resolutions:
return [your_sha256_hash613145359_2000M_V0001.HDF"]
pattern = (your_sha256_hash613145359_"
"{resolution:04d}M_V0001.HDF")
return [pattern.format(resolution=resolution) for resolution in resolutions]
class Test_HDF_GHI_L1_cal:
"""Test VIRR L1B Reader."""
yaml_file = "ghi_l1.yaml"
def setup_method(self):
"""Wrap HDF5 file handler with our own fake handler."""
from satpy._config import config_search_paths
from satpy.readers.fy4_base import FY4Base
from satpy.readers.ghi_l1 import HDF_GHI_L1
self.reader_configs = config_search_paths(os.path.join("readers", self.yaml_file))
# path_to_url
self.fy4 = mock.patch.object(FY4Base, "__bases__", (FakeHDF5FileHandler2,))
self.p = mock.patch.object(HDF_GHI_L1.__class__, (self.fy4,))
self.fake_handler = self.fy4.start()
self.p.is_local = True
self.expected = {
"C01": np.array([[2.01, 2.02, 2.03, 2.04, 2.05], [2.06, 2.07, 2.08, 2.09, 2.1]]),
"C02": np.array([[4.03, 4.06, 4.09, 4.12, 4.15], [4.18, 4.21, 4.24, 4.27, 4.3]]),
"C03": np.array([[6.05, 6.1, 6.15, 6.2, 6.25], [6.3, 6.35, 6.4, 6.45, 6.5]]),
"C04": np.array([[8.07, 8.14, 8.21, 8.28, 8.35], [8.42, 8.49, 8.56, 8.63, 8.7]]),
"C05": np.array([[10.09, 10.18, 10.27, 10.36, 10.45], [10.54, 10.63, 10.72, 10.81, 10.9]]),
"C06": np.array([[12.11, 12.22, 12.33, 12.44, 12.55], [12.66, 12.77, 12.88, 12.99, 13.1]]),
"C07": np.array([[0.2, 0.3, 0.4, 0.5, 0.6], [0.7, 0.8, 0.9, 1., np.nan]]),
}
def teardown_method(self):
"""Stop wrapping the HDF5 file handler."""
self.p.stop()
def test_ghi_channels_are_loaded_with_right_resolution(self):
"""Test all channels are loaded with the right resolution."""
reader = self._create_reader_for_resolutions(*RESOLUTION_LIST)
available_datasets = reader.available_dataset_ids
for resolution_to_test in RESOLUTION_LIST:
self._check_keys_for_dsq(available_datasets, resolution_to_test)
def test_ghi_all_bands_have_right_units(self):
"""Test all bands have the right units."""
reader = self._create_reader_for_resolutions(*RESOLUTION_LIST)
band_names = ALL_BAND_NAMES
res = reader.load(band_names)
assert len(res) == 7
for band_name in band_names:
assert res[band_name].shape == (2, 5)
self._check_units(band_name, res)
def test_ghi_orbital_parameters_are_correct(self):
"""Test orbital parameters are set correctly."""
reader = self._create_reader_for_resolutions(*RESOLUTION_LIST)
band_names = ALL_BAND_NAMES
res = reader.load(band_names)
# check whether the data type of orbital_parameters is float
orbital_parameters = res[band_names[0]].attrs["orbital_parameters"]
for attr in orbital_parameters:
assert isinstance(orbital_parameters[attr], float)
assert orbital_parameters["satellite_nominal_latitude"] == 0.
assert orbital_parameters["satellite_nominal_longitude"] == 133.0
assert orbital_parameters["satellite_nominal_altitude"] == 3.5786E7
@staticmethod
def _check_keys_for_dsq(available_datasets, resolution_to_test):
from satpy.dataset.data_dict import get_key
from satpy.tests.utils import make_dsq
band_names = CHANNELS_BY_RESOLUTION[resolution_to_test]
for band_name in band_names:
ds_q = make_dsq(name=band_name, resolution=resolution_to_test)
res = get_key(ds_q, available_datasets, num_results=0, best=False)
if band_name < "C07":
assert len(res) == 2
else:
assert len(res) == 3
def test_ghi_counts_calibration(self):
"""Test loading data at counts calibration."""
from satpy.tests.utils import make_dsq
reader = self._create_reader_for_resolutions(*RESOLUTION_LIST)
ds_ids = []
band_names = CHANNELS_BY_RESOLUTION[2000]
for band_name in band_names:
ds_ids.append(make_dsq(name=band_name, calibration="counts"))
res = reader.load(ds_ids)
assert len(res) == 7
for band_name in band_names:
assert res[band_name].shape == (2, 5)
assert res[band_name].attrs["calibration"] == "counts"
assert res[band_name].dtype == np.uint16
assert res[band_name].attrs["units"] == "1"
def test_ghi_geo(self):
"""Test loading data for angles."""
from satpy.tests.utils import make_dsq
reader = self._create_reader_for_resolutions("GEO")
band_name = "solar_azimuth_angle"
ds_ids = [make_dsq(name=band_name)]
res = reader.load(ds_ids)
assert len(res) == 1
assert res[band_name].shape == (2, 5)
assert res[band_name].dtype == np.float32
def _create_reader_for_resolutions(self, *resolutions):
from satpy.readers import load_reader
filenames = _create_filenames_from_resolutions(*resolutions)
reader = load_reader(self.reader_configs)
files = reader.select_files_from_pathnames(filenames)
assert len(filenames) == len(files)
reader.create_filehandlers(files)
# Make sure we have some files
assert reader.file_handlers
return reader
@pytest.mark.parametrize("resolution_to_test", RESOLUTION_LIST)
def test_ghi_for_one_resolution(self, resolution_to_test):
"""Test loading data when only one resolution is available."""
reader = self._create_reader_for_resolutions(resolution_to_test)
available_datasets = reader.available_dataset_ids
band_names = CHANNELS_BY_RESOLUTION[resolution_to_test]
self._assert_which_channels_are_loaded(available_datasets, band_names, resolution_to_test)
res = reader.load(band_names)
assert len(res) == len(band_names)
self._check_calibration_and_units(band_names, res)
for band_name in band_names:
np.testing.assert_allclose(np.array(res[band_name].attrs["area"].area_extent),
np.array(AREA_EXTENTS_BY_RESOLUTION[resolution_to_test]))
def _check_calibration_and_units(self, band_names, result):
for band_name in band_names:
assert result[band_name].attrs["sensor"].islower()
assert result[band_name].shape == (2, 5)
np.testing.assert_allclose(result[band_name].values, self.expected[band_name], equal_nan=True)
self._check_units(band_name, result)
@staticmethod
def _check_units(band_name, result):
if band_name <= "C06":
assert result[band_name].attrs["calibration"] == "reflectance"
else:
assert result[band_name].attrs["calibration"] == "brightness_temperature"
if band_name <= "C06":
assert result[band_name].attrs["units"] == "%"
else:
assert result[band_name].attrs["units"] == "K"
@staticmethod
def _assert_which_channels_are_loaded(available_datasets, band_names, resolution_to_test):
from satpy.dataset.data_dict import get_key
from satpy.tests.utils import make_dsq
other_resolutions = RESOLUTION_LIST.copy()
other_resolutions.remove(resolution_to_test)
for band_name in band_names:
for resolution in other_resolutions:
ds_q = make_dsq(name=band_name, resolution=resolution)
with pytest.raises(KeyError):
_ = get_key(ds_q, available_datasets, num_results=0, best=False)
ds_q = make_dsq(name=band_name, resolution=resolution_to_test)
res = get_key(ds_q, available_datasets, num_results=0, best=False)
if band_name < "C07":
assert len(res) == 2
else:
assert len(res) == 3
```
|
```raw token data
19:35:31 UTC Sat 01/08/2011
```
|
Ethyl lactate, also known as lactic acid ethyl ester, is the organic compound with the formula CH3CH(OH)CO2CH2CH3. It is the ethyl ester of lactic acid. A colorless liquid, it is a chiral ester. Being naturally derived, it is readily available as a single enantiomer. It is commonly used as a solvent. This compound is considered biodegradable and can be used as a water-rinsible degreaser. Ethyl lactate is found naturally in small quantities in a wide variety of foods including wine, chicken, and various fruits. The odor of ethyl lactate when dilute is mild, buttery, creamy, with hints of fruit and coconut.
Production
Ethyl lactate is produced from biological sources, and can be either the levo (S) form or dextro (R) form, depending on the organism that is the source of the lactic acid. Most biologically sourced ethyl lactate is ethyl (−)-L-lactate (ethyl (S)-lactate). Ethyl lactate is also produced industrially from petrochemical stocks, and this ethyl lactate consists of the racemic mixture of levo and dextro forms.
Applications
Because both enantiomers are found in nature, and because ethyl lactate is easily biodegradable, it is considered to be a "green solvent." Ethyl lactate and its aqueous solutions are used as sustainable media for organic synthesis. Due to its relatively low toxicity, ethyl lactate is used commonly in pharmaceutical preparations, food additives, and fragrances. Ethyl lactate is also used as solvent for nitrocellulose, cellulose acetate, and cellulose ethers.
Further reading
References
Ester solvents
Ethyl esters
Lactate esters
Sweet-smelling chemicals
|
Blueberry muffin baby, also known as extramedullary hematopoiesis, describes a newborn baby with multiple purpura, associated with several non-cancerous and cancerous conditions in which extra blood is produced in the skin. The bumps range from one to seven mm, do not blanch and have a tendency to occur on the head, neck and trunk. They often fade by three to six weeks after birth, leaving brownish marks. When due to a cancer, the bumps tend to be fewer, firmer and larger.
The condition can occur following infection of an unborn baby with rubella, cytomegalovirus, toxoplasmosis, or coxsackie virus. Other viral causes include parvovirus B19 and herpes simplex. Non-infectious causes include haemolytic disease of the newborn, hereditary spherocytosis, twin-to-twin transfusion syndrome and recombinant erythropoietin administration. Some types of cancers can cause it such as rhabdomyosarcoma, extrosseal Ewing sarcoma, Langerhans cell histiocytosis, congenital leukaemia and neuroblastoma. During normal development of an unborn baby, blood production can occur in the skin until the fifth month of pregnancy. Blueberry muffin lesions in the newborn indicate the prolongation of skin blood production after birth.
Diagnosis involves a combination of appearance and laboratory studies, including blood tests for complete blood count, TORCH infections, haemoglobin, viral cultures and Coombs test. A skin biopsy may be useful. Conditions that may appear similar include hemangiopericytoma, blue rubber bleb nevus, hemangioma and glomangioma.
Prognosis is variable based upon the cause of the characteristic rash. Treatment may include supportive care, anti-viral medication, transfusion, or chemotherapy depending on the underlying cause.
It is not common. The term was coined in the 1960s to describe the skin changes in babies with congenital rubella. Since then, it has been realised that blueberry muffin marks occur in several conditions.
Signs and symptoms
These lesions are typically non-blanching macules or papules that present as a generalized rash in the newborn.
Causes
During normal embryologic development, hematopoiesis can occur in the dermis until the fifth month of gestation. Blueberry muffin lesions in the neonate indicate the prolongation of dermal extramedullary hematopoiesis outside of the gestational period.
The blueberry muffin rash was originally considered pathognomonic of congenital rubella, but it is now considered to be potentially associated with many other intrauterine infections, hematologic diseases, and malignancies. Other TORCH infections that can cause this rash include cytomegalovirus, herpes virus, and toxoplasma. Blood disorders, such as hereditary spherocytosis and hemolytic disease of the newborn, that increase extramedullary hemotopoeisis can also cause a blueberry muffin baby. It is also possible that a neonate with the blueberry muffin rash can have an underlying malignancy such as metastatic neuroblastoma and congenital leukemia. Listed below are a few known conditions that can cause a blueberry muffin baby.
Infectious
Toxoplasmosis: TORCH infection due to Toxoplasma gondii parasite. Condition is commonly associated with undercooked meat or contact with cat feces. Symptoms of this disease include seizures, hydrocephalus, and chorioretinitis.
Cytomegalovirus: viral TORCH infection associated with sensorineural hearing loss, hepatomegaly, and jaundice.
Rubella: viral TORCH infection associated with post-auricular and occipital lymphadenopathy in addition to a maculopapular rash that starts on the face and spreads to the trunk.
Herpes virus: viral TORCH infection associated with painful vesicular lesions and meningitis.
Syphilis: bacterial TORCH infection due to Treponema pallidum. Congenital syphilis can present with saber shins, saddle-shaped nose, Hutchinson's teeth, and deafness.
Epstein Barr virus: viral infection that causes infectious monocleosis. Condition is associated with lymphadenopathy, splenomegaly, and various lymphomas
Hematologic
Hereditary spherocytosis: autosomal dominant disease that results in formation of aberrant erythrocyte membrane protein. This condition results in structural change of red blood cells (RBCs), shearing of RBCs, and anemia.
Hemolytic disease of the newborn (ABO or Rh incompatibility): Condition is due to maternal and fetal red blood cell mismatch. Maternal antibodies destroy fetal RBCs which results in anemia.
Neoplastic
Neuroblastoma: pediatric cancer due to malignancy in neuroblast cells. Tumor is usually localized to the adrenal glands.
Congenital leukemia: pediatric cancer due to malignancy of white blood cells.
Congenital rhabdomyosarcoma: pediatric cancer due to malignancy of mesenchymal cells that have failed to fully differentiate into muscle cells
Systemic
Langerhans cell histiocytosis (LCH): Condition due to excess build-up of Langerhans cells.
Lupus: autoimmune disease
Diagnosis
Diagnosis of the medical condition is based on a combination of clinical presentation, physical exam, and laboratory studies. When this characteristic rash is found in a neonate, laboratory workup is prompted.
Initial workup usually includes a complete blood count (CBC) with differential to evaluate for underlying blood disorders. Laboratory confirmation of the cause of the blueberry muffin rash depends on the underlying illness.
For example, serology positive for rubella specific antibodies, viral culture with isolated rubella, or isolation of rubella virus RNA through polymerase chain reaction can all confirm that congenital rubella infection is the underlying cause of the blueberry muffin rash. Other manifestations of congenital rubella disease can also appear in conjunction with the characteristic rash. These include congenital glaucoma, jaundice, hepatosplenomegaly, microcephaly, cataracts, or sensorineural hearing loss. The presence of these features can further bolster the diagnosis of congenital rubella as the cause of the blueberry muffin baby. Laboratory studies for congential rubella infection should be done prior to 1 year of age as diagnosis becomes more challenging afterwards.
In the case of infection with cytomegalovirus (CMV), patients can present with associated symptoms such as deafness and chorioretinitis. On lab studies, there may be a high anti-cytomegalovirus antibody titer, positive CMV urine culture, and thrombocytopenia.
If the cause is due to hemolytic disease of the newborn or hereditary spherocytosis, the neonate will have a positive Coomb's test and unconjugated hyperbilirubinemia.
Malignancies such as neuroblastoma and acute myeloid leukemia are all rare but possible causes of a blueberry muffin baby. Most of the time, these conditions are diagnosed using immunohistochemistry and biopsy.
Prognosis
Prognosis is variable based on underlying cause. Usually the lesions should resolve within three to six weeks post-delivery. There has been a documented case of the rash completely resolving following a blood transfusion to treat severe anemia in a neonate. The rash is usually transient and will resolve once the underlying cause is treated.
Treatment
Treatment is variable based on underlying cause. If significant anemia is present, blood transfusion may be indicated. In the case of congenital rubella infection, there is no known cure. Therefore, the focus of treatment is disease prevention. The MMR vaccine is highly efficacious in preventing congenital rubella and is given routinely as a part of the pediatric vaccine schedule. For neonates with congenital CMV infection, antiviral medication is given. Most commonly, valganciclovir or ganciclovir are used as first-line antiviral therapy for congenital CMV. If the cause is a malignancy, the patient should receive cancer treatment such as chemotherapy. Overall, treatment of the blueberry muffin baby is centered around the underlying cause.
See also
List of cutaneous conditions
References
External links
Vascular-related cutaneous conditions
|
```objective-c
/**
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#ifndef STDLIB_NDARRAY_BASE_IND_H
#define STDLIB_NDARRAY_BASE_IND_H
#include "stdlib/ndarray/index_modes.h"
#include <stdint.h>
/*
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
*/
#ifdef __cplusplus
extern "C" {
#endif
/**
* Returns an index given an index mode.
*/
int64_t stdlib_ndarray_ind( const int64_t idx, const int64_t max, const enum STDLIB_NDARRAY_INDEX_MODE mode );
#ifdef __cplusplus
}
#endif
#endif // !STDLIB_NDARRAY_BASE_IND_H
```
|
Bullhead Lake may refer to:
Lakes
In the United States:
Bullhead Lake (Glacier County, Montana)
Bullhead Lake in Chippewa River (Michigan)
Bullhead Lake in Lake Eunice Township, Becker County, Minnesota
Bullhead Lake in Kego Township, Cass County, Minnesota
Bullhead Lake in Sugar Bush Township, Becker County, Minnesota
Bullhead Lake in Kelliher Township, Beltrami County, Minnesota
Bullhead Lake (Otter Tail County, Minnesota)
Bullhead Lake (Watonwan County, Minnesota)
Bullhead Lake (Roberts County, South Dakota)
Lake Louise (Roaring Gap, North Carolina), formerly known as Bullhead Lake
|
State Trunk Highway 49 (often called Highway 49, STH-49 or WIS 49) is a state highway in the U.S. state of Wisconsin. It runs north–south in central and southeast Wisconsin from Wittenberg to Lomira. The highway was initially designated in 1917, but it had not been extended to its current length until the 1950s.
Route description
WIS 49 begins at an interchange with Interstate 41 (I-41) north of Lomira and runs west from it, passing through Brownsville before curving to the north to meet the Dodge-Fond du Lac county line. After an interchange with US 151, WIS 49 runs through Waupun. Shortly after exiting Waupun, the highway curves and starts running north to Brandon. Shortly after exiting Brandon, the highway runs concurrently with WIS 44. This concurrency ends in Ripon, where a concurrency with WIS 23 begins. The highway runs north from the concurrent alignment shortly before it reaches Green Lake. While running north, WIS 49 runs through Berlin and many smaller communities before reaching an interchange at US 10.
The highway runs concurrently with US 10, which is a freeway for most of its length. The highway passes by Weyauwega and the Waupaca Municipal Airport before leaving the concurrency and running through Waupaca. After exiting Waupaca, it runs north to Scandinavia and then to Iola, where the highway enters runs concurrently for a short distance with WIS 161. WIS 49 then runs northwesterly to WIS 66 before continuing north, passing through an intersection with WIS 153 in Elderon before terminating at WIS 29.
History
When Wisconsin's state trunk highways were first designated in 1917, the highway ran from WIS 23 near Green Lake to WIS 18 (by 1930, this had become US 10) south of Waupaca. In the early 1920s, WIS 49 was extended south to Waupun. By 1930, the highway had been extended to its current northern terminus at WIS 29, and it was paved south of Poy Sippi (between WIS 21 and US 10). In 1933, the section between Poy Sippi and US 10 was paved. Sometime between 1948 and 1956, the highway had been extended to US 41 (now I-41/US 41). The extension was mostly paved but contained an unpaved section west of Brownsville.
Major junctions
See also
References
External links
049
Transportation in Dodge County, Wisconsin
Transportation in Fond du Lac County, Wisconsin
Transportation in Green Lake County, Wisconsin
Transportation in Waushara County, Wisconsin
Transportation in Waupaca County, Wisconsin
Transportation in Portage County, Wisconsin
Transportation in Marathon County, Wisconsin
|
Tuchanie is a village in the administrative district of Gmina Dubienka, within Chełm County, Lublin Voivodeship, in eastern Poland, close to the border with Ukraine. It lies approximately west of Dubienka, south-east of Chełm, and east of the regional capital Lublin.
References
Villages in Chełm County
|
Golßen () is a railway station in the village of Golßen, Brandenburg, Germany. The station lies of the Berlin–Dresden railway and the train services are operated by Deutsche Bahn.
Train services
The station is served by the following services:
Regional services Berlin – – – Golßen –
References
External links
VBB website
Berlin-Brandenburg (VBB) network map
Railway stations in Brandenburg
Buildings and structures in Dahme-Spreewald
Railway stations in Germany opened in 1875
|
```python
#
#
# path_to_url
#
# Unless required by applicable law or agreed to in writing, software
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
import unittest
import numpy as np
from op_test import OpTest, convert_float_to_uint16
import paddle
from paddle.base import core
from paddle.pir_utils import test_with_pir_api
def ref_logsumexp(x, axis=None, keepdim=False, reduce_all=False):
if isinstance(axis, int):
axis = (axis,)
elif isinstance(axis, list):
axis = tuple(axis)
if reduce_all:
axis = None
out = np.log(np.exp(x).sum(axis=axis, keepdims=keepdim))
return out
def logsumexp_wrapper(x, axis=None, keepdim=False, allreduce=False):
if allreduce:
return paddle.logsumexp(x, None, keepdim)
return paddle.logsumexp(x, axis, keepdim)
def logsumexp_op_grad(x, axis=None, keepdim=False, reduce_all=False):
paddle.disable_static()
tensor_x = paddle.to_tensor(x)
tensor_x.stop_gradient = False
out = logsumexp_wrapper(tensor_x, axis, keepdim, reduce_all)
grad = paddle.grad(out, [tensor_x])
x_grad = grad[0].numpy()
paddle.enable_static()
return x_grad
def logsumexp_ref_grad(x):
sum = np.exp(x).sum()
return np.exp(x) / sum
class TestLogsumexp(OpTest):
def setUp(self):
self.op_type = 'logsumexp'
self.python_api = logsumexp_wrapper
self.shape = [2, 3, 4, 5]
self.dtype = 'float64'
self.axis = [-1]
self.keepdim = False
self.reduce_all = False
self.set_attrs()
np.random.seed(10)
x = np.random.uniform(-1, 1, self.shape).astype(self.dtype)
out = ref_logsumexp(x, self.axis, self.keepdim, self.reduce_all)
self.inputs = {'X': x}
self.outputs = {'Out': out}
self.attrs = {
'axis': self.axis,
'keepdim': self.keepdim,
'reduce_all': self.reduce_all,
}
self.user_defined_grads = None
self.user_defined_grad_outputs = None
self.set_attrs_addition()
def set_attrs(self):
pass
def set_attrs_addition(self):
pass
def test_check_output(self):
self.check_output(check_pir=True)
def test_check_grad(self):
self.check_grad(
['X'],
['Out'],
user_defined_grads=self.user_defined_grads,
user_defined_grad_outputs=self.user_defined_grad_outputs,
check_pir=True,
)
def calc_grad(self):
dy = np.ones(1, dtype=self.dtype)
x = self.inputs['X']
y = self.outputs['Out']
return dy * np.exp(x - y)
class TestLogsumexp_ZeroDim(TestLogsumexp):
def set_attrs(self):
self.shape = []
self.axis = []
class TestLogsumexp_shape(TestLogsumexp):
def set_attrs(self):
self.shape = [4, 5, 6]
class TestLogsumexp_axis(TestLogsumexp):
def set_attrs(self):
self.axis = [0, -1]
class TestLogsumexp_axis_all(TestLogsumexp):
def set_attrs(self):
self.axis = [0, 1, 2, 3]
def set_attrs_addition(self):
if paddle.base.core.is_compiled_with_rocm():
self.user_defined_grads = [self.calc_grad()]
self.user_defined_grad_outputs = [np.ones(1, dtype=self.dtype)]
class TestLogsumexp_keepdim(TestLogsumexp):
def set_attrs(self):
self.keepdim = True
class TestLogsumexp_reduce_all(TestLogsumexp):
def set_attrs(self):
self.reduce_all = True
def set_attrs_addition(self):
if paddle.base.core.is_compiled_with_rocm():
self.user_defined_grads = [self.calc_grad()]
self.user_defined_grad_outputs = [np.ones(1, dtype=self.dtype)]
class TestLogsumexp_FP32(TestLogsumexp):
def set_attrs(self):
self.dtype = 'float32'
def test_check_grad(self):
self.__class__.dtype = self.dtype
x_grad = logsumexp_op_grad(self.inputs['X'])
ref_x_grad = logsumexp_ref_grad(self.inputs['X'])
np.testing.assert_allclose(x_grad, ref_x_grad, rtol=1e-08, atol=1e-08)
@unittest.skipIf(
not core.is_compiled_with_cuda(), "core is not compiled with CUDA"
)
class TestLogsumexp_FP16(TestLogsumexp):
def set_attrs(self):
self.dtype = 'float16'
def test_check_output(self):
ref_x = self.inputs['X'].astype(np.float32)
out_ref = ref_logsumexp(ref_x)
paddle.disable_static()
x = self.inputs['X'].astype(np.float16)
tensor_x = paddle.to_tensor(x)
out_pad = logsumexp_wrapper(tensor_x)
paddle.enable_static()
np.testing.assert_allclose(
out_pad.numpy(), out_ref, rtol=1e-03, atol=1e-08
)
def test_check_grad(self):
self.__class__.dtype = self.dtype
ref_x = self.inputs['X'].astype(np.float32)
ref_x_grad = logsumexp_ref_grad(ref_x)
x = self.inputs['X'].astype(np.float16)
x_grad = logsumexp_op_grad(x)
np.testing.assert_allclose(x_grad, ref_x_grad, rtol=1e-03, atol=1e-05)
@unittest.skipIf(
not core.is_compiled_with_cuda()
or not core.is_bfloat16_supported(core.CUDAPlace(0)),
"core is not compiled with CUDA and not support the bfloat16",
)
class TestLogsumexpBF16Op(TestLogsumexp):
def setUp(self):
self.op_type = 'logsumexp'
self.python_api = logsumexp_wrapper
self.dtype = np.uint16
self.shape = [2, 3, 4, 5]
self.axis = [-1]
self.keepdim = False
self.reduce_all = False
self.set_attrs()
x = np.random.uniform(-1, 1, self.shape).astype(np.float64)
out = ref_logsumexp(x, self.axis, self.keepdim, self.reduce_all)
self.inputs = {'X': convert_float_to_uint16(x)}
self.outputs = {'Out': convert_float_to_uint16(out)}
self.attrs = {
'axis': self.axis,
'keepdim': self.keepdim,
'reduce_all': self.reduce_all,
}
self.set_attrs_addition()
def test_check_output(self):
place = core.CUDAPlace(0)
self.check_output_with_place(place, check_pir=True)
def test_check_grad(self):
place = core.CUDAPlace(0)
self.check_grad_with_place(place, ['X'], 'Out', check_pir=True)
def set_attrs(self):
pass
def set_attrs_addition(self):
pass
class TestLogsumexpError(unittest.TestCase):
@test_with_pir_api
def test_errors(self):
with paddle.static.program_guard(paddle.static.Program()):
self.assertRaises(TypeError, paddle.logsumexp, 1)
x1 = paddle.static.data(name='x1', shape=[120], dtype="int32")
self.assertRaises(TypeError, paddle.logsumexp, x1)
class TestLogsumexpAPI(unittest.TestCase):
def setUp(self):
self.shape = [2, 3, 4, 5]
self.x = np.random.uniform(-1, 1, self.shape).astype(np.float32)
self.place = (
paddle.CUDAPlace(0)
if paddle.base.core.is_compiled_with_cuda()
else paddle.CPUPlace()
)
def api_case(self, axis=None, keepdim=False):
out_ref = ref_logsumexp(self.x, axis, keepdim)
with paddle.static.program_guard(paddle.static.Program()):
x = paddle.static.data('X', self.shape)
out = paddle.logsumexp(x, axis, keepdim)
exe = paddle.static.Executor(self.place)
res = exe.run(feed={'X': self.x}, fetch_list=[out])
np.testing.assert_allclose(res[0], out_ref, rtol=1e-05)
paddle.disable_static(self.place)
x = paddle.to_tensor(self.x)
out = paddle.logsumexp(x, axis, keepdim)
np.testing.assert_allclose(out.numpy(), out_ref, rtol=1e-05)
paddle.enable_static()
@test_with_pir_api
def test_api(self):
self.api_case()
self.api_case(2)
self.api_case([-1])
self.api_case([2, -3])
self.api_case((0, 1, -1))
self.api_case(keepdim=True)
def test_alias(self):
paddle.disable_static(self.place)
x = paddle.to_tensor(self.x)
out1 = paddle.logsumexp(x)
out2 = paddle.tensor.logsumexp(x)
out3 = paddle.tensor.math.logsumexp(x)
out_ref = ref_logsumexp(self.x)
for out in [out1, out2, out3]:
np.testing.assert_allclose(out.numpy(), out_ref, rtol=1e-05)
paddle.enable_static()
# Test logsumexp bug
class TestLogZeroError(unittest.TestCase):
def test_errors(self):
with paddle.base.dygraph.guard():
def test_0_size():
array = np.array([], dtype=np.float32)
x = paddle.to_tensor(
np.reshape(array, [0, 0, 0]), dtype='float32'
)
paddle.logsumexp(x, axis=1)
self.assertRaises(ValueError, test_0_size)
if __name__ == '__main__':
unittest.main()
```
|
Géraldine Legendre (born 1953) is a French-American cognitive scientist and linguist known for her work on French grammar, on mathematical models for the development of syntax in natural languages including harmonic grammar and Optimality Theory, and on universal grammar and innate syntactic ability of humans in natural language. She is a professor of cognitive science at Johns Hopkins University and the chair of the Johns Hopkins Cognitive Science Department.
Education and career
Legendre studied English literature at the University of Tours, earning a licentiate in 1974. She went to the University of California, San Diego for graduate study, and she completed her M.A. in 1984 and her Ph.D. in 1987. Her dissertation, Topics in French Syntax, was supervised by David M. Perlmutter and Sandra Chung.
She became an assistant professor of linguistics at the University of Colorado Boulder and earned tenure there in 1994. In 1995, she moved to Johns Hopkins University, and in 2000, she was promoted to full professor. She became department chair in 2018.
Books
Legendre is the author of the book Topics in French Syntax (Routledge, 1994) and the coauthor with Paul Smolensky of the two-volume The Harmonic Mind (MIT Press, 2006). She is also a co-editor of edited volumes including Optimality-Theoretic Syntax (MIT Press, 2001) and Optimality-Theoretic Syntax, Semantics, and Pragmatics: From Uni- To Bidirectional Optimization (Oxford University Press, 2016).
References
External links
Faculty page from Johns Hopkins University
1953 births
Living people
French cognitive scientists
Women cognitive scientists
Linguists from the United States
Women linguists
University of Tours alumni
University of California, San Diego alumni
University of Colorado Boulder faculty
Johns Hopkins University faculty
|
```objective-c
//
// MasterPasswordExplanationViewController.m
// Strongbox
//
// Created by Strongbox on 08/10/2021.
//
#import "MasterPasswordExplanationViewController.h"
#import "WelcomeMasterPasswordViewController.h"
@interface MasterPasswordExplanationViewController ()
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
@end
@implementation MasterPasswordExplanationViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.imageView.image = [UIImage systemImageNamed:@"lock.shield"];
}
- (IBAction)onGotIt:(id)sender {
[self performSegueWithIdentifier:@"segueToMasterPasswordEntry" sender:nil];
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if([segue.identifier isEqualToString:@"segueToMasterPasswordEntry"]) {
WelcomeMasterPasswordViewController* vc = (WelcomeMasterPasswordViewController*)segue.destinationViewController;
vc.name = self.name;
vc.onDone = self.onDone;
}
}
@end
```
|
```javascript
/* global _wpCustomizeHeader */
(function( $, wp ) {
var api = wp.customize;
api.HeaderTool = {};
/**
* wp.customize.HeaderTool.ImageModel
*
* A header image. This is where saves via the Customizer API are
* abstracted away, plus our own AJAX calls to add images to and remove
* images from the user's recently uploaded images setting on the server.
* These calls are made regardless of whether the user actually saves new
* Customizer settings.
*
* @constructor
* @augments Backbone.Model
*/
api.HeaderTool.ImageModel = Backbone.Model.extend({
defaults: function() {
return {
header: {
attachment_id: 0,
url: '',
timestamp: _.now(),
thumbnail_url: ''
},
choice: '',
selected: false,
random: false
};
},
initialize: function() {
this.on('hide', this.hide, this);
},
hide: function() {
this.set('choice', '');
api('header_image').set('remove-header');
api('header_image_data').set('remove-header');
},
destroy: function() {
var data = this.get('header'),
curr = api.HeaderTool.currentHeader.get('header').attachment_id;
// If the image we're removing is also the current header, unset
// the latter
if (curr && data.attachment_id === curr) {
api.HeaderTool.currentHeader.trigger('hide');
}
wp.ajax.post( 'custom-header-remove', {
nonce: _wpCustomizeHeader.nonces.remove,
wp_customize: 'on',
theme: api.settings.theme.stylesheet,
attachment_id: data.attachment_id
});
this.trigger('destroy', this, this.collection);
},
save: function() {
if (this.get('random')) {
api('header_image').set(this.get('header').random);
api('header_image_data').set(this.get('header').random);
} else {
if (this.get('header').defaultName) {
api('header_image').set(this.get('header').url);
api('header_image_data').set(this.get('header').defaultName);
} else {
api('header_image').set(this.get('header').url);
api('header_image_data').set(this.get('header'));
}
}
api.HeaderTool.combinedList.trigger('control:setImage', this);
},
importImage: function() {
var data = this.get('header');
if (data.attachment_id === undefined) {
return;
}
wp.ajax.post( 'custom-header-add', {
nonce: _wpCustomizeHeader.nonces.add,
wp_customize: 'on',
theme: api.settings.theme.stylesheet,
attachment_id: data.attachment_id
} );
},
shouldBeCropped: function() {
if (this.get('themeFlexWidth') === true &&
this.get('themeFlexHeight') === true) {
return false;
}
if (this.get('themeFlexWidth') === true &&
this.get('themeHeight') === this.get('imageHeight')) {
return false;
}
if (this.get('themeFlexHeight') === true &&
this.get('themeWidth') === this.get('imageWidth')) {
return false;
}
if (this.get('themeWidth') === this.get('imageWidth') &&
this.get('themeHeight') === this.get('imageHeight')) {
return false;
}
if (this.get('imageWidth') <= this.get('themeWidth')) {
return false;
}
return true;
}
});
/**
* wp.customize.HeaderTool.ChoiceList
*
* @constructor
* @augments Backbone.Collection
*/
api.HeaderTool.ChoiceList = Backbone.Collection.extend({
model: api.HeaderTool.ImageModel,
// Ordered from most recently used to least
comparator: function(model) {
return -model.get('header').timestamp;
},
initialize: function() {
var current = api.HeaderTool.currentHeader.get('choice').replace(/^https?:\/\//, ''),
isRandom = this.isRandomChoice(api.get().header_image);
// Overridable by an extending class
if (!this.type) {
this.type = 'uploaded';
}
// Overridable by an extending class
if (typeof this.data === 'undefined') {
this.data = _wpCustomizeHeader.uploads;
}
if (isRandom) {
// So that when adding data we don't hide regular images
current = api.get().header_image;
}
this.on('control:setImage', this.setImage, this);
this.on('control:removeImage', this.removeImage, this);
this.on('add', this.maybeAddRandomChoice, this);
_.each(this.data, function(elt, index) {
if (!elt.attachment_id) {
elt.defaultName = index;
}
if (typeof elt.timestamp === 'undefined') {
elt.timestamp = 0;
}
this.add({
header: elt,
choice: elt.url.split('/').pop(),
selected: current === elt.url.replace(/^https?:\/\//, '')
}, { silent: true });
}, this);
if (this.size() > 0) {
this.addRandomChoice(current);
}
},
maybeAddRandomChoice: function() {
if (this.size() === 1) {
this.addRandomChoice();
}
},
addRandomChoice: function(initialChoice) {
var isRandomSameType = RegExp(this.type).test(initialChoice),
randomChoice = 'random-' + this.type + '-image';
this.add({
header: {
timestamp: 0,
random: randomChoice,
width: 245,
height: 41
},
choice: randomChoice,
random: true,
selected: isRandomSameType
});
},
isRandomChoice: function(choice) {
return (/^random-(uploaded|default)-image$/).test(choice);
},
shouldHideTitle: function() {
return this.size() < 2;
},
setImage: function(model) {
this.each(function(m) {
m.set('selected', false);
});
if (model) {
model.set('selected', true);
}
},
removeImage: function() {
this.each(function(m) {
m.set('selected', false);
});
}
});
/**
* wp.customize.HeaderTool.DefaultsList
*
* @constructor
* @augments wp.customize.HeaderTool.ChoiceList
* @augments Backbone.Collection
*/
api.HeaderTool.DefaultsList = api.HeaderTool.ChoiceList.extend({
initialize: function() {
this.type = 'default';
this.data = _wpCustomizeHeader.defaults;
api.HeaderTool.ChoiceList.prototype.initialize.apply(this);
}
});
})( jQuery, window.wp );
```
|
```objective-c
/*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef WorkerScriptLoader_h
#define WorkerScriptLoader_h
#include "core/CoreExport.h"
#include "core/loader/ThreadableLoader.h"
#include "core/loader/ThreadableLoaderClient.h"
#include "platform/network/ResourceRequest.h"
#include "platform/weborigin/KURL.h"
#include "public/platform/WebURLRequest.h"
#include "wtf/FastAllocBase.h"
#include "wtf/Functional.h"
#include "wtf/PassRefPtr.h"
#include "wtf/text/StringBuilder.h"
namespace blink {
class ContentSecurityPolicy;
class ResourceRequest;
class ResourceResponse;
class ExecutionContext;
class TextResourceDecoder;
class CORE_EXPORT WorkerScriptLoader final : public ThreadableLoaderClient {
WTF_MAKE_FAST_ALLOCATED(WorkerScriptLoader);
public:
WorkerScriptLoader();
~WorkerScriptLoader() override;
void loadSynchronously(ExecutionContext&, const KURL&, CrossOriginRequestPolicy);
// TODO: |finishedCallback| is not currently guaranteed to be invoked if
// used from worker context and the worker shuts down in the middle of an
// operation. This will cause leaks when we support nested workers.
// Note that callbacks could be invoked before loadAsynchronously() returns.
void loadAsynchronously(ExecutionContext&, const KURL&, CrossOriginRequestPolicy, PassOwnPtr<Closure> responseCallback, PassOwnPtr<Closure> finishedCallback);
// This will immediately invoke |finishedCallback| if loadAsynchronously()
// is in progress.
void cancel();
String script();
const KURL& url() const { return m_url; }
const KURL& responseURL() const;
bool failed() const { return m_failed; }
unsigned long identifier() const { return m_identifier; }
long long appCacheID() const { return m_appCacheID; }
PassOwnPtr<Vector<char>> releaseCachedMetadata() { return m_cachedMetadata.release(); }
const Vector<char>* cachedMetadata() const { return m_cachedMetadata.get(); }
PassRefPtr<ContentSecurityPolicy> contentSecurityPolicy() { return m_contentSecurityPolicy; }
PassRefPtr<ContentSecurityPolicy> releaseContentSecurityPolicy() { return m_contentSecurityPolicy.release(); }
// ThreadableLoaderClient
void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
void didReceiveData(const char* data, unsigned dataLength) override;
void didReceiveCachedMetadata(const char*, int /*dataLength*/) override;
void didFinishLoading(unsigned long identifier, double) override;
void didFail(const ResourceError&) override;
void didFailRedirectCheck() override;
void setRequestContext(WebURLRequest::RequestContext requestContext) { m_requestContext = requestContext; }
private:
PassOwnPtr<ResourceRequest> createResourceRequest();
void notifyError();
void notifyFinished();
void processContentSecurityPolicy(const ResourceResponse&);
// Callbacks for loadAsynchronously().
OwnPtr<Closure> m_responseCallback;
OwnPtr<Closure> m_finishedCallback;
RefPtr<ThreadableLoader> m_threadableLoader;
String m_responseEncoding;
OwnPtr<TextResourceDecoder> m_decoder;
StringBuilder m_script;
KURL m_url;
KURL m_responseURL;
bool m_failed;
bool m_needToCancel;
unsigned long m_identifier;
long long m_appCacheID;
OwnPtr<Vector<char>> m_cachedMetadata;
WebURLRequest::RequestContext m_requestContext;
RefPtr<ContentSecurityPolicy> m_contentSecurityPolicy;
};
} // namespace blink
#endif // WorkerScriptLoader_h
```
|
```ruby
# frozen_string_literal: true
module Decidim
module Proposals
# A command with all the business logic to accept a user request to
# contribute to a collaborative draft.
class AcceptAccessToCollaborativeDraft < Decidim::Command
# Public: Initializes the command.
#
# form - A form object with the params.
# collaborative_draft - A Decidim::Proposals::CollaborativeDraft object.
# current_user - The current user.
# requester_user - The user that requested to collaborate.
def initialize(form, current_user)
@form = form
@collaborative_draft = form.collaborative_draft
@current_user = current_user
@requester_user = form.requester_user
end
# Executes the command. Broadcasts these events:
#
# - :ok when everything is valid.
# - :invalid if it was not valid and we could not proceed.
#
# Returns nothing.
def call
return broadcast(:invalid) if @form.invalid?
return broadcast(:invalid) if @current_user.nil?
transaction do
@collaborative_draft.requesters.delete @requester_user
Decidim::Coauthorship.create(
coauthorable: @collaborative_draft,
author: @requester_user
)
end
notify_collaborative_draft_requester
notify_collaborative_draft_authors
broadcast(:ok, @requester_user)
end
private
def notify_collaborative_draft_authors
affected_users = @collaborative_draft.notifiable_identities - [@requester_user]
Decidim::EventsManager.publish(
event: "decidim.events.proposals.collaborative_draft_access_accepted",
event_class: Decidim::Proposals::CollaborativeDraftAccessAcceptedEvent,
resource: @collaborative_draft,
affected_users: affected_users.uniq,
extra: {
requester_id: @requester_user.id
}
)
end
def notify_collaborative_draft_requester
Decidim::EventsManager.publish(
event: "decidim.events.proposals.collaborative_draft_access_requester_accepted",
event_class: Decidim::Proposals::CollaborativeDraftAccessRequesterAcceptedEvent,
resource: @collaborative_draft,
affected_users: [@requester_user]
)
end
end
end
end
```
|
Juliet Ibrahim is a Ghanaian actress, film producer and singer of Lebanese, Ghanaian and Liberian descent. She won the Best Actress in a Leading Role award at the 2010 Ghana Movie Awards for her role in 4 Play. She has been referred to as the "Most Beautiful West African Woman" according to A-listers Magazine.
Early life
Juliet Ibrahim was born on 3rd March 1986 to a Lebanese father and a Ghanaian-Liberian mother in Accra. She is the oldest child and has two sisters including the actress Sonia Ibrahim, and a brother. Juliet and her siblings spent the longest part of their childhood in Lebanon and Ivory Coast due to civil wars. She had her primary education in Lebanon, then proceeded to Ivory Coast for her secondary education where she lived with her parents. She studied at the Ghana Institute of Languages, where she studied English, French, and Spanish. She also studied marketing, Advertising, and Public Relations at the Ghana Institute of Journalism.
Ibrahim has commented that in Africa she is not regarded as a black woman because of her skin tone, but outside Africa, she is recognized as being black. She objected to the term 'half-caste' and said that she was 'Black and proud of it'. She can speak English, French and Spanish.
Career
Ibrahim made her acting debut in the 2005 film Crime to Christ starring Majid Michel. Her first Nollywood film was Yankee Boys and she has featured in more than 50 films afterward. In 2014 she produced her first film Number One Fan, where she stars as an actress being stalked on by a fan in the film. Her second movie Shattered Romance which features Nigerian and Ghanaian actors, launched amidst fanfare in Accra, Ghana on 5 December 2014. Her new TV series; Every Woman Has A Story where she debuted her directorial skills is airing on Terrestrial TV and her new reality show, The Perfect Assistant, will be unveiled soon. She has also featured in Twi movies, in Yoruba language films, and also in Ladan Aure, a Hausa Language film.
Filmography
Love Awards
2010: Achievement Award – City People Magazine, Accra
2010: Ghana Movie Personality of the Year – City People Magazine, Lagos
2010: Best Lead Actress in a movie – Ghana Movie Awards
2014: Best Ghanaian Actress – City People Entertainment
2016: Actress of the year – Starzzawards
See also
List of Ghanaian actors
References
External links
Juliet Ibrahim Foundation
Ghanaian film actresses
Ghanaian people of Lebanese descent
Ghanaian people of Liberian descent
Musicians from Accra
Living people
Ghanaian film producers
Ghanaian women film producers
Actresses in Yoruba cinema
21st-century Ghanaian actresses
Actors from Accra
1986 births
21st-century Ghanaian women
Ghana Institute of Journalism alumni
Ghanaian musicians
21st-century Ghanaian musicians
|
Elections were held in the Zamboanga Peninsula for seats in the House of Representatives of the Philippines on May 10, 2010.
The candidate with the most votes won that district's seat for the 15th Congress of the Philippines.
Note that in Isabela, Basilan, although a part of this region, the voters elect their representative via Basilan's legislative district. Isabela is politically within Basilan despite being on separate regions.
Summary
Zamboanga City
1st District
Maria Isabelle Climaco Salazar is the incumbent.
2nd District
Erico Basilio Fabian is the incumbent.
Zamboanga del Norte
1st District
Cecilia Jalosjos-Carreon is retiring; her nephew provincial board member Seth Frederick Jalosjos is her party's nominee for the district's seat.
2nd District
Rosendo Labadlabad is the incumbent.
3rd District
Cesar Jalosjos is the incumbent.
Zamboanga del Sur
1st District
Victor Yu is the incumbent.
2nd District
Incumbent Antonio Cerilles will run for governor of Zamboanga del Sur. His wife three-term governor Aurora Enerio-Cerilles is his party's nominee for the district's seat.
Zamboanga Sibugay
1st District
Incumbent Belma Cabilao is in third consecutive term already and is ineligible for reelection. His son, Jonathan Yambao runs under her party.
2nd District
Incumbent Dulce Ann Hofer will run for governor of Zamboanga Sibugay. Provincial administrator George Hofer II is her party's nominee for the district's seat.
External links
Official website of the Commission on Elections
2010 Philippine general election
2010
|
EartH (Evolutionary Arts Hackney) is an independent arts centre in Dalston, London which opened in 2018 in a former cinema.
Facilities
On the ground floor is a multi-purpose 1200 capacity dedicated events space. Upstairs is a 750 capacity tiered seated Art Deco theatre. Each of these locations hosts live music shows. There is also a restaurant.
History
The building at 13 Stoke Newington Road was built in 1936 as an Art Deco cinema called The Savoy, later ABC, that ceased operations in 1984. It was later used as a snooker hall and wedding venue, among other uses. "The main auditorium then lay derelict for 40 years" until 2015. After a £3 million redevelopment by Auro Foxcroft and others, Evolutionary Arts Hackney, or EartH, opened there in September 2018.
References
External links
Arts organizations established in the 2010s
Music venues in London
Arts centres in London
Former cinemas in London
|
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<sql-cases>
<sql-case id="open_cursor" value="OPEN t_order_cursor" db-types="PostgreSQL" />
<sql-case id="open_cursor_using" value="OPEN t_order_cursor USING 1, 'test'" db-types="PostgreSQL" />
<sql-case id="open_cursor_using_sql" value="OPEN t_order_cursor USING SQL DESCRIPTOR mydesc" db-types="PostgreSQL" />
<sql-case id="open_cursor_with_host_variable" value="OPEN :t_order_cursor" db-types="PostgreSQL" />
</sql-cases>
```
|
The Massry Prize was established in 1996, and until 2009 was administered by the Meira and Shaul G. Massry Foundation. The Prize, of $40,000 and the Massry Lectureship, is bestowed upon scientists who have made substantial recent contributions in the biomedical sciences. Shaul G. Massry, M.D., who established the Massry Foundation, is Professor Emeritus of Medicine and Physiology and Biophysics at the Keck School of Medicine, University of Southern California. He served as Chief of its Division of Nephrology from 1974 to 2000. In 2009 the KECK School of Medicine was asked to administer the Prize, and has done so since that time. Ten winners of the Massry Prize have gone on to be awarded a Nobel Prize.
Previous laureates
Source: KECK School of Medicine
1996 Michael Berridge in the field of Signal Transduction
1997 Judah Folkman in the field of Growth Factors
1998 Mark Ptashne in the field of Regulation of Transcription
1999 Gunter Blobel in the field of Protein Trafficking. Blobel received the 1999 Nobel Prize in Physiology and Medicine two months after his receipt of the Massry Prize.
2000 Leland H. Hartwell in the field of Cell Cycle. Hartwell won the 2001 Nobel Prize in Physiology and Medicine one year after he received the Massry Prize.
2001 Avram Hershko and Alexander Varshavsky in the field of Proteolysis and the Ubiquitin System. Hershko won the 2004 Nobel Prize in Chemistry three years after he won the Massry Prize.
2002 Mario Capecchi and Oliver Smithies for their pioneering work on Gene targeting. They received the 2007 Nobel Prize in Physiology and Medicine five years after they won the Massry Prize.
2003 Roger Kornberg, David Allis and Michael Grunstein in the field of Nuclear Chromatin. Kornberg won the 2006 Nobel Prize in Chemistry three years after he received the Massry Prize.
2004 Ada Yonath and Harry Nolla in the field of Ribosomal Structure. Yonath won the 2009 Nobel Prize in Chemistry five years after she received the Massry Prize.
2005 Andrew Fire, Craig Mello and David Baulcombe in the field of RNAi. Fire and Mello won the 2006 Nobel Prize in Physiology and Medicine one year after they received the Massry Prize.
2006 Akira Endo in the field of Novel Therapies specifically for the Discovery of Statins
2007 Michael Phelps for the development of the PET Scan and its Clinical Application
2008 Shinya Yamanaka, James A. Thomson, and Rudolf Jaenisch for their work in the field of Induced Pluripotent Stem Cells Shinya Yamanaka received the 2012 Nobel Prize in Physiology and Medicine
2009 Gary Ruvkun and Victor Ambros for their work in the field of Micro RNA
2010 Randy Schekman for his work regarding the molecular mechanism of defects in secretion that lead to human diseases of development such as spina bifida. He received 2013 Nobel in Physiology and Medicine.
2011 Franz-Ulrich Hartl and Arthur Horwich for work on Chaperone-assisted protein folding
2012 Michael Rosbash, Jeffrey C. Hall and Michael W. Young for their groundbreaking studies of the molecular basis of circadian rhythms. They received the Nobel Prize in Physiology or Medicine in 2017.
2013 Michael Sheetz, James A. Spudich and Ronald D. Vale for their work defining molecular mechanisms of intracellular motility
2014 Steven Rosenberg, Zelig Eshhar and James P. Allison for their research on T cells.
2015 Philippe Horvath, Jennifer Doudna and Emmanuelle Charpentier for their research on gene editing.
2016 Gero Miesenböck, Peter Hegemann, Karl Deisseroth for their research on optogenetics.
2017 Rob Knight, Jeffrey Gordon, Norman R. Pace for their discovery of the microbiomes.
2018 Gregg Semenza, William Kaelin Jr., Peter J. Ratcliffe
2019 Ryszard Kole, Stanley T. Crooke for their seminal work in the development of oligonucleotides targeting messenger RNA as novel therapeutics for a wide range human diseases.
2021 Svante Pääbo, David Reich, Liran Carmel
See also
List of biomedical science awards
References
Biomedical awards
Academic awards
|
The Assuré was a 54-gun ship of the line of the French Navy, designed by Hubac.
She was named Lys in 1667, and renamed Assuré on 24 June 1671.
From 3 March 1674, she was fitted as a fireship under Captain du Mesny des Vaux. She took part in the Battle of Stromboli under Vilette Marsay, and in the Battle of Palermo.
She was part of Jean Bart's fleet in 1681.
She was broken up around 1689.
References
Ships of the line of the French Navy
1660s ships
|
```javascript
import React from 'react';
import TestUtils from 'react-addons-test-utils';
import { expect } from 'chai';
import { findDOMNode } from 'react-dom';
import { mount } from 'enzyme';
import TodoHeader from '../../src/components/TodoHeader';
describe('Enzyme Mount', () => {
it('Click Button', () => {
let todoHeaderDOM = mount(<TodoHeader />);
let button = todoHeaderDOM.find('button').at(0);
button.simulate('click');
expect(button.prop('disabled')).to.equal(true);
});
});
```
|
John Isaac Moore (February 7, 1856 – March 18, 1937) was a member of the Arkansas Senate and acting governor of the U.S. state of Arkansas.
Biography
Moore was born in Lafayette County, Mississippi, and graduated from the University of Arkansas in 1881. He studied law and was admitted to the Arkansas bar in 1882. He died on March 18, 1937.
Career
From 1894 to 1900, Moore served as probate judge in Phillips County, Arkansas. He was elected to the Arkansas House of Representatives in 1882, 1901, and 1903. In 1903, he served as speaker of the house.
Moore was elected to the Arkansas Senate in 1904. He served in the Senate in 1905, 1907, 1913, and 1915.
On February 11, 1907, Governor John Sebastian Little resigned from office due to mental and physical illness. Moore, who was president of the Senate at the time, became acting governor. He served as governor until the legislature adjourned on 14 May 1907.
Moore later served as a member of the Arkansas Board of State capital commissioners. He was a member of the Arkansas Constitutional Convention from 1917 to 1918.
See also
List of governors of Arkansas
References
External links
National Governors Association
State of Arkansas Governors
Acting Governor
1856 births
1937 deaths
19th-century American politicians
20th-century American politicians
Acting Governors of Arkansas
Democratic Party Arkansas state senators
Democratic Party governors of Arkansas
People from Lafayette County, Mississippi
People from Phillips County, Arkansas
Place of death missing
Speakers of the Arkansas House of Representatives
Democratic Party members of the Arkansas House of Representatives
University of Arkansas alumni
|
The Doll's House is a 2013 book by British author Tania Carver.
Synopsis
The book centres on the discovery of a dead pre-transition male-to-female transgender individual on a council housing estate in Birmingham. The inside of the house is like a doll's house with pink ribbons and pink walls, stuffed toys and the table set for a tea party
DI Phil Brennan on the Major Incident Squad begins investigating the puzzling case.
Reception
Author Mark Billingham described the book as 'seriously scary'. In Female First the reviewer wrote 'This book was full of psychopaths, gory murder scenes and scandal and I loved it. I ended up goading myself to read “just a few more pages” all the way. through' In Mystery Tribune the bok was 'recommended for ones looking for psychological thrillers' while
The book was also reviewed in Publishers Weekly.
References
2013 British novels
British thriller novels
British crime novels
Psychological thriller novels
British LGBT novels
Novels with transgender themes
Novels set in Birmingham, West Midlands
Sphere Books books
|
```batchfile
cls
setlocal enableextensions enabledelayedexpansion
call ../../language/build/locatevc.bat x64
cl /c /DEBUG ring_vmmysql.c -I"..\..\language\include" -I"..\..\extensions\libdepwin\mysql_x64\include"
link /DEBUG ring_vmmysql.obj ..\..\lib\ring.lib ..\..\extensions\libdepwin\MySQL_x64\lib\libmysql.lib /DLL /OUT:..\..\bin\ring_mysql.dll
del ring_vmmysql.obj
endlocal
```
|
Chanch is a village in Molekhal (Salt) tehsil of Almora district in the Indian state of Uttarakhand.
Chanch is at 16.7 km distance from tehsil Molekhal, which too is small market. It is 180.8 km distant from its district main city Almora.
The Chanch village has population of 270 of which 120 are males while 150 are females as per Population Census 2011. In Chanch village population of children with age 0-6 is 32 which makes up 11.85% of total population of village. Average Sex Ratio of Chanch village is 1381 which is much higher than Uttarakhand state average of 963. Child Sex Ratio for the Chanch as per census is 882, lower than Uttarakhand average of 890.
Though the village boasts of producing engineers, doctors, lawyers, writers, teachers and businessmen, Chanch village has lower literacy rate compared to Uttarakhand. In 2011, literacy rate of Chanch village was 74.37% compared to 78.82% of Uttarakhand. In Chanch Male literacy stands at 93.20% while female literacy rate was 60.00%.
Demographically, there are only two castes in this village, Brahmins and Scheduled Castes. Schedule Caste (SC) constitutes 18.89% of total population in Chanch village. The gram-panchayat of Chanch has developed very good forests in three directions of the village, which provide fodder, fuel, and fresh air.
With the composite efforts of Devidutt Jukundia, Bachiram Kaini, Gangadutt Kaini, Gangadutt Garhkoti, Durgadutt Isral, etc., the people of the earlier generations, who were migrant workers in Delhi, formed a socio-religious organization by the name of "Shree Dharm Seva Society Chanch" established in Delhi in the year 1946. This organization is still continuing with the zeal of the new generation and carrying out social activities and annual get together.
Chanch Mahotsav is an annual get together cultural event organized by village people's with help of an active youth group Nav Yuvak Mangal Dal, Chanch in every year from 6 to 7 June, this cultural get together events celebrate in village temple.
References
Villages in Almora district
|
"The Easy Winners" is a ragtime composition by Scott Joplin. One of his most popular works, it was one of the four that had been recorded as of 1940.
Title and cover
The title of the composition is a reference to athletes who are expected to win a sporting event without difficulty. The cover depicts scenes of baseball, football, horse racing and sailing.
Musical structure
According to musicologist and Joplin biographer Edward A. Berlin, "'Easy Winners' must be judged one of Joplin's great works. It has a classical balance between its strains, its moods, and in its progression from the smooth calm of strain A to the sporadic agitation of strain D."
The composition follows the structural pattern typical of many Joplin rags, although the pattern is extended to include an introduction before strain A and another before strain C, commonly called the trio. Thus, the structure reads:
Intro AA BB A Trio-Intro CC DD
The introduction and strains A and B are played in A-flat major. The second half of the composition is played in the subdominant key of D-flat major.
In keeping with the sports theme of the composition, Joplin begins the trio with an introduction that is reminiscent of the first call used before a horse race.
Trio and strain D
Berlin notes that the trio is the composition's outstanding feature, revealing "musical thinking unusual for ragtime." One of Joplin's signature compositional techniques was the use of voice leading in harmonized melodic lines, particularly the use of an inner voice descending a chromatic fourth. Although Joplin often used the technique to bring resolution to individual strains, in "The Easy Winners," he builds the entire trio on the concept. The trio has four similar phrases that feature an inner voice descending from B flat to A flat, all being interrupted before spelling out a full fourth. Finally, in the last five measures of the trio, Joplin begins the phrase an extra semitone higher at C flat and completes the chromatic descent to F natural. To emphasize this chromatic descent, Joplin double-stems the notes, suggesting they be brought out in performance.
Another notable feature of the trio is Joplin's use of a contrapuntal bass line. Played by the left hand in octaves in the last five measures, it heightens the complexity of the chromatic descent in the right hand and helps bring the strain to resolution.
To further emphasize the importance of the trio's climactic phrase, the last five measures of the trio and D strains are identical, producing what Jasen and Tichenor call a "strong echo-like effect."
Publication history
The copyright was registered October 10, 1901. The Shattinger Music Company of St. Louis, Missouri bought the piece and published a simplified version. Only later did John Stillwell Stark publish it as-written.
See also
List of compositions by Scott Joplin
References
External links
Sheet music and midi from Mutopia
1901 compositions
Rags by Scott Joplin
Compositions for solo piano
Compositions in A-flat major
|
was the sixth and last , built for the Imperial Japanese Navy under the Circle One Program (Maru Ichi Keikaku). Three were laid down in JFY 1931 and the next three in JFY 1933.
History
Construction of the advanced Hatsuharu-class destroyers was intended to give the Imperial Japanese Navy smaller and more economical destroyers than the previous and destroyers, but with essentially the same weaponry. These conflicting goals proved beyond contemporary destroyer design, and the initial ships of this class were top-heavy design, with severe stability problems and with inherent structural weaknesses. After the "Tomozuru Incident" of 1934 and "IJN 4th Fleet Incident" in 1935, Yūgure underwent extensive design changes and modifications prior to launch to remedy these issues.
Yūgure was laid down at Maizuru Naval Arsenal in Maizuru, Kyoto on 9 April 1933, launched on 6 May 1934 and commissioned on 30 March 1935.
Operational history
At the time of the attack on Pearl Harbor, Yūgure was assigned to Destroyer Division 27 of Destroyer Squadron 1 of the IJN 1st Fleet together with her sister ships , , and , and was based at Hashirajima in Japanese home waters on anti-submarine patrol.
In January 1942, Yūgure escorted aircraft carriers and to Palau and to Ambon during the invasion of the Netherlands East Indies, and was a participant in the Darwin air raid of 19 February 1942. Afterwards, she was based at Staring Bay, in Sulawesi from which she conducted escort patrol missions to the end of March. She returned to Sasebo Naval Arsenal for repairs from 22 March to 15 April 1942. At the end of April, she went to Truk as part of the escort for the aircraft carriers and and was part of Admiral Takagi's force at the Battle of the Coral Sea.
In May, Yūgure was assigned escort the cruisers and back to Kure. During the Battle of Midway, she was part of the escort for the Aleutian diversionary force under Admiral Shirō Takasu. Reassigned to the IJN 2nd Fleet on 14 July, she was then detached for temporary duty with the IJN 4th Fleet in a sortie from Truk to Jaluit on 20 August. After bombarding Ocean Island on 23 August, a landing party from Yūgure occupied that island on 26 August as part of "Operation RY" until relieved by a garrison force on 30 August. Yūgure was then assigned to the Solomon Islands, participating in numerous Tokyo Express high speed transport runs throughout the Solomon Islands through January 1943. Although she did not participate in the First Naval Battle of Guadalcanal, she assisted in rescue operations afterwards, taking on crew from the stricken battleship
After returning to Sasebo for repairs through the middle of January 1943, Yūgure escorted a convoy to Qingdao, and from there to Palau and Wewak by the end of February. She escorted another convoy from Truk to Wewak and back to Yokosuka in March and again in May. She returned to Truk at the end of the month as escort for the carrier , returning with the battleship at the end of May. In early June, she escorted the aircraft carrier to Truk, and returned with the same damaged ship a few days later. In late June, she escorted the carrier from Yokosuka to Truk. In early June, she was assigned to cover troop transport runs to Kolombangara.
On 12 July 1943, Yūgure participated in the Battle of Kolombangara, assisting in sinking the American destroyer and damaging the cruisers , and New Zealand's .
However, a few days later on the night of 19 July 1943, while on a troop transport run to Kolombangara, Yūgure was bombed and sunk by U.S. Marine Grumman TBF Avengers from Guadalcanal, north-northwest of Kolombangara (). The rescue destroyer picked up about twenty survivors but was sunk in turn soon thereafter, leaving no survivors from Yūgures crew of 228 men, and only one survivor from Kiyonami herself.
References
Notes
Books
OCLC 77257764
External links
Hatsuharu-class destroyers
World War II destroyers of Japan
Shipwrecks in the Solomon Sea
Ships built by Maizuru Naval Arsenal
1934 ships
Maritime incidents in July 1943
Warships lost in combat with all hands
Destroyers sunk by aircraft
Ships sunk by US aircraft
|
```java
/*
*
*
* path_to_url
*
*/
package org.dromara.maxkey.authz.oauth2.jwt.crypto.sign;
/**
* @author Luke Taylor
*/
public interface SignerVerifier extends Signer, SignatureVerifier {
}
```
|
```yaml
- name: Azure Programmable Connectivity documentation
href: index.yml
- name: Overview
expanded: true
items:
- name: What is Azure Programmable Connectivity?
href: azure-programmable-connectivity-overview.md
- name: Security overview for Azure Programmable Connectivity
href: azure-programmable-connectivity-security-overview.md
- name: Features
expanded: true
items:
- name: Aggregation
href: azure-programmable-connectivity-aggregation.md
- name: Abstraction
href: azure-programmable-connectivity-abstraction.md
- name: Consolidated billing
href: azure-programmable-connectivity-billing.md
- name: Concepts
expanded: true
items:
- name: Network APIs
href: azure-programmable-connectivity-network-apis.md
- name: Locations and partners
href: azure-programmable-connectivity-locations-partners.md
- name: Availability and redundancy
href: azure-programmable-connectivity-availability.md
- name: Quickstarts
expanded: true
items:
- name: Create an APC Gateway
href: azure-programmable-connectivity-create-gateway.md
- name: Using network APIs
href: azure-programmable-connectivity-using-network-apis.md
- name: Resources
items:
- name: Azure Marketplace
href: path_to_url
- name: Azure Roadmap
href: path_to_url
- name: Blog
href: path_to_url
```
|
La Orchila Airport is an airport serving the island of La Orchila in the Caribbean Sea north of the Venezuelan coast. La Orchila is in the Federal Dependencies of Venezuela.
The La Orchila VOR-DME (Ident: LOR) is located on the field.
See also
Transport in Venezuela
List of airports in Venezuela
References
External links
OpenStreetMap - La Orchila
OurAirports - La Orchila
SkyVector - La Orchila Isla Airport
HERE/Nokia - La Orchila Island
Airports in Venezuela
|
Barefoot Savage () is a 1952 Italian melodrama film directed by Clemente Fracassi.
Cast
Angelo Binarelli as Marco
Clorindo Cerato as Farm Hand
Francesca Liddi as Nidia
Marcello Mastroianni as Carlo Sartori
Corrado Nardi as Bosci
Amedeo Nazzari as Riccardo Sartori
Eleonora Rossi Drago as Franca Gabrie
Maria Zanoli as Maid
References
External links
1952 films
1950s Italian-language films
1952 drama films
Italian black-and-white films
Films directed by Clemente Fracassi
Italian drama films
Melodrama films
1950s Italian films
|
```go
package junit
import (
"html"
"strconv"
"github.com/securego/gosec/v2"
"github.com/securego/gosec/v2/issue"
)
func generatePlaintext(issue *issue.Issue) string {
cweID := "CWE"
if issue.Cwe != nil {
cweID = issue.Cwe.ID
}
return "Results:\n" +
"[" + issue.File + ":" + issue.Line + "] - " +
issue.What + " (Confidence: " + strconv.Itoa(int(issue.Confidence)) +
", Severity: " + strconv.Itoa(int(issue.Severity)) +
", CWE: " + cweID + ")\n" + "> " + html.EscapeString(issue.Code) +
"\n Autofix: " + issue.Autofix
}
// GenerateReport Convert a gosec report to a JUnit Report
func GenerateReport(data *gosec.ReportInfo) Report {
var xmlReport Report
testsuites := map[string]int{}
for _, issue := range data.Issues {
index, ok := testsuites[issue.What]
if !ok {
xmlReport.Testsuites = append(xmlReport.Testsuites, NewTestsuite(issue.What))
index = len(xmlReport.Testsuites) - 1
testsuites[issue.What] = index
}
failure := NewFailure("Found 1 vulnerability. See stacktrace for details.", generatePlaintext(issue))
testcase := NewTestcase(issue.File, failure)
xmlReport.Testsuites[index].Testcases = append(xmlReport.Testsuites[index].Testcases, testcase)
xmlReport.Testsuites[index].Tests++
}
return xmlReport
}
```
|
Henry Bromage (17 May 1879 – June 1954) was an English footballer who played in the Football League for Derby County, Burton United and Leeds City, and in the Midland League for Doncaster Rovers.
References
1879 births
1954 deaths
Footballers from Derby
English men's footballers
Men's association football goalkeepers
Derby County F.C. players
Burton United F.C. players
Leeds City F.C. players
Doncaster Rovers F.C. players
Bentley Colliery F.C. players
English Football League players
Midland Football League players
|
The Queen's Theatre (originally Queen's Hall) is a theatre building in Burslem, Stoke-on-Trent, England. It is situated in Wedgwood Street in the town centre.
It is a Grade II listed building, listed on 19 April 1972.
History
It was commissioned as Burslem's town hall, to replace the town hall built in the 1850s, and was built by the architects Russell and Cooper. Completed in 1911, after the Federation of Stoke-on-Trent in 1910 made its original purpose obsolete, the building was opened as the Queen's Theatre, a venue for drama, concerts and other entertainments.
Requiring repairs, the theatre closed in 1998. From 2003 events occasionally took place; it closed again in 2014.
Architecture
The front, faced with ashlar, has a portico of full height with three pairs of Corinthian columns and an entablature above; there is a windowless attic storey above this. There is a large doorway between each pair of columns.
To the right of the main frontage is a wing of the building, of two storeys, with ten windows on each storey and an entrance. It is supposed that this part, being less ornate, was created after it was known that the building was no longer intended as a town hall.
The foyer has a white marble staircase at each end. The auditorium has a rear and side balconies, and a ceiling with decorative plasterwork and large Art Deco lamps.
References
External links
Buildings and structures in Stoke-on-Trent
Grade II listed buildings in Staffordshire
Theatres in Staffordshire
|
```xml
<?xml version="1.0" encoding="UTF-8"?>
<local:TestShell xmlns="path_to_url" xmlns:x="path_to_url" x:Class="Xamarin.Forms.Controls.Issues.Issue8207" Title="Test Page" xmlns:local="using:Xamarin.Forms.Controls">
<ShellItem Title="Dashboard" FlyoutIcon="coffee.png" Route="Home">
<ShellContent Title="Control">
<ContentPage Title="Control">
<ScrollView>
<StackLayout>
<Label Text="Hello xamarin forms">
</Label>
</StackLayout>
</ScrollView>
</ContentPage>
</ShellContent>
</ShellItem>
<ShellItem Title="Connect" Route="connect">
<ShellSection>
<ShellContent Title="Connect">
<ContentPage Title="Connect" />
</ShellContent>
<ShellContent Title="Control">
<ContentPage Title="Control">
<ScrollView>
<StackLayout>
<Label Text="Other Page">
</Label>
</StackLayout>
</ScrollView>
</ContentPage>
</ShellContent>
</ShellSection>
</ShellItem>
<ShellContent Title="This is a shellContent" Icon="coffee.png" Route="dices" />
</local:TestShell>
```
|
```shell
Subdirectory checkout
Workflow: long running branches
Checkout the previous branch
Cherry-pick a commit
Move the last commit to a new branch
```
|
Uciechów is a village in the administrative district of Gmina Dzierżoniów, within Dzierżoniów County, Lower Silesian Voivodeship, in south-western Poland. Prior to 1945 it was in Germany.
It lies approximately north-east of Dzierżoniów, and south-west of the regional capital Wrocław.
References
Villages in Dzierżoniów County
|
Satyagnana Sabha (Temple of Wisdom is a temple constructed (25.01.1872) by the saint Sri Raamalinga Swaamigal (Vallalaar) in the town of Vadalur in Cuddalore district, Tamil Nadu, India. It is an octagonal structure; the sanctum sanctorum of this temple is concealed from the main hall by seven curtains which are parted only on the Thai Poosam day. All the four towers of the Chidambaram Nataraajar temple are visible from the sabha.
The Sathya gnana sabha consists of three sabhas:
The Chirchabai (சிற்சபை) which represents moon or left eye of people,
The Porchabai (பொற்சபை) or golden sabha which represents the sun or right eye of people and
The third Gnana sabha (ஞான சபை) which represents the third eye or the wisdom of people.
The building was built in an octagonal shape which represents the 8 bones in the human skull. Only two Saints established Sangha (sabha) in Indian and World history. One is Gautama Buddha, another is Saint Vallalar. All Saivite madams are primarily for religious pupils, to which common people only go when a need arises. But a Sabha is a place where common people can go, join, organize and they can interact with spiritual people. Vallalar clearly mentioned this in his poetry as given below:
"எச்சபை பொதுவென இயம்பினர் அறிஞர்கள்
அச்சபை யிடங்கொள்ளும் அருட்பெருஞ் ஜோதி"
meaning, "This sabha is a common place for every one, who follows San maargam (good way)".
Near the Sathya gnana sabha there is the Dharma saalai where free food is offered to thousands of people every day. The Dharma saalai has a stove which was lighted by Sri Raamalinga swaamigal (Vallalar), which is still being used for cooking. Near the Dharma saalai, there is the jeeva samaadhi of Kalpattu ayyaa. He was the second san maargi attaining dheekshai from vallalar.
Notes
References
Hindu temples in Cuddalore district
|
```c++
//your_sha256_hash---------------------------------------
//your_sha256_hash---------------------------------------
#pragma once
namespace Js
{
template <typename StringType>
inline void JavascriptString::Copy(__out_ecount(bufLen) char16 *const buffer, const charcount_t bufLen)
{
Assert(buffer);
charcount_t stringLen = this->GetLength();
Assert(stringLen == m_charLength);
if (bufLen < stringLen)
{
Throw::InternalError();
}
if (IsFinalized())
{
CopyHelper(buffer, GetString(), stringLen);
return;
}
// Copy everything except nested string trees into the buffer. Collect nested string trees and the buffer locations
// where they need to be copied, and copy them at the end. This is done to avoid excessive recursion during the copy.
StringCopyInfoStack nestedStringTreeCopyInfos(GetScriptContext());
((StringType *)this)->StringType::CopyVirtual(buffer, nestedStringTreeCopyInfos, 0);
FinishCopy(buffer, nestedStringTreeCopyInfos);
}
} // namespace Js
```
|
The Festival Oude Muziek Utrecht ("Utrecht Early Music Festival") is an annual music festival that showcases and celebrates early European art music. The ten-day festival takes place in the Dutch city of Utrecht, and begins in August. The programme includes concerts, activities, lectures, exhibitions, and a symposium.
The primary venue is TivoliVredenburg, which opened in 2014. TivoliVredenburg is on the former site of an earlier music venue, Muziekcentrum Vredenburg. The Muziekcentrum was the festival's primary venue until it was demolished in 2008, to allow for new construction. The main concert hall of the Muziekcentrum was subsumed into the TivoliVredenburg.
Each year, the festival's organisers adopt a theme, which focuses on a particular place, time, and style in early music. The theme shapes not only the style and musical repertoire of the performances, but also the period instruments used.
See also
Early music revival
Historically informed performance
References
External links
Music festivals established in 1982
Early music festivals
Classical music festivals in the Netherlands
Music festivals in the Netherlands
1982 establishments in the Netherlands
|
```go
package serverstats
//go:generate sqlboiler --no-hooks psql
import (
"context"
"database/sql"
"strconv"
"strings"
"sync"
"time"
"github.com/botlabs-gg/yagpdb/v2/common"
"github.com/botlabs-gg/yagpdb/v2/common/config"
"github.com/botlabs-gg/yagpdb/v2/premium"
"github.com/botlabs-gg/yagpdb/v2/serverstats/models"
)
var confDeprecated = config.RegisterOption("yagpdb.serverstats.deprecated", "Wether to mark server stats as disabled or not, this will disable recording of new stats", false)
type Plugin struct {
stopStatsLoop chan *sync.WaitGroup
}
func (p *Plugin) PluginInfo() *common.PluginInfo {
return &common.PluginInfo{
Name: "Server Stats",
SysName: "server_stats",
Category: common.PluginCategoryMisc,
}
}
var logger = common.GetPluginLogger(&Plugin{})
func RegisterPlugin() {
common.InitSchemas("serverstats", dbSchemas...)
plugin := &Plugin{
stopStatsLoop: make(chan *sync.WaitGroup),
}
common.RegisterPlugin(plugin)
}
// ServerStatsConfig represents a configuration for a server
// reason we dont reference the model directly is because i need to figure out a way to
// migrate them over to the new schema, painlessly.
type ServerStatsConfig struct {
Public bool
IgnoreChannels string
ParsedChannels []int64
}
func (s *ServerStatsConfig) ParseChannels() {
split := strings.Split(s.IgnoreChannels, ",")
for _, v := range split {
parsed, err := strconv.ParseInt(v, 10, 64)
if err == nil {
s.ParsedChannels = append(s.ParsedChannels, parsed)
}
}
}
func configFromModel(model *models.ServerStatsConfig) *ServerStatsConfig {
conf := &ServerStatsConfig{
Public: model.Public.Bool,
IgnoreChannels: model.IgnoreChannels.String,
}
conf.ParseChannels()
return conf
}
func GetConfig(ctx context.Context, GuildID int64) (*ServerStatsConfig, error) {
if ctx == nil {
ctx = context.Background()
}
conf, err := models.FindServerStatsConfigG(ctx, GuildID)
if err != nil && err != sql.ErrNoRows {
return nil, err
}
if conf == nil {
return &ServerStatsConfig{}, nil
}
return configFromModel(conf), nil
}
// RoundHour rounds a time.Time down to the hour
func RoundHour(t time.Time) time.Time {
t = t.UTC()
return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, t.Location())
}
var _ premium.NewPremiumGuildListener = (*Plugin)(nil)
func (p *Plugin) OnNewPremiumGuild(guildID int64) error {
const q = `UPDATE server_stats_periods_compressed SET premium=true WHERE guild_id=$1 AND premium=false`
_, err := common.PQ.Exec(q, guildID)
return err
}
```
|
```c++
#include "DynamicMapping.h"
#include <Psapi.h>
#include <ntdll/ntdll.h>
#pragma comment(lib, "psapi.lib")
LPVOID MapModuleToProcess(HANDLE hProcess, BYTE * dllMemory, bool wipeHeaders)
{
PIMAGE_DOS_HEADER pDosHeader = (PIMAGE_DOS_HEADER)dllMemory;
PIMAGE_NT_HEADERS pNtHeader = (PIMAGE_NT_HEADERS)((DWORD_PTR)pDosHeader + pDosHeader->e_lfanew);
PIMAGE_SECTION_HEADER pSecHeader = IMAGE_FIRST_SECTION(pNtHeader);
if (pDosHeader->e_magic != IMAGE_DOS_SIGNATURE || pNtHeader->Signature != IMAGE_NT_SIGNATURE)
{
return nullptr;
}
IMAGE_DATA_DIRECTORY relocDir = pNtHeader->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC];
bool relocatable = (pNtHeader->OptionalHeader.DllCharacteristics & IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE) != 0;
bool hasRelocDir = pNtHeader->OptionalHeader.NumberOfRvaAndSizes >= IMAGE_DIRECTORY_ENTRY_BASERELOC && relocDir.VirtualAddress > 0 && relocDir.Size > 0;
if (!hasRelocDir && (pNtHeader->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED)) // A relocation dir is optional, but it must not have been stripped
{
return nullptr;
}
ULONG_PTR headersBase = pNtHeader->OptionalHeader.ImageBase;
LPVOID preferredBase = relocatable ? nullptr : (LPVOID)headersBase;
LPVOID imageRemote = VirtualAllocEx(hProcess, preferredBase, pNtHeader->OptionalHeader.SizeOfImage, MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE);
LPVOID imageLocal = VirtualAlloc(nullptr, pNtHeader->OptionalHeader.SizeOfImage, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
if (!imageLocal || !imageRemote)
{
return nullptr;
}
// Update the headers to the relocated image base
if (relocatable && (ULONG_PTR)imageRemote != pNtHeader->OptionalHeader.ImageBase)
pNtHeader->OptionalHeader.ImageBase = (ULONG_PTR)imageRemote;
memcpy((LPVOID)imageLocal, (LPVOID)pDosHeader, pNtHeader->OptionalHeader.SizeOfHeaders);
SIZE_T imageSize = pNtHeader->OptionalHeader.SizeOfImage;
for (WORD i = 0; i < pNtHeader->FileHeader.NumberOfSections; i++)
{
if (hasRelocDir && i == pNtHeader->FileHeader.NumberOfSections - 1 &&
pSecHeader->VirtualAddress == relocDir.VirtualAddress && (pSecHeader->Characteristics & IMAGE_SCN_MEM_DISCARDABLE))
imageSize = pSecHeader->VirtualAddress; // Limit the maximum VA to copy to the process to exclude .reloc if it is the last section
memcpy((LPVOID)((DWORD_PTR)imageLocal + pSecHeader->VirtualAddress), (LPVOID)((DWORD_PTR)pDosHeader + pSecHeader->PointerToRawData), pSecHeader->SizeOfRawData);
pSecHeader++;
}
if (hasRelocDir)
{
DWORD_PTR dwDelta = (DWORD_PTR)imageRemote - headersBase;
DoBaseRelocation(
(PIMAGE_BASE_RELOCATION)((DWORD_PTR)imageLocal + relocDir.VirtualAddress),
(DWORD_PTR)imageLocal,
dwDelta);
}
ResolveImports((PIMAGE_IMPORT_DESCRIPTOR)((DWORD_PTR)imageLocal + pNtHeader->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT].VirtualAddress), (DWORD_PTR)imageLocal);
SIZE_T skipBytes = wipeHeaders ? pNtHeader->OptionalHeader.SizeOfHeaders : 0;
if (WriteProcessMemory(hProcess, (PVOID)((ULONG_PTR)imageRemote + skipBytes), (PVOID)((ULONG_PTR)imageLocal + skipBytes),
imageSize - skipBytes, nullptr))
{
VirtualFree(imageLocal, 0, MEM_RELEASE);
}
else
{
VirtualFree(imageLocal, 0, MEM_RELEASE);
VirtualFreeEx(hProcess, imageRemote, 0, MEM_RELEASE);
imageRemote = nullptr;
}
return imageRemote;
}
bool ResolveImports(PIMAGE_IMPORT_DESCRIPTOR pImport, DWORD_PTR module)
{
PIMAGE_THUNK_DATA thunkRef;
PIMAGE_THUNK_DATA funcRef;
while (pImport->FirstThunk)
{
char * moduleName = (char *)(module + pImport->Name);
HMODULE hModule = GetModuleHandleA(moduleName);
if (!hModule)
{
hModule = LoadLibraryA(moduleName);
if (!hModule)
{
return false;
}
}
funcRef = (PIMAGE_THUNK_DATA)(module + pImport->FirstThunk);
if (pImport->OriginalFirstThunk)
{
thunkRef = (PIMAGE_THUNK_DATA)(module + pImport->OriginalFirstThunk);
}
else
{
thunkRef = (PIMAGE_THUNK_DATA)(module + pImport->FirstThunk);
}
while (thunkRef->u1.Function)
{
if (IMAGE_SNAP_BY_ORDINAL(thunkRef->u1.Function))
{
funcRef->u1.Function = (DWORD_PTR)GetProcAddress(hModule, (LPCSTR)IMAGE_ORDINAL(thunkRef->u1.Ordinal));
}
else
{
PIMAGE_IMPORT_BY_NAME thunkData = (PIMAGE_IMPORT_BY_NAME)(module + thunkRef->u1.AddressOfData);
funcRef->u1.Function = (DWORD_PTR)GetProcAddress(hModule, (LPCSTR)thunkData->Name);
}
if (!funcRef->u1.Function)
{
MessageBoxA(0, "Function not resolved", moduleName, 0);
return false;
}
thunkRef++;
funcRef++;
}
pImport++;
}
return true;
}
void DoBaseRelocation(PIMAGE_BASE_RELOCATION relocation, DWORD_PTR memory, DWORD_PTR dwDelta)
{
DWORD_PTR * patchAddress;
WORD type, offset;
while (relocation->VirtualAddress)
{
PBYTE dest = (PBYTE)(memory + relocation->VirtualAddress);
DWORD count = (relocation->SizeOfBlock - sizeof(IMAGE_BASE_RELOCATION)) / sizeof(WORD);
WORD * relocInfo = (WORD *)((DWORD_PTR)relocation + sizeof(IMAGE_BASE_RELOCATION));
for (DWORD i = 0; i < count; i++)
{
type = relocInfo[i] >> 12;
offset = relocInfo[i] & 0xfff;
switch (type)
{
case IMAGE_REL_BASED_ABSOLUTE:
break;
case IMAGE_REL_BASED_HIGHLOW:
case IMAGE_REL_BASED_DIR64:
patchAddress = (DWORD_PTR *)(dest + offset);
*patchAddress += dwDelta;
break;
default:
break;
}
}
relocation = (PIMAGE_BASE_RELOCATION)((DWORD_PTR)relocation + relocation->SizeOfBlock);
}
}
DWORD RVAToOffset(PIMAGE_NT_HEADERS pNtHdr, DWORD dwRVA)
{
PIMAGE_SECTION_HEADER pSectionHdr = IMAGE_FIRST_SECTION(pNtHdr);
for (WORD i = 0; i < pNtHdr->FileHeader.NumberOfSections; i++)
{
if (pSectionHdr->VirtualAddress <= dwRVA)
{
if ((pSectionHdr->VirtualAddress + pSectionHdr->Misc.VirtualSize) > dwRVA)
{
dwRVA -= pSectionHdr->VirtualAddress;
dwRVA += pSectionHdr->PointerToRawData;
return (dwRVA);
}
}
pSectionHdr++;
}
return (0);
}
DWORD GetDllFunctionAddressRVA(BYTE * dllMemory, LPCSTR apiName)
{
PIMAGE_DOS_HEADER pDosHeader = (PIMAGE_DOS_HEADER)dllMemory;
PIMAGE_NT_HEADERS pNtHeader = (PIMAGE_NT_HEADERS)((DWORD_PTR)pDosHeader + pDosHeader->e_lfanew);
PIMAGE_EXPORT_DIRECTORY pExportDir;
DWORD exportDirRVA = pNtHeader->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress;
DWORD exportDirOffset = RVAToOffset(pNtHeader, exportDirRVA);
pExportDir = (PIMAGE_EXPORT_DIRECTORY)((DWORD_PTR)dllMemory + exportDirOffset);
DWORD * addressOfFunctionsArray = (DWORD *)((DWORD)pExportDir->AddressOfFunctions - exportDirRVA + (DWORD_PTR)pExportDir);
DWORD * addressOfNamesArray = (DWORD *)((DWORD)pExportDir->AddressOfNames - exportDirRVA + (DWORD_PTR)pExportDir);
WORD * addressOfNameOrdinalsArray = (WORD *)((DWORD)pExportDir->AddressOfNameOrdinals - exportDirRVA + (DWORD_PTR)pExportDir);
for (DWORD i = 0; i < pExportDir->NumberOfNames; i++)
{
char * functionName = (char*)(addressOfNamesArray[i] - exportDirRVA + (DWORD_PTR)pExportDir);
if (!_stricmp(functionName, apiName))
{
return addressOfFunctionsArray[addressOfNameOrdinalsArray[i]];
}
}
return 0;
}
HMODULE GetModuleBaseRemote(HANDLE hProcess, const wchar_t* szDLLName)
{
DWORD cbNeeded = 0;
wchar_t szModuleName[MAX_PATH] = { 0 };
if (EnumProcessModules(hProcess, 0, 0, &cbNeeded))
{
HMODULE* hMods = (HMODULE*)malloc(cbNeeded*sizeof(HMODULE));
if (EnumProcessModules(hProcess, hMods, cbNeeded, &cbNeeded))
{
for (unsigned int i = 0; i < cbNeeded / sizeof(HMODULE); i++)
{
szModuleName[0] = 0;
if (GetModuleFileNameExW(hProcess, hMods[i], szModuleName, _countof(szModuleName)))
{
wchar_t* dllName = wcsrchr(szModuleName, L'\\');
if (dllName)
{
dllName++;
if (!_wcsicmp(dllName, szDLLName))
{
HMODULE module = hMods[i];
free(hMods);
return module;
}
}
}
}
}
free(hMods);
}
return 0;
}
```
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#FF5722</color>
<color name="colorPrimaryDark">#E64A19</color>
<color name="colorAccent">#FFFFFF</color>
</resources>
```
|
```smalltalk
using JetBrains.Annotations;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Microsoft.AspNetCore.Razor.TagHelpers;
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Form.DatePicker;
[HtmlTargetElement("abp-date-range-picker", TagStructure = TagStructure.NormalOrSelfClosing)]
public class AbpDateRangePickerTagHelper : AbpDatePickerBaseTagHelper<AbpDateRangePickerTagHelper>
{
public ModelExpression? AspForStart { get; set; }
public ModelExpression? AspForEnd { get; set; }
public AbpDateRangePickerTagHelper(AbpDateRangePickerTagHelperService tagHelperService) :
base(tagHelperService)
{
}
}
```
|
Sjølie is a surname. Notable people with the surname include:
David Aleksander Sjølie (born 1988), Norwegian jazz guitarist
Martin Sjølie (born 1979), Norwegian songwriter and record producer
Ole Sjølie (1923–2015), Norwegian painter
Norwegian-language surnames
|
Gravestone is a German heavy metal band, formed in 1977 as originally a progressive rock outfit, before going in to the heavy metal genre.
Gravestone released five studio albums between 1977 and 1986 before splitting up. Several of the band members continued the band under the name 48 Crash. In 2019, the band reunited to play live shows again. The current line-up is the same as in 1985 (Majdan, Reinelt, Dieth, Sabisch, Imbacher).
Band members
Vocals
Berti Majdan
Dietmar "Oli" Orlitta
Drums
Dieter Behle
Thomas Imbacher
Mike Schmidt
Bass Guitar
Berti Majdan
Dietmar "Oli" Orlitta
Thomas Sabisch
Guitar
Mathias Dieth
Rudi Dorner
Taki Gradl
Jürgen Metko
Klaus 'Doc' Reinelt
Wolfgang Rittner
Keyboards
Andy Müller
Discography
Albums
Doomsday (1979)
War (1980)
Victim of Chains (1984)
Back to Attack (1985)
Creating a Monster (1986)
Compilation albums
The Best of Gravestone (1993)
References
External links
MySpace Gravestone fanpage
Tartarean Desire - Gravestone Band Page
Encyclopaedia Metallum - Gravestone (Ger)
German heavy metal musical groups
German rock music groups
Musical groups established in 1977
|
The Sony α6400 (model ILCE-6400) is a digital camera announced January 15, 2019. It is an APS-C mirrorless interchangeable lens camera (MILC) designed to be a mid-range mirrorless camera and act as an update of the α6300. Sony is targeting the vlogging community with the α6400's flip-up screen and aggressive pricing. It features the same 24 megapixel sensor seen in the α6500. At the time of release, the two most capable cameras in the α6000 series of cameras were the α6400 and the α6500. The α6500 featured in-body image stabilization, and a larger image buffer, but in most other respects the α6400 is a more advanced camera. This is largely due to its processing power, enabling features like animal eye AF, and autofocus tracking. These features, for example, can not be added to the α6300 via a firmware update, as it is too demanding a feature.
At its announcement, the Sony α6400 is advertised as featuring the "world's fastest autofocus" with lag of 0.02 second and 11 fps continuous shooting with continuous AF and 8 fps with the silent shutter. Its MSRP is $889 for the body and $998 with a 16–50 mm power-zoom kit lens f/3.5-5.6.
Sony's α6400 also saw a much-needed upgrade to the photo sharing apps and the reintroduction of time-lapse videos via the menu system.
For video shooters, a welcome change for the α6400 was the removal of the 30-minute record limit. This limit is an artificial one placed on many cameras to avoid being taxed differently. The α6400 is also a vast improvement for Sony with regards to overheating (most likely to occur whilst recording 4K due to the processing demands). Online tests showed that in modest ambient temperatures, you will flatten the battery or fill the memory card before you overheat the camera.
Firmware 2.0 was released for the α6400 on 13 June 2019, introducing animal eye AF, the ability to use the wireless remote commander RMT-P1BT, as well as claimed stability improvements.
Features
24.2-megapixel Exmor CMOS sensor
425-point phase detection AF
Real-time Eye AF; Real-time Tracking
Super 35 mm format, 4K movie recording with full pixel readout and no pixel binning
LCD touchscreen (2.95 inch) with 180-degree tilt up functionality
1.0 cm (0.39-inch) electronic viewfinder
1200-zone evaluative light metering
Built-in Wi-Fi, NFC and Bluetooth
LED-auto focus illuminator
Continuous shooting: Hi+: 11 fps, Hi: 8 fps, Mid: 6 fps, Lo: 3 fps
My Menu system
Single memory card slot (UHS-1 compatible)
Electronic shutter for silent shooting
Interval Shooting (time-lapse)
Animal Eye AF (With firmware v2.00)
Allows the operation with the wireless remote commander RMT-P1BT (Firmware v2.0)
Reception
After its announcement, numerous first impressions released from popular YouTube vloggers and camera-focused channels. Full reviews are not out yet but the general consensus is Sony priced it correctly, but for some the lack of the new Zbattery and the fact the flip-up screen blocks the hot shoe mount are odd choices.
See also
List of Sony E-mount cameras
Sony α6300
Sony α6500
Sony α7 III
Sony α7r III
Sony α9
References
External links
Meet the new Sony Alpha A6400 Mirrorless Camera
Sony A6400 Sample Images
α6000
Live-preview digital cameras
Cameras introduced in 2019
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.