text stringlengths 1 22.8M |
|---|
Myriam Soumaré (born 29 October 1986) is a retired French track and field sprinter. She announced her retirement from athletics in February 2016.
Athletics career
2008–2009
Soumaré made her Olympic debut at the 2008 Summer Olympics in Beijing. She competed in only one event – the 4 × 100 meters relay together with Muriel Hurtis-Houairi, Lina Jacques-Sébastien and Carima Louami. In their first round heat they did not finish and were eliminated, due to a mistake with the baton exchange.
In her debut World Championships appearance at 2009, Soumaré took part in only one event – the 100 metres. She was eliminated in the quarter-finals of that event.
2010 – three medals at the European Championships
At the 2010 European Championships – her debut appearance in the European Championships – in Barcelona, Soumaré won the gold medal in the 200 metres with a time of 22.32 seconds in lane 8, shaving her previous personal best time by 0.69 second in doing so. She also won the 4 × 100 metres relay silver medal and the 100 metres bronze medal with a personal best time of 11.18 seconds, which was an improvement of 0.16 second over her previous personal best time.
2011
At the 2011 World Championships in Daegu, Soumaré participated in three events – the 100 metres, 200 metres and 4 × 100 metres relay. She was eliminated in the semi-finals of the 100 and 200 metres events. Her 4 × 100 metres relay team finished in fourth place in the final.
2012 – 7th in the 200m Olympic final
Soumaré represented France in three events at the 2012 Summer Olympics in London: 100m, 200m and 4 × 100 m relay. She finished seventh in the 200m final in a time of 22.63 sec. She achieved the 11th fastest time in the 100m semi-finals and thus did not qualify for the final. In the first round heats of the 4 × 100 m relay, her team botched its last two baton exchanges and was disqualified for out-of-zone baton exchange.
Soumaré was the 200 metres runner-up of the 2012 IAAF Diamond League, behind Charonda Williams.
2013 – European Indoor Championships 60m silver medal
Soumaré won her first European Indoor Championships
medal at the 2013 European Indoor Championships – a silver for the 60 metres. She had initially won the bronze. But the initial winner of the 60m final, Tezdzhan Naimova, was stripped of her gold medal after being found guilty of doping during the competition. Soumaré was thus elevated to receive the silver medal.
At the 2013 World Championships in Moscow, Soumaré took part in three events – the 100 metres, 200 metres and 4 × 100 metres relay. She was eliminated in the semi-finals of the 100 and 200 metres events. Her 4 × 100 metres relay team finished the third fastest among the 19 national teams taking part in the heats, and thus qualified for the final. In the final, the French team – consisting of Céline Distel-Bonnet, Ayodelé Ikuesan, Soumaré and Stella Akakpo running in the first, second, third and fourth legs respectively – finished the race in second position (42.73 seconds) behind Jamaica. The French relay team members were duly presented their silver medals during the medal ceremony. After the medal ceremony, the British team filed a protest against the French team, claiming that the latter had an out-of-zone baton handover between Ikuesan and Soumaré. More than two hours after the race, the French relay team was officially disqualified. The French delegation appealed against their disqualification, but it was in vain. Consequently, the American team was upgraded to the silver medal and the British team received the bronze medal. Bernard Amsalem, the president of the Fédération française d'athlétisme, called the French team's disqualification "an outrage". He explained that normally the decision to disqualify a team had to be made before the medal ceremony and teams had to file protests within thirty minutes from the end of the race.
2015
Soumaré took a year off from athletics in 2015.
Retirement
On 24 February 2016, Soumaré announced her retirement from athletics, while leaving open the possibility of making a comeback in the future.
Personal life
Soumaré's parents are of Mauritanian origin. She has four siblings and is a Muslim. She lives with them in the northern Paris suburb of Villiers-le-Bel.
Soumaré works as a childcare assistant in a childcare centre. She wears a headscarf in her daily life but takes it off when she is on the track.
Soumaré gave birth to her first child, a boy, in June 2015.
Results in the finals of international competitions
Note: Only the position in the final is indicated, unless otherwise stated
†: Disqualified in the final.
Medal record
2007 European Athletics U23 Championships in Debrecen :
bronze in the 100 m in 11 s 68
2009 Mediterranean Games in Pescara
gold in the 4 × 100 m relay in 43 s 79
silver in the 100 m in 11 s 46
2010 European Athletics Championships in Barcelona :
gold in the 200 m in 22 s 32 (personal best)
silver in the 4 × 100 m relay in 42s 45
bronze in the 100 m in 11 s 18
2012 European Athletics Championships in Helsinki :
bronze in the 200 m in 23 s 21
2013 European Athletics Indoor Championships in Gothenburg :
silver in the 60 m in 7 s 11
References
External links
1986 births
Living people
Athletes from Paris
Olympic athletes for France
Athletes (track and field) at the 2008 Summer Olympics
Athletes (track and field) at the 2012 Summer Olympics
French female sprinters
French sportspeople of Mauritanian descent
French Muslims
European Athletics Championships medalists
Mediterranean Games gold medalists for France
Mediterranean Games silver medalists for France
Athletes (track and field) at the 2009 Mediterranean Games
Mediterranean Games medalists in athletics
Olympic female sprinters |
```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);
}
``` |
The Romería de la Bajada de la Virgen del Socorro, is a romeria of popular character that is held in September in the town of Güímar in Tenerife (Canary Islands, Spain). This festival also declared Regional Tourist Interest. It is considered the oldest romeria of Canary Islands is also one of the most popular.
This festival is dedicated to the Our Lady of Help (Virgen del Socorro), which is on the island a derivation of the invocation of the Virgin of Candelaria. This is because recounts the legend that when the mencey (Guanche king) tried to pick up the image of the Virgin of Candelaria after its discovery, the size experienced a great weight and had to ask for help or assistance to transport it to its cave-palace.
The romeria is a huge procession in which he moved to the Virgin of Help from the Church of Saint Peter of Güímar to the coast in the place where the original image of the Virgin of Candelaria was found. On the coast a theatrical performance of the discovery of the image is performed. This festival is held every year between 7 and 8 September.
Notes
Christian pilgrimages
Canarian culture
Tenerife |
```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;
});
}
``` |
Louise Taylor may refer to:
Louise Taylor (archer) (1870–1966), American archer
Louise Taylor (Hollyoaks), fictional character
Louise Taylor (jurist), Australian jurist
Louise Taylor (singer), an American singer-songwriter.
See also
Myra Louise Taylor |
```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());
}
}
``` |
Stellman is a surname. Notable people with the surname include:
Louis J. Stellman (1877–1961), American photographer, newspaper columnist, biographer, painter and poet
Marcel Stellman (1925–2021), Belgian record producer and lyricist
Martin Stellman (born 1948), British screenwriter and director |
```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());
}
``` |
Jacques Gaillard (born 16 August 1950) is a French ski jumper. He competed at the 1972 Winter Olympics and the 1976 Winter Olympics.
References
1950 births
Living people
French male ski jumpers
French male Nordic combined skiers
Olympic ski jumpers for France
Olympic Nordic combined skiers for France
Ski jumpers at the 1972 Winter Olympics
Nordic combined skiers at the 1972 Winter Olympics
Nordic combined skiers at the 1976 Winter Olympics
Place of birth missing (living people) |
```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)
}
``` |
Barn Bluff is a mountain located in the Central Highlands region of Tasmania, Australia. The mountain is situated in the Cradle Mountain-Lake St Clair National Park at the junction of the easternmost points of the Murchison and Mackintosh river catchments.
At above sea level it is the fourth highest mountain in Tasmania, exceeding the height of the more famous Cradle Mountain by .
The Barn Bluff is frequently snow-covered, sometimes even in summer. This mountain is perhaps the most prominent peak of the Cradle Mountain-Lake St Clair National Park and is visible from most areas and stands on its own, well away from other peaks. It is a popular venue for bushwalkers and mountain climbers, accessible via a side trip from the Overland Track. The path is moderate to difficult and has very steep sections, with boulder scrambling toward summit. The route is marked by cairns.
The mountain was formed by glacial action and erosion and is characterised, for the most part, by the dolerite slabs and boulders typical of the alpine regions of the state. Many of the summits in Tasmania are rather obscure tors perched only slightly higher than the alpine plateau on which they sit. Barn Bluff, like Cradle Mountain, presents a classic summit. The mountain's nearest neighbours are quite distant and, therefore, the 360-degree panorama from the summit is uninterrupted and spectacular.
See also
Cradle Mountain-Lake St Clair National Park
List of highest mountains of Tasmania
References
External links
Tasmanian parks
SummitPost entry for Barn Bluff
Track notes for Barn Bluff
Frank Hurley photograph in National Library online collection
Mountains of Tasmania
Central Highlands (Tasmania)
Cradle Mountain-Lake St Clair National Park
Sills (geology)
Mesozoic Australia |
```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);
}
}
``` |
Rada Liliana Brisby (née Daneva; 2 February 1923 – 30 October 1998) was a Bulgarian-born British broadcaster, writer, editor, and concert pianist.
She was born in Sofia on 2 February 1923, the daughter of a diplomat father and a concert pianist mother. Her paternal grandfather, Stoyan Danev was Prime Minister and Foreign Minister of Bulgaria before the First World War, and her great-grandfather was the first Prime Minister of Bulgaria.
Brisby was editor of The World Today, the monthly journal of the Royal Institute of International Affairs, from 1975 until her retirement in 1983.
References
External links
1923 births
1998 deaths
Bulgarian women writers
Bulgarian emigrants to the United Kingdom |
Asadabad-e Sofla () may refer to:
Asadabad-e Sofla, Ilam
Asadabad-e Sofla, Lorestan
Asadabad-e Sofla, Firuzabad, Lorestan Province
Asadabad-e Sofla, Yazd |
The Republic of Singapore officially became the 117th member of the United Nations (UN) after its independence on August 9, 1965. From 2001 to 2002, Singapore held a rotational seat on the United Nations Security Council and has participated in UN peacekeeping/observer missions in Kuwait, Angola, Kenya, Cambodia and Timor Leste.
History
Before independence, Singapore had merged with the Federation of Malaya with North Borneo and Sarawak to form Malaysia on August 31, 1963 and at that time, the Federation of Malaya was already a member of the UN. Due to distrust and ideological differences between leaders of the State of Singapore and the federal government of Malaysia, Singapore became an independent state about 2 years after the union, on August 9, 1965.
Requirements for joining the United Nations under the UN Charter of the time required sponsorship by minimum of 2 members on the United Nations Security Council, support from the members on the council and about 67% of the votes during the United Nations General Assembly to be successfully admitted into the organisation. After independence, Singapore applied to join the UN on September 2, 1965 with the sponsorship of Malaysia, the United Kingdom, Ivory Coast and Jordan. On September 20, 1965, Singapore's admission to the UN was put into vote in the security council and the result of the vote was unanimous. Singapore was then officially registered as a member of the UN on September 21, 1965, with Abu Bakar bin Pawanchee serving as the first permanent representative to the UN.
In 1969, the United Nations Association of Singapore was set up as part of the World Federation of United Nations Associations, which is part of 'The Third United Nations'.
Since then, Singapore has been actively participating in UN peacekeeping operations. In 1997, the country became only the seventh country to sign the Memorandum of Understanding on UN Standby Arrangements.
Activities
Security Council
During the 2000 United Nations Security Council election, Singapore was elected as one of the five non-permanent members of the UN Security Council and served a two-year term from 2001 to 2002. In January 2001 and May 2002, Ambassador Kishore Mahbubani, the permanent representative of Singapore then, served as the President of the United Nations Security Council together with Ambassador S. Jayakumar. During Singapore's time on the security council, it managed to lobbied for a time extension for the United Nations Transitional Administration in East Timor until East Timor's independence, despite objection from a permanent member on the council.
Peacekeeping and observer missions
Since 1989, Singapore has taken part in 17 peacekeeping and observer missions with personnel from the Singapore Armed Forces (SAF) and Singapore Police Force (SPF). Singapore's first peacekeeping mission was to oversee Namibia’s transition to independence, was in response to an urgent call for help from then UN General-Secretary Javier Perez de Cuellar on March 29, 1989. A total of 30 personnel from the SPF was sent on the mission and the country also contributed S$172,652 to the operations of the United Nations Transition Assistance Group.
Singapore has taken part in the following peacekeeping and observer missions led by the UN.
Notification of Casualties application
In December 2015, a memorandum of understanding was signed between Singapore and the United Nations to develop an information management tool to aid in peacekeeping operations. The main functionality of the software is to allow the reporting of casualty for personnel serving in peacekeeping operations, which will be then accessed by authorized users in the UN Headquarters in New York, and all Peacekeeping and Special Political Missions. The tool was developed by the Singapore Armed Forces (SAF), the UN Department of Peacekeeping Operations (UN DPKO) and the UN Department of Field Support (UN DFS) and was launched in May 2017. The launch of the software was officiated by Jean-Pierre Lacroix, the United Nations Under-Secretary-General for Peace Operations in a ceremony in New York.
Representation
Singapore maintains 3 permanent missions to the UN and 1 permanent delegate to UNESCO. The 3 permanent missions to the UN are located in New York, which is headed by Ambassador Burhan Gafoor, Geneva, which is headed by Ambassador Tan Hung Seng and lastly at Vienna, which is headed by Ambassador Umej Singh Bhatia. The permanent mission in Vienna, also serves as the country's representative to the Comprehensive Nuclear-Test-Ban Treaty Organization and the International Atomic Energy Agency. The non-resident permanent delegate to UNESCO is represented by Ambassador Rosa Huey Daniel.
See also
Foreign relations of Singapore
References
External links
Permanent Mission of the Republic of Singapore
United Nations Member States
Foreign relations of Singapore |
```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 Capitan O'Brien class were three submarines built for the Chilean Navy in the late 1920s. They were similar to the contemporary British s, but mounted a larger /45 deck gun and were slightly smaller.
Ships
All boats were built by Vickers in Barrow-in-Furness and commissioned in 1929. The builder's photograph of the Simpson gives the dimensions as overall × × , surface speed surfaced and submerged.
The two s purchased by Chile in the 1970s were also known locally as the O'Brien class.
References
Cited works
Conway's All the World's Fighting Ships 1922-1946
Submarine classes |
The 20th Senate of Puerto Rico was the upper house of the 12th Legislative Assembly of Puerto Rico that met from January 2, 1993, to January 1, 1997. All members were elected in the General Elections of 1992. The Senate had a majority of members from the New Progressive Party (PNP).
The body is counterparted by the 24th House of Representatives of Puerto Rico in the lower house.
Leadership
Members
Membership
References
External links
Elections result on CEEPUR
22
1993 in Puerto Rico
1994 in Puerto Rico
1995 in Puerto Rico
1996 in Puerto Rico
1997 in Puerto Rico |
Columbia County Airport is a county-owned public use airport in Columbia County, New York, United States. The airport is located four nautical miles (7 km) northeast of the central business district of Hudson, New York. It is a small un-towered general aviation airport in the Hudson Valley.
Facilities and aircraft
Columbia County Airport covers an area of at an elevation of 198 feet (60 m) above mean sea level. It has one asphalt paved runway designated 3/21 which measures 5,350 by 100 feet (1,631 x 30 m).
Final approach for runway 21 is directly over a golf course immediately to the north, and pilots should take caution on arrival and departure to avoid golfers. There has been at least one incident of a golfer intentionally hitting a landing aircraft with a golf ball. Departure path for runway 3 takes the pilot over homes. Pilots should be mindful of noise, especially at night. There is a police shooting range approximately 1 mile to the east, so gunshot sounds are not uncommon.
For the 12-month period ending June 29, 2007, the airport had 19,200 aircraft operations, an average of 52 per day: 78% general aviation, 21% air taxi and 1% military. At that time there were 32 aircraft based at this airport: 81% single-engine, 16% multi-engine and 3% jet.
Richmor Aviation operates out of the Columbia County Airport as the FBO providing fuel, tie-down, hangar, aircraft management, charter & maintenance.
References
External links
Google Maps''
SkyVector Aerial Views (2016)
Airports in New York (state)
Transportation buildings and structures in Columbia County, New York |
Kirgizemys is an extinct genus of turtle from Early Cretaceous of China, South Korea, Mongolia, Russia and Kyrgyzstan.
References
Danilov, I. G.; Averianov, A.O.; Skutchas, P.P. & Rezvyi, A.S. 2006. Kirgizemys (Testudines: Macrobaenidae): New material from the Lower Cretaceous of Buryatia (Russia) and taxonomic revision. pp. 46–62 in I. G. Danilov & J. F. Parham (eds.), Fossil Turtle Research, Vol. 1.
Parham, J.F. & Hutchison, J.H. 2003. A new eucryptodiran turtle from the Late Cretaceous of North America (Dinosaur Provincial Park, Alberta, Canada). J. Vertebr. Paleontol. 23 (4): 783–798.
Shukanov, V.B. 2000. Mesozoic turtles of Middle and Central Asia. pp. 309–367 in M. J. Benton, M. A. Shishkin, D. M. Unwin, and E. N. Kurochkin (eds.), The Age of Dinosaurs in Russia and Mongolia. Cambridge University Press, Cambridge.
Early Cretaceous turtles
Macrobaenidae
Early Cretaceous reptiles of Asia
Cretaceous China
Prehistoric turtle genera
Extinct turtles |
```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; }
``` |
Zenon Nowak (27 January 1905 – 21 August 1980) was a Communist activist and politician in the People's Republic of Poland. He was one of the members of the pro-Soviet Natolin faction of the PZPR Central Committee during the Polish October of 1956.
Awards and honors
:
Order of the Builders of People's Poland (1964)
Order of the Banner of Work, 1st class
Commander's Cross with Star of the Order of Polonia Restituta (1975)
Badge of the 1000th Anniversary of the Polish State (1966)
:
Order of the October Revolution (1975)
Order of Friendship of Peoples
See also
Stalinism in Poland
Poznań 1956 protests
References
1905 births
1980 deaths
People from Pabianice
People from Piotrków Governorate
Communist Party of Poland politicians
Polish Workers' Party politicians
Members of the Politburo of the Polish United Workers' Party
Members of the Polish Sejm 1952–1956
Members of the Polish Sejm 1961–1965
Members of the Polish Sejm 1965–1969
Members of the Polish Sejm 1969–1972
Ambassadors of Poland to Russia
Natolin faction
Recipients of the Order of the Builders of People's Poland
Recipients of the Order of the Banner of Work
Commanders with Star of the Order of Polonia Restituta
Recipients of the Order of Friendship of Peoples
International Lenin School alumni
Burials at Powązki Military Cemetery |
```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.";
``` |
The National Indian Gaming Commission (NIGC; ) is a United States federal regulatory agency within the Department of the Interior. Congress established the agency pursuant to the Indian Gaming Regulatory Act in 1988.
The commission is the only federal agency focused solely on the regulation of gambling, though it has many counterpart state and tribal regulatory agencies. The U.S. Department of Justice and the Department of the Interior also have responsibilities related to gaming and Indian gaming, respectively.
The commission is an independent regulatory agency, but works closely with the Department of Justice and the Department of the Interior on matters of game classification and Indian lands questions. In addition, it is represented in litigation in court by the Department of Justice. Thus, its independence has some practical limits related to cooperation with Executive Branch agencies.
History
The Indian Gaming Regulatory Act was enacted to support and promote tribal economic development, self-sufficiency and strong tribal governments through the operation of gaming on Indian lands. The act provides a regulatory framework to shield Indian gaming from corruption, and to ensure that the games offered are fair and honest and that tribes are the primary beneficiaries of gaming operations. The act created the commission to protect tribal gaming as a means of generating revenue for tribal communities. IGRA placed the commission within the Department of the Interior (DOI), but also provided it with independent federal regulatory authority. The commission monitors tribal gaming activity, inspects gaming premises, conducts background investigations and audits of Class II gaming operations (and Class III gaming operations, upon request or as provided by applicable law, such as tribal gaming ordinances and tribal-state compacts). The commission also provides technical assistance and training to tribal gaming commissions and operations and, when appropriate, undertakes enforcement actions.
Because the National Indian Gaming Commission is subject to the Government Performance and Results Act of 1993, they submitted in 2022 a strategic plan to Congress, which covers the fiscal years 2022 to 2026. NIGC's annual report is available here.
Structure
The commission comprises a chair and two commissioners, each of whom serves on a full-time basis for a three-year term. The chair is appointed by the president and confirmed by the senate. The Secretary of the Interior appoints the other two commissioners. Under the act, at least two of the three commissioners must be enrolled members of a federally recognized Indian tribe, and no more than two members may be of the same political party. The commission also has a general counsel, who supervises the legal staff and advises the commission on its work. The current acting general counsel is Rea Cisneros.
The commission fulfills its responsibilities under IGRA by:
regulating and monitoring certain aspects of Indian gaming;
coordinating its regulatory responsibilities with tribal regulatory agencies through the review and approval of tribal gaming ordinances and management agreements;
reviewing the backgrounds of individuals and entities to ensure the suitability of those seeking to manage Indian gaming;
overseeing and reviewing the conduct and regulation of Indian gaming operations;
referring law enforcement matters to appropriate tribal, federal and state entities; and
when necessary, undertaking enforcement actions for violations of IGRA, NIGC's regulations and tribal gaming ordinances, including imposing appropriate sanctions for such violations.
The commission provides federal oversight to more than 510 tribally owned, operated or licensed gaming establishments operating in 29 states. The commission maintains its headquarters in Washington, D.C., and has eight regional offices located in Portland, Oregon; Sacramento, California; Phoenix, Arizona; St. Paul, Minnesota; Tulsa, Oklahoma; Oklahoma City, Oklahoma; Rapid City, South Dakota; and Washington, D.C.
The commission established its regional offices to improve the level and quality of services it provides to tribes, and to enhance its ability to communicate, collaborate and interact with tribes located within each office's geographic region. These offices are vital to carrying out the statutory responsibilities of the commission. By having auditors and compliance officers close to tribal gaming facilities, the commission seeks to facilitate compliance with the act and better relationships with tribal leaders, officials and regulatory personnel. In addition to auditing and investigative activities, the field staff provides technical assistance and training to promote a better understanding of gaming controls within the regulated industry, and to enhance cooperation and compliance to ensure the integrity of gaming operations.
Past commissioners
See also
Casino
Gaming Control Board
Indian Gaming Regulatory Act
Title 25 of the Code of Federal Regulations
References
External links
National Indian Gaming Commission in the Federal Register
Gambling regulators in the United States
Native American law
United States federal boards, commissions, and committees
Government agencies established in 1988 |
The effects of Hurricane Dean in Mexico were more severe than anywhere else in the storm's path. Hurricane Dean, the most intense storm of the 2007 Atlantic hurricane season, formed in the Atlantic Ocean west of Cape Verde on August 14, 2007. The Cape Verde-type hurricane sped through the Caribbean Sea, rapidly intensifying before making landfall on Mexico's Yucatán Peninsula. Accurate forecasts of the storm's location and intensity enabled thorough preparations; nevertheless when the massive storm made landfall on the Yucatán Peninsula as a catastrophic Category 5 hurricane on the Saffir-Simpson Hurricane Scale it damaged thousands of homes.
Weakening as it crossed the peninsula, Dean emerged into the Bay of Campeche and re-strengthened before making a second landfall in Veracruz. Although the second landfall did not bring winds as intense as the first, it brought more rainfall and caused devastating landslides in the states of Veracruz and Tabasco. Between the two landfalls, Dean caused MXN$2 billion (US$184 million; 2007 dollars) of damage and killed 13 people.
Preparations
First landfall
Forecasters and computer models at the Miami-based National Hurricane Center predicted that Hurricane Dean would impact the Yucatán Peninsula a full 6 days before the storm actually arrived. The hurricane's stable and well predicted path gave all of the countries in the region ample time to prepare for its arrival. On August 17, at the request of the Quintana Roo state government, which was expecting their state to suffer a direct hit, the Civil Protection Office of Mexico's federal Interior Ministry declared a state of emergency for the entire state. This included the towns and cities of Cancún, Playa del Carmen, and Chetumal as well as the islands of Cozumel, Isla Mujeres and Holbox.
On August 18 authorities began evacuating people from parts of Quintana Roo, moving 2,500 people from Holbox Island and a further 80,000 tourists from elsewhere in the state. Air-evacuations of tourists were stopped when Dean's outer rainbands closed almost a dozen Cancún and Cozumel airports on the evening of August 20. The Campeche airport closed shortly thereafter. The state government set up 530 storm shelters in schools and other public buildings, prepared to hold 73,000 people. With 20,000 food packages ready, the state of Yucatán, Quintana Roo's neighbor to the northwest, declared a green alert indicating a low but significant level of danger.
World Vision and other international aid agencies prepared blankets, sheets, personal hygiene items and medicines for quick transport to affected areas. The United States pre-positioned a three-person disaster
management team into the Yucatán before the storm's arrival with the intent of helping coordinate disaster management if necessary. The U.S. State Department urged its citizens in Quintana Roo, Yucatán, and Campeche to prepare for the storm and to evacuate if necessary. The department also relocated its non-essential personnel from those states to Mexico City. At 1500 UTC on August 19 a hurricane watch was issued on the Yucatán Peninsula from Chetumal to San Felipe and final preparations were rushed to completion.
Second landfall
On August 20, warnings for Dean's second landfall were issued. The coast from Progreso to Ciudad del Carmen was put under a hurricane warning and the coast from Cancún at the tip of the Yucatán Peninsula west to Progreso. At 0300 UCT, August 21, a tropical storm watch was issued for the coast from Chilitepec to Veracruz, and a hurricane watch was issued from Chilitepec to Tampico, Tamaulipas. As Dean began to cross the Yucatán Peninsula and maintained its structure better than forecasters had expected, these watches and warnings were expanded. At their peak, a hurricane warning covered the area from Campeche, Campeche, to Coatzacoalcos, Veracruz, and a tropical storm warning stretched from Tampico to La Cruz, Tamaulipas.
Residents in Veracruz stocked up on essential supplies, especially food and water, ahead of the storm's second landfall. At the request of the government of Veracruz, federal Secretary of the Interior Francisco Ramírez Acuña declared a state of emergency for 81 municipalities ahead of Hurricane Dean's expected landfall in the state. This gave local authorities access to the resources of the Revolving Fund of the National Natural Disaster Fund to take care of the nutrition, health, and shelter their populations should the storm's damage require it.
Although Dean was still a hurricane and was expected to re-strengthen slightly before making its second landfall, the fact that it had weakened caused some residents to let down their guard. As a result, residents of Veracruz and Campeche were much less prepared for the storm than those on the Yucatán Peninsula.
Impact
First landfall
The hurricane hit land near Majahual on the Quintana Roo coast of the Yucatán Peninsula at 0830 UTC on August 21. Wind gusts of were reported. The state's tourist cities of Cancún and Cozumel were spared the worst of the storm, but it wreaked havoc in the state capital Chetumal, some south of landfall, causing significant flooding. Communication with the Mayan communities near the landfall location was initially difficult, but the town of Majahual, which had a population of 200, was "almost flattened" by the storm. Storm surge and high winds severely damaged or destroyed hundreds of buildings and had the strength to crumple steel girders. About 15,000 families were left homeless, primarily in small villages around Quintana Roo. At the Costa Maya cruise port, waves tore away portions of the concrete docks and destroyed the boardwalk. The damage made the port unsuitable for cruise ships, effectively freezing the region's tourism industry until they could be repaired. The hurricane's winds damaged 2.3 million ha (5.7 million acres) of jungle, almost all of it in Quintana Roo, Yucatán, and Campeche.
At its first landfall, the bulk of Hurricane Dean's damage was to agriculture. 12,000 producers suffered losses, mostly in the states of Quintana Roo and Yucatán. of habanero peppers were destroyed, along with of corn and of citrus. Extensive damage to fields planted with bananas, avocados, cucumbers, squash, jalapeño peppers, and other crops were also reported on the Yucatán Peninsula.
President Felipe Calderón cut short a visit to Canada to return to Mexico and assess the damage. Hurricane Dean's Category 5 landfall–the first such landfall in the Atlantic basin in 15 years–took no lives. International organizations, including the United Nations, attributed this to the government's thorough preparations and forecasters' ample warning.
Second landfall
The next day, at 1630 UTC on August 22, Hurricane Dean made a second landfall, this time near the town of Tecolutla, Veracruz, as a Category 2 hurricane. Following the second landfall on the Veracruz coast, the town of Joloapan then saw the eye pass directly over it. In addition, two rivers in the mountains of the state of Hidalgo overflowed, and rain fell as far west as the Pacific coast. Veracruz Governor Fidel Herrera said there was "a tremendous amount of damage". Petroleum production was not severely damaged and quickly returned to normal, although its brief interruption was responsible for a 6% year-on-year decrease in third quarter.
Hurricane Dean, at its second landfall, dropped of rainfall across the western states of Jalisco and Nayarit. This rainfall triggered a mudslide in Jalisco which fell on 10 houses and killed one of the occupants. Landslides in Puebla killed five people, and another was crushed when a wall in his house collapsed. One person in Veracruz was electrocuted after touching a power line while repairing his roof. In Michoacán, as the outer bands of the storm swept over the state, a man sheltering under a tree was struck by lightning. Two women died in Hidalgo when heavy rain collapsed their house's roof. Another man drowned while trying to cross a rain-swollen river in Tlacolula, Oaxaca. The heavy rains caused dozens of smaller landslides throughout the country, particularly in Veracruz and Tabasco, but most of them caused no fatalities. At least 50,000 houses were damaged to varying degrees throughout the country. Although Dean's rains caused flooding as far inland as Mexico City, where they closed a portion of Puebla-Mexico highway, the damage was concentrated in the states of Quintana Roo and Veracruz.
As with its first landfall, Hurricane Dean damaged crops throughout its impact area. In Puebla it destroyed of corn and more than of coffee, while in Veracruz of various crops were lost. Unlike in Belize and the Eastern Caribbean, the storm spared the sugarcane crop in Veracruz.
Between the hurricane's two landfalls, Dean affected an estimated 207,800 people in the states of Quintana Roo, Campeche, Veracruz, Hildalgo, Puebla and Tabasco. The storm damaged of power lines and left more than 100,000 people without electricity. Landslides, storm tides, and widespread structural damage combined to compromise water sources throughout the country. The extent of the damage was never calculated at a federal level, but hundreds of villages lost access to fresh water in the days following the storm. Hurricane Dean killed 12 people in Mexico but none of the deaths occurred during its first and most powerful landfall on the Yucatán Peninsula. Between the two landfalls the storm caused a total of Mex$2 billion (US$184 million) of damages.
Aftermath
Post-storm analysis showed that, while less deadly, Dean's first and more powerful landfall caused significantly more infrastructural damage than its second. Where the landfall occurred at the town of Majahual specifically, and the state of Quintana Roo generally, communities took longer to recover than in the rest of the country. Quintana Roo Governor Félix González Canto reported that although the cleanup in the state capital of Chetumal was completed within three weeks, it took more than six months to fix all of the region's rural roads. Unable to handle the hurricane's aftermath, the state government appealed to federal authorities and secured Mex$755 million (US$74.8 million) of aid. Combined with the state's contribution of $270 million (US$26.7 million), a housing-repair fund of over $1,025 million (US$101.5 million) was established. In the three months immediately following the storm, over 37,000 houses were rebuilt or repaired using monies from this fund.
In the days following the hurricane, immediate access to clean water was a priority for international aid agencies working in Mexico. The National Commission of Water spent another $25 million (US$2.47 million) of federal funds repairing the damaged infrastructure for irrigation and drinking water.
Carnival Cruise Lines and Royal Caribbean Cruises, the world's two largest cuise operators, diverted their ships away from the damaged cruise port of Puerto Costa Maya. Their plans originally expected diversions until at least 2009, but the central government was quick to fund rebuilding of the destroyed concrete piers. By June 2008 they were rebuilt to accommodate even larger ships than before, and ships scheduled stops there for September 2008.
The federal government was initially lauded for its swift and thorough preparation to which most observers, including the United Nations, attributed Dean's low death toll. However, after the storm there were several accusations of political motivation in the distribution of aid. Members of President Felipe Calderón's Partido Accion Nacional (PAN) distributed bags of bread, funded by the nation's disaster relief coffers, carrying the party's logo. In Veracruz Governor Fidel Herrera was accused by both the PAN and his own Partido Revolucionario Institucional (PRI) of using state resources, including hurricane relief, to support the campaigns of PRI candidates.
See also
Hurricane Dean
List of Category 5 Atlantic hurricanes
References
Hurricane Dean
2007 in Mexico
Dean
Dean Mexico |
Dragiša Binić (Serbian Cyrillic: Драгиша Бинић; born 20 October 1961) is a Serbian former footballer who played for Red Star and was part of their European Cup victory in 1991. He had three caps for the Yugoslavia national football team, scoring one goal. His son Vladan Binić is also a footballer.
Club career
Red Star Belgrade
In the summer 1987 transfer window, soon to be twenty-six-year old striker Binić signed with Red Star Belgrade. The move meant reuniting with his former Radnički Niš young teammate Dragan Stojković who had transferred to Red Star a year earlier and already managed to establish himself as the team star and fan favourite. Led by head coach Velibor Vasović, the ambitious Belgrade club was looking to get back on the winning track after a disappointing league season. Other arrivals to the club included the twenty-four-year-old defender Goran Jurić from Velež Mostar, twenty-two-year-old defensive midfielder Refik Šabanadžović from Željezničar Sarajevo, and talented eighteen-year-old creative midfield prospect Robert Prosinečki from Dinamo Zagreb.
With Bora Cvetković and Husref Musemić as his main competition at the forward spots, Binić looked to be settling well into the new environment alongside team regulars: midfielder Žarko Đurović, attacking midfielder Goran Milojević, midfield playmaker and emerging team leader Dragan Stojković, and defenders Slobodan Marović and Miodrag Krivokapić. Following a good start to the season with Binić scoring away at FK Priština, the combustible striker and coach Vasović quickly developed an antagonistic relationship, with Binić getting suspended from the squad over an insubordination quarrel with the coach. After missing several months of match action while only training with the team, Binić got reinstated following another reported incident with Vasović that apparently featured the striker confronting the coach in front of his private residence.
Career statistics
Club
International
International goals
Yugoslavia score listed first, score column indicates score after each Binić goal.''
Honours
Red Star Belgrade
Yugoslav First League: 1987–88, 1990–91
European Champion Clubs' Cup: 1990–91
References
External links
Profile on Serbia federation site
1961 births
Living people
Men's association football forwards
Yugoslav men's footballers
Yugoslav expatriate men's footballers
Yugoslavia men's international footballers
Serbian men's footballers
Serbian expatriate men's footballers
Serbia and Montenegro expatriate men's footballers
Serbia and Montenegro men's footballers
FK Napredak Kruševac players
FK Radnički Niš players
Red Star Belgrade footballers
Yugoslav First League players
Stade Brestois 29 players
Ligue 2 players
Levante UD footballers
Segunda División players
SK Slavia Prague players
APOEL FC players
Cypriot First Division players
J1 League players
Japan Football League (1992–1998) players
Nagoya Grampus players
Sagan Tosu players
Expatriate men's footballers in Japan
Expatriate men's footballers in France
Expatriate men's footballers in Spain
Expatriate men's footballers in Cyprus
Footballers from Niš
Yugoslav expatriate sportspeople in France
Yugoslav expatriate sportspeople in Spain
Expatriate men's footballers in Czechoslovakia
Yugoslav expatriate sportspeople in Czechoslovakia
Serbia and Montenegro expatriate sportspeople in Japan
Serbia and Montenegro expatriate sportspeople in Cyprus
Yugoslav expatriate sportspeople in Japan |
```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");
}
}
``` |
Sinéad McLaughlin is a Social Democratic and Labour Party (SDLP) politician who has served as a Member of the Legislative Assembly (MLA) for Foyle since January 2020.
McLaughlin was co-opted to the Assembly, following Colum Eastwood’s election as the Member of Parliament (MP) for Foyle in the 2019 UK general election.
She has been the SDLP's Spokesperson for the Economy as well as Spokesperson for COVID-19 recovery, the Chair of the Northern Ireland Assembly's Executive Office Committee and the Deputy Chair of the Assembly's Economy Committee. McLaughlin is a former Chief Executive of the Chamber of Commerce in Derry and was a leader of the campaign in Northern Ireland against Brexit.
McLaughlin was successfully re-elected in the 2022 Assembly election. In her role, McLaughlin focuses on jobs and the economy, particularly in Derry, as well as access to affordable childcare and university expansion in Derry.
References
Living people
Social Democratic and Labour Party MLAs
Female members of the Northern Ireland Assembly
Year of birth missing (living people)
21st-century women politicians from Northern Ireland
Northern Ireland MLAs 2017–2022
Northern Ireland MLAs 2022–2027 |
Charles Lyman "Poss" Parsons (born May 3, 1892) was an American college football player and coach. He served as the Colorado School of Mines in 1916 and Colorado College from 1919 to 1921.
He was the sports editor at the Denver Post from 1922–1941, and was posthumously inducted into the Colorado Sports Hall of Fame (Class of 1982).
References
External links
Sports-Reference College Football Coach profile
Sports-Reference College Basketball Coach profile
1892 births
Year of death missing
Basketball coaches from Iowa
Iowa Hawkeyes football players
Colorado College Tigers football coaches
Colorado College Tigers men's basketball coaches
Colorado Mines Orediggers football coaches
Players of American football from Iowa City, Iowa |
In the post-Soviet era, Kyrgyzstan's health system has suffered increasing shortages of health professionals and medicine. Kyrgyzstan must import nearly all its pharmaceuticals. The increasing role of private health services has supplemented the deteriorating state-supported system. In the early 2000s, public expenditures on health care decreased as a percentage of total expenditures, and the ratio of population to number of doctors increased substantially, from 296 per doctor in 1996 to 355 per doctor in 2001. A national primary-care health system, the Manas Program, was adopted in 1996 to restructure the Soviet system that Kyrgyzstan inherited. The number of people participating in this program has expanded gradually, and province-level family medicine training centers now retrain medical personnel. A mandatory medical insurance fund was established in 1997.
Largely because of drug shortages, in the late 1990s and early 2000s the incidence of infectious diseases, especially tuberculosis, has increased. The major causes of death are cardiovascular and respiratory conditions. Official estimates of the incidence of human immunodeficiency virus (HIV) have been very low (830 cases were officially reported as of February 2006, but the actual number was estimated at 10 times that many). The concentration of HIV cases in Kyrgyzstan’s drug injecting and prison populations makes an increase in HIV incidence likely. More than half of the cases have been in Osh, which is on a major narcotics trafficking route.
The maternal morality rate rose by more than 15% to 62 deaths per 1000,000 births from 2008 to 2009. According to non-governmental studies, things are worse than the official data indicate.
The Human Rights Measurement Initiative finds that Kyrgyzstan is fulfilling 81.2% of what it should be fulfilling for the right to health based on its level of income. When looking at the right to health with respect to children, Kyrgyzstan achieves 98.4% of what is expected based on its current income. In regards to the right to health amongst the adult population, the country achieves only 90.3% of what is expected based on the nation's level of income. Kyrgyzstan falls into the "very bad" category when evaluating the right to reproductive health because the nation is fulfilling only 55.0% of what the nation is expected to achieve based on the resources (income) it has available.
References |
The 2013–14 Lithuanian Football Cup is the twenty-fifth season of the Lithuanian annual football knock-out tournament. The competition started on 4 June 2013 with the matches of the first round and is scheduled to end in May 2014. Žalgiris are the defending champions.
The winners will qualify for the first qualifying round of the 2014–15 UEFA Europa League.
First round
The matches started on 4 June 2013 and ended on 6 July 2013.
!colspan="3" align="center"|4 June
|-
!colspan="3" align="center"|8 June
|-
!colspan="3" align="center"|13 June
|-
!colspan="3" align="center"|14 June
|-
!colspan="3" align="center"|15 June
|-
!colspan="3" align="center"|21 June
|-
!colspan="3" align="center"|23 June
|-
!colspan="3" align="center"|25 June
|-
!colspan="3" align="center"|26 June
|-
!colspan="3" align="center"|27 June
|-
!colspan="3" align="center"|28 June
|-
!colspan="3" align="center"|29 June
|-
!colspan="3" align="center"|30 June
|-
!colspan="3" align="center"|5 July
|-
!colspan="3" align="center"|6 July
|}
Second round
The matches started on 8 August 2013 and ended on 31 August 2013.
|-
!colspan="3" align="center"|8 August
|-
!colspan="3" align="center"|15 August
|-
!colspan="3" align="center"|19 August
|-
!colspan="3" align="center"|20 August
|-
!colspan="3" align="center"|30 August
|-
!colspan="3" align="center"|31 August
|}
Third round
The matches started on 24 September 2013 and ended on 25 September 2013.
|-
!colspan="3" align="center"|24 September
|-
!colspan="3" align="center"|25 September
|}
Fourth round
The matches started on 1, 2 & 16 October 2013.
|-
!colspan="3" align="center"|1 October
|-
!colspan="3" align="center"|2 October
|-
!colspan="3" align="center"|16 October
|}
Quarter-final
This round of the competition is to be played over two-legs. The eight winners from the previous round compete at this stage.
|}
First legs
Second legs
Semi-final
This round of the competition is to be played over two-legs. The four winners from the previous round compete at this stage.
|}
First legs
Second legs
Final
References
External links
Cup
Cup
2013–14 domestic association football cups
2013-14 |
Bora Muzhaqi (; born 11 March 1990) is an Albanian politician. She is currently serving as the Minister of State for Youth and Children in the Albanian government. She was appointed Minister of Youth on 10 September 2021. Muzhaqi graduated with a degree in economics in 2012 from the London School of Economics and Political Science in London, and then went on to study for a master's degree, also in London, at Hult International Business School, in the field of International Business.
References
Living people
1990 births
People from Elbasan
21st-century Albanian politicians
Government ministers of Albania
21st-century Albanian women politicians
Women government ministers of Albania
Alumni of the London School of Economics
Hult International Business School alumni
Socialist Party of Albania politicians |
Phospholipase A2 group IVE is a protein that in humans is encoded by the PLA2G4E gene.
Function
This gene encodes a member of the cytosolic phospholipase A2 group IV family. Members of this family are involved in regulation of membrane tubule-mediated transport. The enzyme encoded by this member of the family plays a role in trafficking through the clathrin-independent endocytic pathway. The enzyme regulates the recycling process via formation of tubules that transport internalized clathrin-independent cargo proteins back to the cell surface. [provided by RefSeq, Jan 2017].
References
Further reading |
Nebula Awards 21 is an anthology of award-winning science fiction short works edited by George Zebrowski, the second of three successive volumes under his editorship. It was first published in trade paperback by Harcourt Brace Jovanovich in December 1986, with a hardcover edition following from the same publisher in January 1987.
Summary
The book collects pieces that won or were nominated for the Nebula Awards for novella, novelette and short story for the year 1986 and various nonfiction pieces related to the awards, together with a story by 1986 Grand Master award winner Arthur C. Clarke, the two Rhysling Award-winning poems for 1985, a couple other pieces, and an introduction by the editor. Not all nominees for the various awards are included.
Contents
"Introduction" (George Zebrowski)
"What Was 1985 That We Were Mindful of It?" [essay] (Algis Budrys)
"Heirs of the Perisphere" [Best Short Story nominee, 1986] (Howard Waldrop)
"Out of All Them Bright Stars" [Best Short Story winner, 1986] (Nancy Kress)
"The Fringe" [Best Novelette nominee, 1986] (Orson Scott Card)
"Sailing to Byzantium" [Best Novella winner, 1986] (Robert Silverberg)
"More Than the Sum of His Parts" [Best Short Story nominee, 1986] (Joe Haldeman)
"Portraits of His Children" [Best Novelette Winner, 1986] (George R. R. Martin)
"For Spacers Snarled in the Hair of Comets" [Rhysling Award, Short Poem winner, 1985] (Bruce Boston)
"Letter from Caroline Herschel (1750-1848)" [Rhysling Award, Long Poem winner, 1985] (Siv Cedering)
"The Steam-Powered Word Processor" [short story] (Arthur C. Clarke)
"Paper Dragons" [Best Short Story nominee, 1986] (James P. Blaylock)
"Effing the Ineffable" [essay] (Gregory Benford)
"Science Fiction Films of 1985" [essay] (Bill Warren)
Reception
Publishers Weekly calls the anthology's contents "a mixed bag, [though] the best of them are treasures." The pieces by Card, Silverberg and Blaylock ("[p]erhaps best of all") are singled out for comment, as are the "three critical essays, two of which (by Algis Budrys and Gregory Benford) are stimulating reevaluations of science fiction."
John G. Cramer in the Los Angeles Times judges the book a "first rate anthology," commenting on the pieces by Kress ("rather mainstream"), Martin ("a very writerly tale") and Silverberg, while noting those by Haldeman, Card, Blaylock and Waldrop as "also excellent." Of the nonfiction pieces, he calls Budrys's "penetrating" and Benford's "interesting." He criticises the inclusion of the lengthy (40 pages) discussion of science fiction films, however, opining that "[i]f I have any problem ... it is the inappropriateness of the latter piece. Nebulas are, for excellent reasons, not awarded for film. It is regrettable that the editor chose to devote 14% of the anthology to a survey of films, which, in many cases, deserve obscurity." Cramer feels including "some of the excellent Nebula nominees missing from this volume" would have been a better use of the space.
The anthology was also reviewed by Debbie Notkin in Locus v. 20, no. 1 (issue no. 312), January 1987, Dave Mead in Fantasy Review v. 10, no. 2 (issue no. 99), March 1987, Edward Bryant in Rod Serling's The Twilight Zone Magazine v. 7, no. 2, June 1987, Don D'Ammassa in Science Fiction Chronicle v. 9, no. 1 (issue no. 97), October 1987, and Tom Easton in ''Analog Science Fiction/Science Fact, v. 107, no. 10, October 1987.
Awards
The book placed sixteenth in the 1987 Locus Poll Award for Best Anthology.
Notes
Nebula 21
1986 anthologies
1980s science fiction works
Harcourt (publisher) books |
The Playters Baronetcy, of Sotterley in the County of Suffolk, was a title in the Baronetage of England. It was created on 13 August 1623 for Thomas Playters and was one of the last baronetcies created by King James I. The second Baronet was Vice-Admiral of Suffolk between 1640 and 1649. The fifth Baronet served as High Sheriff of Suffolk in 1728. The title became extinct on the death of the eighth Baronet in 1832.
The family seat was Sotterley Hall until its sale in 1744. at which point an estate was purchased at Yelverton in Norfolk.
Playters baronets, of Sotterley (1623)
Sir Thomas Playters, 1st Baronet (died 1638)
Sir William Playters, 2nd Baronet (1590–1668)
Sir Lyonel Playters, 3rd Baronet (1605–1679)
Sir John Playters, 4th Baronet (1636–1721)
Sir John Playters, 5th Baronet (1680–1768)
Sir John Playters, 6th Baronet (1742–1791)
Sir Charles Playters, 7th Baronet (died 1806)
Sir William John Playters, 8th Baronet (died 1832)
References
Extinct baronetcies in the Baronetage of England
1623 establishments in England |
Dražen Katunarić (born 25 December 1954) is a Croatian poet, essayist, novelist and editor.
Early life and education
Katunarić was born in 1954 in Zagreb where he spent his childhood and completed secondary schooling. He studied philosophy at the University of Human Sciences in Strasbourg. 1977. B. A. in Philosophy. 1978. M. A.
Career
1991–1993 Editor of the Literary Journal "Lettre internationale" – Croatian Edition.
Since 1993, editor in chief of the Literary Journal The Bridge and The European Messenger (HDP).
2001–2006 Vice-president of Croatian P.E.N. centre.Croatian P.E.N. centar
Since 1980 he has published poems, essays, travelogues, novels, tales, articles in Croatian and foreign reviews and translated into French, English, Spanish, Italian, Hungarian, Bulgarian, Slovenian, Romanian, Macedonian, Albanian, German, and Corsican.
Selected bibliography
Bacchus in marble (poems), Zagreb 1983
Sand Trap (poems), Zagreb 1985
Imposture (poems), Zagreb 1987
At Sea (poems), Zagreb 1988
Psalms (poems), Zagreb 1990
The Abrupt Voice (poems), Zagreb 1991
The House of Decadence (essays), Zagreb 1992
Sky/Earth (poems), Zagreb 1993
Church, Street, Zoo (travelogue) Zagreb 1994
The Return of the Barbarogenius (essays), Zagreb 1995
The Poem of Stjepan (poems), Zagreb 1996
Diocletian's Palace (essays), Zagreb-Split 1997
The Story of the Cave (essays), Zagreb 1998
Glue for Nightingale (poems), Zagreb 1999
The Readed Heart (selected poems), Zagreb 1999
Parabola (poems) Zagreb 2001
Fatal Image (novel), Zagreb 2002
Tiger Balm (tales), Zagreb, 2005
The Lyre/Delirium (poems), Zagreb 2006
The beggar woman (novel), Zagreb, 2009
Infernet and Others Texts (essay), Zagreb 2010
Chronos (poems), Zagreb 2011
One Day it Was a Night (selected and new poems), 2015
The Smile of Padre Pio (novel), Zagreb 2017
Sign of the Shadow (poems), 2017
Farewell, Desert (novel), Zagreb 2022
Published books abroad
Ecclesia invisibilis (selected poems), Academia Orient. Occident, Bucurest, 2001
Isolomania (selected poems), Albiana, Ajaccio, France, 2004
Cherries (selected poems), Blue Aster Press, N.Y., 2004
Kthimi i barbrogjenive, Ditet e Naimit, Tetove 2007
Ciel/Terre, L'Arbre à paroles", Amay, 2008
Le baume du tigre, Mode Est-Ouest, Bruxelles, 2009
Die Bettlerin, Leykam, Graz, 2009
La mendiante, Mode Est-Ouest, Bruxelles, 2012.
Cer/Pămînt, Cronedit, Iaşi, 2016
Poem efemer, ronedit, Iaşi, 2016
La maison du déclin, M.E.O. Editions, Bruxelles, 2017
Cronos, Krivodol, Buenos Aires, 2017
Awards
1984. "Branko Radičević" Award for the best poetry book in Yugoslavia
1994. "Tin Ujević" - Croatian Writers Association Award for the best poetry book in 1993
1999. Award of Matrix Croatica for Literature for the best collection of poetry in 1998
1999. "European Circle Award" for Literature
1999. The title "Knight of Arts and Literature" by French Ministry of Culture
2002. Macedonian Price "Menada", "for the specific value of poetry"
2009. Austrian Steiermaerkische Sparkasse price for the novel "The beggar woman" (Die Bettlerin)
2015. Balcanica Price for poetry (Romania)
2018. "Dragutin Tadijanović" Award for the collection of poetry "Sign of the Shadow"
References
External links
Dražen Katunarić, Hrvatsko društvo pisaca, www.hrvatskodrustvopisaca.hr
Dražen Katunarić, Ustanak snova (pjesme), Vijenac, 330/2006.
Dražen Katunarić, Dvorac grofa Drakule (proza), Kolo, 3/2004.
Andrija Tunjić, Dražen Katunarić: Barbarogenij je junak našeg doba, Vijenac, 547/2015.
Croatian poets
Croatian novelists
Croatian essayists
1954 births
Living people |
"Too Good at Goodbyes" is a song by English singer Sam Smith. It was written by James Napier, Tor Hermansen, Mikkel Eriksen and Smith, and produced by Napes, Steve Fitzmaurice and StarGate. It was released on 8 September 2017 through Capitol Records, as the lead single from their second studio album, The Thrill of It All (2017).
The song reached number one in the UK and number four on the Billboard Hot 100. It also topped the charts in Australia, South Africa and New Zealand, and reached the top 10 in Belgium, Canada, Denmark, France, Ireland, Italy, Netherlands, Norway, Portugal, Sweden, and Switzerland, as well as the top 20 in Austria, Finland, Germany, and Spain.
Background and release
On 31 August 2017, Smith announced new music was coming via social media. On 1 September, Spotify put up billboards in New York City, Los Angeles, and London to announce the release date of Smith's new music.
The song was released worldwide to download and streaming websites on 8 September.
Composition
"Too Good at Goodbyes" is in the key of D minor in common time with a tempo of 92 beats per minute. The chord progression is Dm–F–C–Gm. Smith's vocals span from F3 to D5.
Critical reception
Jon Blistein from Rolling Stone called Smith's comeback song "poignant" and wrote, "The piano-led song finds the singer pulling away from a volatile relationship. 'But every time you hurt me, the less that I cry / And every time you leave me, the quicker these tears dry,' he sings, soulfully. 'And every time you walk out, the less I love you / Baby, we don't stand a chance / It's sad, but it's true.' The lilting chorus is buoyed by a choir, as they harmonize, 'I'm way too good at goodbyes.'" Chris Willman of Variety said about the track, "Once again, Smith is plumbing the depths of melancholia with a flawless, effortlessly flexible tenor that seems to be on loan to the underworld from somewhere in the heavens. There's not a lot in the track that he, carry-over collaborator Jimmy Napes, and songwriter-producer duo Stargate have come up with to detract from that instrument. For the first minute of the song, Smith’s voice is joined only by the sparsest and most basic piano chords, along with some finger-snapping. Eventually a light beat kicks in, then a gospel choir, as if to almost mock Smith’s romantic lamentation by raising it to the level of spiritual battle." Marc Hogan of Pitchfork was more negative, and opined "'Too Good at Goodbyes' doesn't so much reflect a person exceptionally skilled in ending relationships as it feels equal parts calculating and convoluted."
Music video
Smith uploaded the official audio to their YouTube and Vevo accounts on 8 September 2017. The audio was later removed when they released the official music video for the song on 18 September 2017. It was filmed in Newcastle upon Tyne. On 29 September 2017, Smith released a video of them performing "Too Good at Goodbyes" at the Round Chapel in Hackney. , the music video has been viewed over 1.2 billion times.
Chart performance
"Too Good at Goodbyes" topped the UK Singles Chart on 15 September 2017 - for the week ending dated 21 September 2017 - with 33,000 downloads and 4.4 million streams, dethroning Taylor Swift's "Look What You Made Me Do" from the summit and giving Smith his sixth number-one single on the chart. It also stayed atop the UK charts for three consecutive weeks giving Smith his longest run at number one there. It also debuted at number one in Australia and New Zealand. It is Smith's first number one single in Australia.
In the United States, the song entered at number five on the Billboard Hot 100 on the issue dated 30 September with 90,000 downloads and 20.8 million streams, topping the Digital Songs chart and receiving an audience of 35 million in radio airplay. It is also Smith's highest debut in the country and his second song to top the Digital Songs chart after "Stay with Me" in 2014. "Too Good at Goodbyes" later ascended to number four on the issue dated 25 November, after the release of The Thrill of It All. In November 2017, the song was certified platinum in the US for shipments of one million units.
Live performances
Smith announced four live dates in September to help promote the song. They also performed it at the We Can Survive concert on 21 October.
Formats and track listings
Digital download
"Too Good at Goodbyes" – 3:21
Digital download (Acoustic)
"Too Good at Goodbyes" – 3:40
Digital download (Galantis Remix)
"Too Good at Goodbyes" – 3:12
Digital download (Snakehips Remix)
"Too Good at Goodbyes" – 3:58
Credits and personnel
Personnel
Lead vocals, Additional Background vocals – Sam Smith
Choir arrangement – Lawrence Johnson
Choir vocals – The LJ Singers
Songwriting – Sam Smith, James Napier, Mikkel Storleer Eriksen, Tor Erik Hermansen
Production – Jimmy Napes, Steve Fitzmaurice, Stargate
Recording engineers – Steve Fitzmaurice, Darren Heelis, Gus Pirelli
Assistant engineers – Tom Archer, Henri Davies, Isabel Gracefield Grundy, Steph Marziano, John Prestage, Will Purton
Mixing – Steve Fitzmaurice
Mastering – Bob Ludwig
Drums – Earl Harvin
Percussion – StarGate, Jimmy Napes, Earl Harvin
Drum programming – Steve Fitzmaurice, Darren Heelis
Bass – Jodi Milliner
Acoustic and Rhodes electric pianos – Reuben James
Guitar – Ben Jones
String leaders – Richard George, Everton Nelson, Bruce White, Ian Burdge
In popular culture
In February 6, 2020, former Clasher Carl Malone Montecido covered this song and went viral in the world.
Charts
Weekly charts
Year-end charts
Certifications
Release history
See also
List of number-one singles of 2017 (Australia)
List of number-one songs of 2017 (Malaysia)
List of number-one singles from the 2010s (New Zealand)
List of Scottish number-one singles of 2017
List of UK Singles Chart number ones of the 2010s
References
External links
2017 songs
2017 singles
2010s ballads
Sam Smith (singer) songs
Capitol Records singles
Number-one singles in Australia
Number-one singles in Malaysia
Number-one singles in Scotland
Pop ballads
Torch songs
Songs written by Sam Smith (singer)
Songs written by Mikkel Storleer Eriksen
Songs written by Tor Erik Hermansen
Songs written by Jimmy Napes
UK Singles Chart number-one singles |
Ballymoreen may refer to:
Ballymurreen, a civil parish in County Tipperary, Ireland
Ballymoreen (townland), one of the seven townlands in the above parish |
Trigonotylus ruficornis is a Palearctic species of true bug
References
Miridae
Hemiptera of Europe
Insects described in 1785 |
West Branch High School is a public high school in Beloit, Ohio, United States. The high school was established in 1960 It is the only high school in the West Branch Local School District. Sports teams are called the Warriors, and they compete in the Ohio High School Athletic Association as a member of the Eastern Buckeye Conference.
History
The high school was established in 1960
In June 2001, an outbreak of bacterial meningitis killed two high school students. A third student was hospitalized, but survived.
Athletics
OHSAA State Championships
Football – 1994
Girls Basketball – 2004
1994 football championship
West Branch entered the playoffs with an undefeated record of 10-0 in the 1994 season and had clinched an NBC league title. West Branch won its first game against Copley by a score of 56-12. In the state semi-final game, the Warriors matched up against perennial powerhouse Steubenville Big Red. After a 21-7 deficit in the first half, the Warriors charged back with 3 consecutive touchdowns leading them to a 31-28 victory and a berth in the state finals. The state finals paired the Warriors against Clyde. West Branch won by a score of 28-11, giving the Northeastern Buckeye Conference its only football state title and West Branch its first state title in Division 3 football.
Rivalry with Salem
West Branch's football program maintains a rivalry with Salem High School, located about away. The reason can be traced back to before 1971, when West Branch, without a field at the school, was forced to use Salem's field a home field. Due to this, the games played there were usually intense, and very emotional for the players involved.
The construction of Clinton Heacock Stadium in 1971 allowed West Branch to play at its own field. However, the rivalry continued to be fierce, with occasional fan fights breaking out.
In 1994, perhaps the best game of the rivalry was played at Salem. At the end of regulation, the score was tied at 21-21. However, West Branch managed to pull off a stunning 28-21 victory in overtime. This win, coupled with a perfect regular season, started a run through the playoffs which ultimately led to a state championship.
In 1996, the fighting after the game caused by fans was so intense that the rivalry was called off for two years. In 1998, the rivalry was resumed, with Salem pulling a stunning victory over the Warriors. This win was the last for them until 2005.
The most recent game in 2021 ended in a 43-42 overtime victory over the Quakers, securing a perfect 10-0 regular season for the Warriors
Salem joined West Branch in the Northeastern Buckeye Conference for the 2011-12 school year, and both schools helped create the Eastern Buckeye Conference in 2018. This both guarantees and expands the rivalry as the Quakers and Warriors will meet yearly in all sports.
References
External links
School website
District website
High schools in Mahoning County, Ohio
Public high schools in Ohio |
Tourism in the Faroe Islands is a growing industry. The official tourist board is Visit Faroe Islands, which is overseen and organized by the Ministry of Environment, Industry and Trade.
Tourism in the islands accounted for 1.4% of the total GDP in 2015. Tourism is much smaller than other industries like fishing, which has dominated the Faroese economy.
History
Fishing has been the primary sector of the Faroese economy for much of the past decades. Fishing accounts for around 90 to 95 percent of exports. However, the economy has begun to diversify.
In 2013, Visit Faroe Islands saw their marketing funds double. In 2014, a new terminal was opened in Vágar Airport, in part due to the tourism increase. Vágar Airport saw the number of passengers increase by 43 percent in the ten years prior to the opening of the new terminal, with expectations of more than 250,000 passengers in 2014. Because of this, the airport hoped that other airline operators would get involved and take advantage of the high amount of traffic between the Faroes and Europe.
Visit Faroe Islands started a campaign called "Closed for Maintenance, Open for Voluntourism" which saw a crew of applicants travel to the Faroe Islands and work with locals to preserve ten locations across the islands, as well as create and maintain hiking paths and set up signposting. The first crew traveled to the islands in April 2019.
In late 2019, it was announced that Atlantic Airways was preparing to launch non-stop flights to John F. Kennedy International Airport in New York City.
Hilton opened a hotel in the Faroes in late 2020, becoming the first global hotel chain in the islands.
Impact
A study published in the Consortium Journal of Hospitality and Tourism found that over 45% of Faroese respondents believe tourism brings more benefits than problems to the country. The study also found that 95% of respondents would like to see more tourists in their communities.
Recognition
The Faroe Islands have been featured in international media, with companies like The Guardian, Lonely Planet, The Sunday Times, and The Financial Times recommending the islands in 2019.
In 2007, National Geographic Traveler ranked the Faroe Islands 1st out of 111 island communities around the world.
Statistics
Overnight stays statistics, since 2013. These statistics include overnight stays by people from the Faroe Islands.
References
External links
Visit Faroe Islands official website |
The Republic of Ireland national under-19 football team, is the national under-19 football team of the Republic of Ireland and is controlled by the Football Association of Ireland and competes in the biennial European Under-19 Football Championship.
The team has competed in several championships.
Achievements
The Republic won the UEFA European Under-18 Football Championship in Cyprus in 1998 and that remains their best performance to date.
U-18 European Championship in 1998 – 1st place (Coach Brian Kerr)
In July 2011 Republic of Ireland national under-19 football team reached the semi-finals of the 2011 UEFA European Under-19 Football Championship held in Romania where they were eliminated by Spain.
Honours
UEFA European Under-19 Football Championship
Under-19 era, 2002–present
Champions (0):
Runner-up (0):
Third Place (0):
Fourth Place (1): 2002
Semi-Finalist (1): 2011, 2019
Under-18 era, 1957–2001
Champions (1): 1998
Runner-up (0):
Third Place (1): 1999
Fourth Place (2): 1984, 1997
FIFA U-20 World Cup
Champions (0):
Runner-up (0):
Third Place (1): 1997
Fourth Place (0):
Results and fixtures
2022
2023
Players
Current squad
Players born on or after 1 January 2005 are eligible for the 2024 UEFA European Under-19 Championship qualification campaign.
The following players were called up for the two friendlies against Scotland on 11 and 14 October 2023 in Spain.
Caps and goals updated as of 11 October 2023, after the game vs Scotland.
Recent call-ups
The following players have also been called up to the Republic of Ireland under-19 squad in the last 12 months and remain eligible:
U21 With U21 squad
INJ Withdrew from latest squad due to injury
WD Withdrew from latest squad
SUS Player is suspended
COVID Withdrew from latest squad due to Covid-19 protocols
Note: Names in italics denote players that have been capped for the senior team.
See also
European Under-19 Football Championship
Republic of Ireland men's national football team
Republic of Ireland men's national under-21 football team
Republic of Ireland men's national under-17 football team
Republic of Ireland women's national football team
Republic of Ireland women's national under-19 football team
Republic of Ireland women's national under-17 football team
References
External links
U19 page on FAI website
UEFA Under-19 website
Ireland
Under-19
Youth association football in the Republic of Ireland |
Juan Enrique Krauss Rusque (born 25 August 1932) is a Chilean lawyer and politician who has served as deputy, minister and ambassador of Chile in Spain, Ecuador and Czech Republic.
In 1966, Krauss began his political career working for the State, which allowed him to rise once Eduardo Frei Montalva appointed him in 1968 as Ministry of Economy, Development and Reconstruccion. From 1971 to 1975, he was a member of the national board of his party as well as national councilor of it (1976−1989). The first office aforementioned helped him to be elected for the Chamber of Deputies for the period 1973−77, which was disrupted by the coup against Salvador Allende.
Returned the democracy in Chile, in early 1990s he was the Minister of Interior of Patricio Aylwin. Similarly, he was deputy (1998−2002) and failed to reach a seat the Senate in 2001. After that, both Ricardo Lagos and Michelle Bachelet appointed him as a diplomat in South American and European countries.
Political career
Rising: 1966−1989
Due to his career into the Ministry of the Interior during Eduardo Frei Montalva's Christian-democratic government (1964−1970), Krauss was appointed by him as Undersecretary of the Interior on 10 August 1966. Then, he rose when Frei appointed him as Minister of Economy, Development and Reconstruction, in which stayed for a brief period from 1968 to 1969.
In that way, in 1970, he was appointed national as head of Radomiro Tomic's presidential campaign, who was defeated by the Marxist candidate Salvador Allende. However, during Allende's government Krauss was a member of the National Television Council (CNTV; 1971−73) until his participation in the 1973 Parliamentary elections, where was elected as a deputy for the 21st Departmental Group of Temuco, Lautaro, Nueva Imperial, Pitrufquén and Villarrica for the legislative period 1973−77 (disrupted by Augusto Pinochet's coup d'état). Similarly, in that election he was elected with the third majority behind Rosendo Huenumán and Hardy Momberg Roa.
After the September 11th coup, he was an oppositor of Pinochet's military dictatorship and played a role as human rights lawyer in representation of the Vicariate of Solidarity (1976−90).
Concertación governments: 1990−2010
Once ended the Pinochet dictatorship, he was appointed by Patricio Aylwin as Minister of the Interior, office he performed during the whole 1990−94 period. Nevertheless, he had to face such complex episodes as the assassination of UDI senator Jaime Guzmán or the «Boinazo»: a «liaison exercise» that the Chilean Army realized near the Moneda Palace, which included commandos with war weapons surrounding the building.
After leaving the government, he worked in the legal area of Telefónica Chile, he was elected president of his party (1997) and also was elected deputy for the 1998−2002 period. However, in 1999, he resigned to the position after Andrés Zaldívar's crushing defeat in the Concertación primary elections, where the winner was Ricardo Lagos (PPD) with a 71% of the votes.
Already elected Lagos, in the Congress Krauss was a member of the Permanent Commission of Constitution, Legislation and Justice as well as of the Economy, Development and Reconstruction Commission. Later, in the 2001 parliamentary election, he run for a seat in the Senate in representation of the Tarapacá Region, but he failed to reach it after losing against the then PPD Fernando Flores and three other contenders.
During the rest of the 2000s, he was appointed as ambassador by the presidencies of Lagos (2000−06) and Michelle Bachelet (2006−10), who respectively sent him to Spain and Ecuador. Likewise, in 2009, he was appointed by Bachelet as Ambassador of Chile to Czech Republic.
Retirement from politics: 2010−present
Since 2010, he is retired from active politics.
Trivia
He is supporter of Colo-Colo.
References
External links
BCN Profile
Living people
1932 births
20th-century Chilean politicians
21st-century Chilean politicians
Instituto Nacional General José Miguel Carrera alumni
University of Chile alumni
National Falange politicians
Christian Democratic Party (Chile) politicians
Politicians from Santiago |
Rajec Szlachecki () is a village in the administrative district of Gmina Jedlnia-Letnisko, within Radom County, Masovian Voivodeship, in east-central Poland.
References
Rajec Szlachecki |
Chakkamkulangara Siva Temple is an ancient Hindu temple dedicated to Lord Shiva and Devi Parvathi is situated at Thrippunithura of Ernakulam District in Kerala state in India. The Chakkamkulangara temple is dedicated to Lord Shiva however temple is equally famous for the Navagraha pratishta. The Lord Shiva of the temple represents the Swayamvara moorthy though originally it was in the form of "Mrityunjaya" in his fierce ('ugra') form, facing west, featuring eight hands with various attributes. Thrippunithura is one of the Brahmin settlement in the ancient Kerala and Capital of Cochin kingdom. The temple structure is made kerala-dravidian architecture style and is more than 1000 years old. According to folklore, sage Parasurama has installed the idol of Lord Shiva. The sage Parasurama is the sixth incarnation of Lord Maha Vishnu. The temple is a part of the famous 108 Shiva temples of Kerala and references to this temple (Adampalli) is found in 108 Shivalaya sothram.
Temple Structure
The Chakkamkulangara temple is situated north side of the Poornathrayeesa Temple in Thrippunithura. This is one of the prominent temples of the Kochi kingdom. The inner sanctum sanctorum is dedicated to Lord Shiva and the Goddess Parvati Devi is behind it. The sanctum sanctorum of Chakamkulangara is facing to west. There is a large pool on the west side of the temple. The pond was constructed to confront the Shiva temple of Lord Shiva.
Sivarathri Festival
Temple celebrates 7 days Sivarathri festival in the Malayalam month of Kumbham (February - March) in every year.
See also
108 Shiva Temples
Temples of Kerala
References
108 Shiva Temples
Shiva temples in Kerala
Hindu temples in Ernakulam district |
```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)
}
``` |
Arthromelodes choui is a species of beetle belonging to the rove beetle family. Specimens have been collected from northern Taitung, Taiwan.
Etymology
The specific name choui is in honor of the Taiwanese specialist of the Cerambycidae, Wen-I Chou.
Description
Males range from 2.09–2.22 mm in length. Male bodies are reddish-brown. The head and pronotum are sparsely punctate, and the abdomen slightly narrower than the elytra.
References
Pselaphinae
Insects of Taiwan
Beetles described in 2018 |
```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,
});
},
});
``` |
Jigme Khesar Namgyel Wangchuck (, ; born 21 February 1980) is the Druk Gyalpo (Dzongkha: Dragon King), the monarch of the Kingdom of Bhutan. After his father Jigme Singye Wangchuck abdicated the throne, he became the monarch on 9 December 2006. A public coronation ceremony was held on 6 November 2008, a year that marked 100 years of monarchy in Bhutan.
Early life and education
Khesar was born 21 February 1980 at Paropakar Maternity and Women's Hospital in Kathmandu. He is the eldest son of the fourth Dragon king of Bhutan, Jigme Singye Wangchuck, and his third wife, Queen Ashi Tshering Yangdon. He has a younger sister, Princess Ashi Dechen Yangzom, and brother, Prince Gyaltshab Jigme Dorji, as well as four half-sisters and three half-brothers.
After completing his higher secondary studies at Yangchenphug High School, Khesar was educated in the United States at Phillips Academy in Andover and at Cushing Academy in Ashburnham, where he finished high school. He then studied at Wheaton College in Massachusetts before completing the Diplomatic Studies Programme at Magdalen College, Oxford.
Crown Prince
The Crown Prince, popularly known to the people of Bhutan as 'Dasho Khesar', accompanied his father on his many tours throughout the kingdom to meet and speak to the people. He also officially represented Bhutan on several international events.
On 8 May 2002, he represented Bhutan at the 27th UN General Assembly and made his first speech to the United Nations, addressing issues related to the welfare of millions of children around the world. He attended Thai King Bhumibol Adulyadej's 60th Anniversary Celebrations on 12–13 June 2006 in Bangkok along with royals from 25 countries.
On 25 June 2002 the Crown Prince was awarded the Red Scarf by his father.
Trongsa Penlop
On 31 October 2004, Khesar was installed as the 16th Trongsa Penlop in Trongsa Dzong. The institution of the Trongsa Penlop, started by Zhabdrung Ngawang Namgyal in 1647, signifies the true heritage to the Bhutanese Throne and the investiture ceremony of the Trongsa Penlop is the formal declaration of this status of the Crown Prince.
Ascension to the throne
In December 2005, King Jigme Singye Wangchuck announced his intention to abdicate in his son's favour in 2008, and that he would begin handing over responsibility to him immediately. On 9 December 2006, the former king issued a Royal Edict announcing his abdication, and transferred the throne to Jigme Khesar Namgyel Wangchuck, who was officially crowned on 6 November 2008, in Punakha. Religious ceremonies and public celebrations were also held at Tashichho Dzong and Changlimithang Stadium in Thimphu. The coronation ceremony comprised an ancient and colourful ritual, attended by few selected foreign friends of the royal family and dignitaries, including the then-President of India, Pratibha Patil.
To welcome Khesar as king of Bhutan, people painted street signs, hung festive banners and decorated traffic circles with fresh flowers. He received white, yellow, red, green, and blue silk scarves.
Marriage
Royal wedding
As he opened the session of parliament on Friday, 20 May 2011, the king announced his engagement to Jetsun Pema, born in Thimphu on 4 June 1990. They were married on 13 October 2011 in Punakha Dzong. The wedding was Bhutan's largest media event ever. The ceremony was held in Punakha, followed by formal visits to different parts of the country. During the ceremony the king also received the Phoenix Crown of the Druk Gyaltsuen (Dragon queen) from the most sacred Machhen temple of the Dzong and bestowed it on Jetsun Pema, formally proclaiming her queen of the Kingdom of Bhutan. The wedding was held in traditional style with the "blessings of the guardian deities".
Children
The King and Queen announced the arrival of their son Jigme Namgyel Wangchuck, who was born in Lingkana Palace in Thimphu, on 5 February 2016. Their second son was born in Lingkana Palace in Thimphu on 19 March 2020. On 30 June 2020, the Royal Family announced that the second Gyalsey had been named Jigme Ugyen Wangchuck. On 9 September 2023, the King announced that the Queen had given birth to their third child and only daughter at the Lingkana Palace.
As king
Democratisation
The young king began his reign overseeing the democratisation of Bhutan by presiding over the last sessions of the parliament where electoral laws, land reform and other important issues were debated. He said that the responsibility of this generation of Bhutanese was to ensure the success of democracy. He traveled extensively to explain and discuss the Draft Constitution of Bhutan with the people and to encourage participation in the upcoming democratic exercises. He continues such visits, speaking mainly to young people on the need for Bhutanese to strive for higher standards in education, business, civil service, and the need for people of a small country to work harder than those of others.
On 17 February 2021, he signed the abolishment of anti-homosexuality laws into law, effectively decriminalising same-sex activity in the kingdom, after the repeal of such laws had been approved by both houses in 2020. Tashi Tsheten, of the LGBT organisation Queer Voices of Bhutan, welcomed the king's decision as a milestone and expressed gratitude to the king and every politician involved in making the decriminalisation possible. Additionally, Tea Braun of the organisation Human Dignity Trust said that Bhutan had made a "step forward" by legalising homosexual activity.
Diplomacy
The king signed a new treaty of friendship with India in February 2007, replacing the treaty of 1949. Many government initiatives were undertaken by the new king with a view to strengthen the system in preparation for democratic changes in 2008. The Constitution of Bhutan was adopted on 18 July 2008 after legislation dictated that the National Council and the National Assembly was to be elected democratically.
Land reform
The king's first landmark project after his formal coronation was launching the National Cadastral Resurvey in March 2009, aimed at resolving long-standing issues of excess land that affect every Bhutanese household. A variation of land reform focuses on improving the lives of people living in remote and difficult areas, with the Rehabilitation Project. The pilot Rehabilitation Project at Khinadang in Pemagatshel was initiated in June 2011, and inaugurated by Prince Gyaltshab Jigme Dorji Wangchuck on 28 October 2014. The Project resettled people living in less accessible areas to villages, and provided them with basic amenities and services, as well as support in agriculture. The project saw tremendous success, and similar projects are in the pipeline in other parts of Bhutan.
Kidu
One of the most important and ongoing works of the king involves Kidu, a tradition based on the rule of a Dharma king whose sacred duty is to care for his people. The people can access Kidu in several ways: by applying to the Office of the Royal Chamberlain, which accepts applications during working hours; by sending applications through Dzongkhag Kidu Officers in every district, whose responsibility is to collect such applications as well as identify people who need help; and by appealing to the king directly. To give the people the opportunity for direct appeal, the king on his numerous road trips across the country stops for every potential appellant along the road.
There are several Kidu schemes designed to help certain groups of people, such as students unable to afford even the free education available in the country, elderly citizens, and those requiring medical treatment. The king has also continued the tradition of giving state land to landless farmers around the country. The ongoing project takes him to remote villages and communities. Kidu includes providing immediate assistance to victims of natural disasters. The king personally supervised the rebuilding efforts following major earthquakes and floods in 2009 and 2011.
In 2012, the king granted Nu.100 million from the Armed Forces to the Zhung Dratshang for the Dzong Reconstruction Fund, as on 24 June, the historic Wangduephodrang Dzong was destroyed by fire. As Supreme Commander of the Armed Forces, he commanded the armed forces and to the site immediately, and with help from dzongkhag officials and citizens, many things were saved from the fire.
DeSuung Training Programme
The king initiated military-style training for volunteers known as the DeSuung Training Programme, DeSuung meaning "Guardians of Peace", in 2011, on the request of the youth. The programme aims to equip volunteers with the skill to provide assistance during emergencies, and has been hugely successful, with more than 3000 volunteers having completed their training and volunteering for public events and emergencies. Graduates of the program are known as DeSuups and wear orange jumpsuits. They live by the DeSuung Honour Code, which is to "keep service to their nation before their own safety and comfort".
Gyalsuung National Service
In December 2019, during the 112th National Day, the king announced the initiation of a one-year national service for all eighteen-year-olds, starting from 2022. The training includes three months of military-style training and a nine-month educational course on agriculture, entrepreneurship, computers, coding and health sciences.
Amnesty
The Constitution of Bhutan empowers the king to grant amnesty to prisoners. In 2014 he pardoned 45 prisoners who had been imprisoned for possessing an excessive amount of tobacco, following an amendment of the Tobacco Control Act of Bhutan 2010 by the Parliament of Bhutan, since the amended law could not be enforced retroactively, and previous offenders who would not be liable now would still be tried under previous laws. The Royal Pardon was granted to those who were not repeat offenders and had good prison records.
Public perception and popularity abroad
The "People's king", like his father, enjoys exceptionally warm relations with India. He has visited India on several occasions, and was invited as the Chief Guest for India's 64th Republic Day celebrations in 2013.
Following his 2006 visit to Thailand as crown prince, the king has been immensely popular in Thailand. The number of Thai tourists visiting Bhutan increased from 100 in 2006 to 700 in 2007.
In November 2011, the King and Queen Jetsun Pema made a state visit to Japan; they were the first state guests to Japan since the 2011 earthquake. It was reported that the Japanese were fascinated by the king and queen of Bhutan.
In March 2015, the King and Queen were among the foreign dignitaries who attended the funeral of Singapore's former Prime Minister Lee Kuan Yew.
Also, the King and Queen attended the funeral of King Bhumibol Adulyadej of Thailand in October 2017 and the enthronement ceremony of Emperor Naruhito and Empress Masako of Japan in October 2019.
The King and Queen were also present at the 2023 coronation of King Charles III.
Foreign honours
: Knight Grand Cross of the Most Illustrious Order of Queen Salote Tupou III (14/05/2010).
Ancestry
See also
House of Wangchuck
Jigme Khesar Strict Nature Reserve
References
External links
Official Facebook Page
Bhutan's Royal Family
More Royal Family Background
Tim Fischer: Wise heads prevail in capital of happiness
Bhutan 2008 Coronation of the Fifth King (Official Website)
BBC, In pictures: Bhutan coronation
Bhutan crowns a new King (gallery)
Of Rainbows and Clouds: The Life of Yab Ugyen Dorji As Told to His Daughter
1980 births
Living people
Bhutanese Buddhists
Bhutanese monarchs
Buddhist monarchs
Wangchuck dynasty
People from Kathmandu
Alumni of Magdalen College, Oxford
Wheaton College (Massachusetts) alumni
Members of the Inner Temple
National Defence College, India alumni |
```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
``` |
Juan Sánchez or Sanchez may refer to:
Arts and entertainment
Juan Sánchez Cotán (1560–1627), Spanish Baroque painter
Juan Félix Sánchez (1900–1997), Andean folk artist
Juan Sánchez Peláez (1922–2003), Venezuelan poet
Juan Sanchez (artist), (born 1954), American painter
Juan Ramón Sánchez (actor) (1957–2008), Spanish actor
Juan Sánchez-Villalobos Ramírez, character from Highlander
Politics and law
Juan Sánchez Ramírez (1762–1811), Dominican soldier and politician (for whom Sánchez Ramírez Province is named)
Juan Manuel Sánchez, Duke of Almodóvar del Río (1850–1906), Spanish noble and politician
Juan Manuel Sánchez Gordillo (born 1952), Spanish politician
Juan Ramon Sánchez (born 1955), U.S. federal judge
Sports
Association football (soccer)
Juan Ramón Sánchez (born 1952), Salvadoran footballer and football manager
Juan Carlos Sánchez (born 1956), Bolivian football striker
Juan Sánchez (footballer, born 1972), Spanish footballer
Juan Carlos Sánchez Ampuero (born 1985), Bolivian footballer
Juan Sánchez Sotelo (born 1987), Argentine footballer
Juan Sánchez Miño (born 1990), Argentine footballer
Juan Sánchez (soccer, born 1997), American soccer player
Juan Sánchez (footballer, born 1998), Mexican footballer
Other sports
Juan Sánchez (cyclist) (born 1938), Spanish Olympic cyclist
Juan Manuel Sánchez (born 1962), Spanish sprint canoeist
Juan Ignacio Sánchez (born 1977), Argentine basketball player
Juan Carlos Sánchez Jr. (born 1991), Mexican boxer
Others
Juan Sánchez Duque de Estrada (1581–1641), Spanish bishop
Juan Sánchez-Navarro y Peón (1913–2006), Mexican businessman, ideologue
Juan Sánchez Muliterno (born 1948), Spanish professor
Juan Sánchez Vidal (born 1958), Spanish model aircraft collector
Other uses
Juan Sánchez, Bayamón, Puerto Rico, a settlement in the Municipality of Bayamón, Puerto Rico
Dr. Juan Sanchez Acevedo Coliseum, Puerto Rican stadium
See also
Juan Carlos Sánchez (disambiguation)
Juan Boza Sánchez (1941–1991), gay Afro-Cuban-American artist
Juan Carlos (footballer, born 1987) (born 1987), Spanish footballer |
György Galántai (born June 17, 1941) is a Hungarian neo-avant-garde and fluxus artist, organizer of the events of the Chapel Studio in Balatonboglár which run from 1970 to 1973 and founder of the Artpool Art Research Center Budapest. During the Communist Era of Hungary, he organized illegal, underground avant-garde exhibitions and therefore he was considered to be a "dangerous element" by the Party for spreading western propaganda, and was monitored by secret police, who opened the file "Painter" solely documenting his activity. From the late seventies he started an intense correspondence with fellow artists all over the world, joining into the network of mail art despite the Iron Curtain limiting his access for information. In 1979 he created an archive for these correspondences and other documents which he collected on Hungarian neo-avantgarde movements and initiated Artpool which became the largest archive of new mediums such as fluxus, visual poetry, artists' book, mail art, artistamp etc. in Central Europe.
Between 1970 and 1973, Galántai organized and ran the "Chapel Studio" of avant-garde art held all summer in the chapel in Balatonboglár. In all, there were some 35 exhibitions, concerts, poetry recitals, theatrical performances, and film showings were held over these four years, featuring the best of Hungary's (and then considered politically undesirable) avant-garde artists, and guest artists from abroad.
In 1971, he started working on the problem of signs and their meanings.
External links
Life works
Artpool
Biography, in Hungarian
Biography, in English
The Balatonboglár Chapel Studio 1970-1973
Artpool: The Experimental Art Archive of East-Central Europe
References
1941 births
Living people
Hungarian sculptors
Modern artists |
```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
``` |
Hypnoscope is an instrument intended to determine a person's susceptibility to hypnotic influences.
History
Plenty of hypnotists, like Mesmer and others, proclaimed that the human body was susceptible to magnetic fields. At the end of XIXth century some psychologists tried to measure human's susceptibility to hypnosis with magnets. Patient had to put the finger inside the magnetic field, and if he had felt any influence he was considered a hypnable person.
Some psychologists, like Julian Ochorowicz or Gessman created their original hypnoscopes for testing hypnability of their patients. The instrument and the method met some serious criticizm from Frank Podmore and, eventually, psychologists lost their interest.
References
Inventions
Hypnosis |
"Got Your Money" is a song by American rapper Ol' Dirty Bastard, released in 1999 as the only single from his second studio album, Nigga Please. Both the single and the album were the last to be released by Ol' Dirty Bastard, before his death in 2004. The song, produced by the Neptunes, features American R&B singer Kelis, who sings the chorus. It marked her first appearance on record, before the release of her debut single the following month. "Got Your Money" is listed at number 255 on NMEs "500 Greatest Songs of All Time", published in 2014.
Music video
The music video for "Got Your Money" uses footage from the 1975 blaxploitation film Dolemite. No new footage of ODB was filmed for the video. Footage of ODB was taken from the 1995 music video for "Shimmy Shimmy Ya". It also features Kelis, with Beverly Peele and Tangi Miller as backup dancers. Pitchfork Media included the video on its list of the "Top 50 Music Videos of the 1990s".
Track listings
US maxi-CD single
"Got Your Money"
"Got Your Money"
"Got Your Money"
"I Can't Wait"
"I Can't Wait"
"I Can't Wait"
"Cold Blooded"
UK cassette single
"Got Your Money" – 4:03
"Got Your Money" – 5:20
UK CD single
"Got Your Money" – 4:03
"Got Your Money" – 5:20
"Got Your Money" – 5:20
"Got Your Money"
German CD single
"Got Your Money" – 4:03
"Got Your Money" – 4:03
"Rollin' wit You" – 3:56
Charts
Certifications
Release history
Other versions
In 2012, a parody of the song was made by ADHD called "Where You Hide Your Money" with 2012 Republican presidential nominee Mitt Romney as the subject of the song.
Altered versions of the song appeared in 2013 television advertisements for Boost Mobile and a 2015 trailer for the film Get Hard. The song has also been sampled by the Chemical Brothers in their song "Galaxy Bounce".
Another parody of the song was featured in the 2020-2021 television commercial "Got Your Laundry", for the LG WashTower.
In 2008, Max Bemis from Say Anything (band) covered the song as part of the Punk Goes Crunk compilation album.
References
1999 songs
1999 singles
Ol' Dirty Bastard songs
Kelis songs
Elektra Records singles
Music videos directed by Hype Williams
Song recordings produced by the Neptunes
Songs written by Chad Hugo
Songs written by Ol' Dirty Bastard
Songs written by Pharrell Williams |
The 2003 El Castillo del Terror (Spanish for "The Tower of Terror") was a major lucha libre event produced and scripted by the Mexican International Wrestling Revolution Group (IWRG) professional wrestling promotion on November 2, 2003. The 2003 El Castillo del Terror was the third ever IWRG El Castillo del Terror event held. The main event was the eponymous Castillo del Terror (Spanish for "Tower of Terror") Steel cage match where the last person eliminated would be forced to take off his wrestling mask or have his hair shaved off as a result of the loss.
Due to incomplete records of the show, the only known results state that Mega was listed as the winner of the El Castillo del Terror main event while Comando Alfa lost the match and thus had to unmask and state his given name. The remaining results are unknown.
Production
Background
The Mexican wrestling promotion International Wrestling Revolution Group (IWRG; Sometimes referred to as Grupo Internacional Revolución in Spanish) has a long-standing history of holding major event focused on a multi-man steel cage match where the last wrestler left in the cage would be forced to either remove their wrestling mask or have their hair shaved off under Lucha de Apuestas, or "bet match", rules. Starting in the year 2000 IWRG has promoted a fall show, around the Mexican Day of the Death, under the name El Castillo del Terror ("The Tower of Terror"), creating an annual event on their major show calendar that has been held almost every year since 2000. The 2003 El Castillo del Terror show was the third overall show under that name, with IWRG not holding a Castillo del Terror in 2001.
The El Castillo del Terror event is one of several annual steel cage match shows that IWRG holds throughout the year such as the IWRG Guerra del Golfo ("Gulf War"), IWRG Guerra de Sexos ("War of the Sexes"), or IWRG Prison Fatal ("Deadly Prison") shows. The Castillo del Terror shows, as well as the majority of the IWRG shows in general, are held in Arena Naucalpan, owned by the promoters of IWRG and their main arena. In the El Castillo del Terror match a varying number of wrestlers start out in the cage and have to remain inside the cage, fighting each other for ten minutes before they are allowed to try to escape the match. Wrestlers who climb over the top of the steel cage and touch the floor with both feet are deemed to have escaped the cage and thus escaped the Lucha de Apuestas, or "bet match", stipulation. The last wrestler in the cage is forced to either unmask (if masked) and state his given name, or (if unmasked) is forced to have all his hair shaved off as per lucha libre traditions.
Storylines
The event featured an unknown number of professional wrestling matches with different wrestlers involved in pre-existing scripted feuds, plots and storylines. Wrestlers were portrayed as either heels (referred to as rudos in Mexico, those that portray the "bad guys") or faces (técnicos in Mexico, the "good guy" characters) as they followed a series of tension-building events, which culminated in a wrestling match or series of matches.
In 1999 IWRG introduced Mega and Super Mega, a team called Los Megas, a group of masked, brightly colored kid-friendly tecnico characters. They later added Ultra Mega to the group, making them a regular trio. At the very first El Castillo del Terror event Super Mega lost his mask, but the trio remained together. Los Megas defeated Los Oficiales (Guardia, Oficial and Vigilante) on August 2, 2001 to win the Distrito Federal Trios Championship, starting off a 161-day-long title reign. The trio was defeated for the title by Dr. Cerebro, Cirujano and Paramedico on January 10, 2002. Only a month later Mega and Ultra Mega defeated Fantasy and Star Boy to win the IWRG Intercontinental Tag Team Championship. They team held the title for 73 days until losing to MAZADA and NOZAWA. Around that time Super Mega left IWRG to work for Consejo Mundial de Lucha Libre, which caused IWRG to bring in Omega to keep Los Megas a trio.
In 2003 IWRG introduced a group designed to be the "archenemy" of Los Megas in the form of Los Comandos (Comando Alfa, Comando Mega and Comando Gama), who were dark and destructive to counter Los Megas' bright, kid-friendly personas. The groups developed their rivalry for the better part of a year, escalating the tension between the two groups.
Event
Records are unclear on most of the wrestlers who actually participated in the main event, event results published shortly after the show only mention the Los Megas and Los Comandos factions, and later published sources only confirms the winner and the loser of the El Castillo del Terror match, offering no information on other matches on the show. Sources confirm the participation of Ultra Mega, Omega, Comando Mega and Comando Gama as well as Mega being declared the winner of the match, forcing Comando Alfa to unmask as a result.
Aftermath
After the loss of his mask Los Comandos brought in "Comando Omega" as the faction rivalry continued to build. Los Comandos scored a major victory in the feud when Comando Gama defeated Omega in a Lucha de Apuestas match. Omega removed his mask and subsequently was only used sporadically. The storyline between the two factions saw Mega and Ultra Mega gain revenge and "win" the feud by defeating Comando Mega and Comando Gama in a Lucha de Apuesta, masks vs. masks match on June 6, 2004, a match that was considered the end of the Megas Vs Comandos storyline. Following the culmination of the feud Los Megas were phased out by IWRG. In October 2004 Mega and Black Dragon were the last two wrestlers in the 2004 Castillo del Terror steel cage match. Black Dragon won the match and Mega was forced to unmask and reveal his real name. On December 22, 2005, Ultra Mega was one of the participants in the 2005 El Castillo del Terror show. The match came down to Ultra Mega and Nemesis, with Nemesis winning the match, forcing Ultra Mega to unmask.
Results
References
External links
IWRG official website
2003 in professional wrestling
2003 in Mexico
2003
November 2003 events in Mexico |
The Spanish Christmas Lottery (officially Sorteo Extraordinario de Navidad or simply Lotería de Navidad ) is a special draw of the Lotería Nacional, the weekly national lottery run by Spain's state-owned Loterías y Apuestas del Estado. The special Christmas draw takes place every December 22 and it is the biggest and most popular draw of the year.
Lotería Nacional, with its first draw held on 4 March 1812, is the second-longest continuously running lottery in the world. This includes the years during the Spanish Civil War when the lottery draws were held in Valencia after the Republicans were forced to relocate their capital from Madrid. After the overthrow of the Republican government, the lottery continued uninterrupted in Francoist Spain. The first Christmas draw was held on 18 December 1812 in Cádiz and the grand prize was for the number 03604. The first time that the name Sorteo de Navidad was used was in 1892.
As measured by the total prize payout, the Spanish Christmas Lottery is considered the biggest lottery draw worldwide. In 2022, with 180 million pre-printed €20 tickets to sell (décimos), the maximum total amount available for all prizes would be €2.52 billion (seventy per cent of ticket sales). The total amount for the grand prize El Gordo ("the big one") would be €720 million.
In the Spanish-speaking and the English-speaking media it is sometimes just called El Gordo, even though that name really refers to the grand prize for any Spanish lottery.
Ticket numbers and prizes
As all Lotería Nacional draws, the special Christmas draw is based on tickets (billetes) which have five-digit numbers, from 00000 to 99999. Since this system only produces 100,000 unique ticket numbers, each ticket number is printed multiple times, in several so-called series (series). The series is also identified on each ticket by a series number. In this way, the lottery organizer is able to sell more than 100,000 tickets each year, numbered from "Series 001 Ticket 00000" through "Series xxx Ticket 99999", where xxx is the total number of series printed in a given year. In 2022, there are 180 series of 100,000 tickets each, for a total of 18,000,000 tickets available at €200 each. If all €3.6 billion tickets were sold, there would be €2.52 billion (seventy per cent of ticket sales) available for prizes.
Because the €200 ticket price may be prohibitive for many purchasers, each of the pre-printed tickets is actually a perforated tear-apart sheet of ten identical sub-tickets (or fractions) sold for €20 each. Each one of these fractions is known as a décimo (one-tenth). Each décimo is entitled a ten per cent of any prize that the ticket has won.
Tickets are officially sold in official lottery shops (administraciones) throughout the country as well as by licensed (and unlicensed) sellers on the street. Frequently a shop will sell a ticket number in all series meaning all the winners of that ticket will have purchased their tickets in that location. This sometimes leads to a small village full of grand prize winners. Locations where previous grand prize winners were sold (El Gordo) often becomes a location of lottery pilgrimage where thousands of people (both local and from far away) will queue and buy their ticket at this location "for luck". The tickets are also sold outside of Spain, usually online (legally or illegally) often with a notable markup in price.
On a private basis, or through associations, charities, workplaces, sports teams, cafés, shops, and other organizations, it is also possible to buy or be given a fraction of a décimo (one-tenth ticket), called a participación (a share). Many organizations buy décimos and divide them further into shares and sell them to the public, colleagues, or members of an association. Usually, with charities and special organizations, a small transaction fee is applied which is effectively a donation to the organization. Street sellers may take a commission earning a small profit. Participaciones (shares) are made by writing the ticket number and the amount paid on a piece of paper (possibly on a photocopy of the ticket) and then signed. The paper is a legal contract in Spain and proof of participation in the ticket. If the ticket is a winner, anyone holding a share will be entitled to their proportional amount of the prize payout. For example, a charity may buy a décimo (one-tenth ticket) and split it further into ten more participaciones (shares), in this case selling them for €2 each plus €1 extra as a donation to the charity. If their number wins, they will get a one per cent of the prize (one-tenth of one-tenth).
For 2022, there are 180 series of 100,000 billetes (from 00000 to 99999) at €200 each. The maximum ticket sales of €3.6 billion would produce a prize payout of €2.52 billion (seventy per cent of ticket sales). For each one of the 180 series, the prize structure is the following:
In 2022, the €4,000,000 El Gordo was paid to every series of number 05490. Every series of numbers 05489 and 05491 obtained the corresponding €20,000 approximation prizes. Additionally, every series of numbers between 05400 and 05499 (excluding El Gordo but including approximations) obtained the €1,000 prizes for the numbers with the same first three digits of El Gordo. Every series of numbers ending in "90" (excluding El Gordo) obtained €1,000, and every series of numbers ending in "0" (excluding El Gordo) obtained a refund of €200.
The exact quantity of tickets and series, and their prices, may be different each year. For example, in 2004, there were 66,000 different numbers in 195 series. In 2005, there were 85,000 numbers in 170 series, whereas in 2006 the number of series was increased to 180. Since 2011 there are 100,000 different numbers in 180 series. Distribution of prizes can change also, as in 2002 with the introduction of the Euro, or in 2011, when El Gordo increased from €3,000,000 to €4,000,000, the Second Prize increased from €1,000,000 to €1,250,000, the Fifth Prizes increased from €50,000 to €60,000, and 20 more pedreas of €1,000 were added. In 2013 the number of series has been reduced from 180 to 160 to adjust to the expected demand. In 2017 the number of series has been increased from 160 to 170, in 2020, to 172; in 2022, to 180; and in 2023, to 185.
Odds
The overall odds of winning a prize in Lotería de Navidad are 1:6.5.
Draw
The drawing traditionally takes place on 22 December. In the past, the drawings took place in the Lotería Nacional hall in Madrid, in 2010 and 2011 it was held at the Palacio Municipal de Congresos de Madrid, and since 2012 in Teatro Real in Madrid. Pupils of the San Ildefonso school (formerly reserved for orphans of public servants) draw the numbers and corresponding prizes, delivering the results in song to the public. Until 1984, only boys from San Ildefonso participated in the drawing; that year Mónica Rodríguez became the first girl to sing the results, including the fourth prize of 25 million Spanish pesetas. It is a custom that the winners donate some of the money to the San Ildefonso school. The public attending the event may be dressed in lottery-related extravagant clothing and hats. The state-run Televisión Española and Radio Nacional de España, and other media outlets, broadcast the entire draw, it is also livestreamed.
Two large spherical cages are used. The largest one contains 100,000 small wooden balls, each with a unique five-digit ticket number on it, from 00000 to 99999. The smaller cage contains 1,807 small wooden balls, each one representing a prize written in Euros:
1 ball for the first prize, called El Gordo.
1 ball for the second prize.
1 ball for the third prize.
2 balls for the fourth prizes.
8 balls for the fifth prizes.
1,794 balls for the small prizes, called la Pedrea, literally "the pebble-avalanche" or "stoning".
Inscriptions on the wooden balls are nowadays made with a laser, to avoid any difference in weight between them. They weigh and have a diameter of . Before being thrown into the vessels, the numbers are shown to the public for anyone to check that the balls with their numbers are not missing.
As the drawing goes on, a single ball is extracted from each of the revolving spheres at the same time. One child sings the winning number, the other child sings the corresponding prize. This is repeated until the smaller cage (the prize-balls) has been emptied. Due to the sheer number of prizes, this procedure takes many hours. The children work in about eight to nine shifts, equal to the number of frames of numbers to be drawn.
The balls have holes on them so they can be placed onto long wires, which are stored in frames for later presentation. When a major prize is drawn, both children pause, sing the prize and ticket number multiple times and show the balls to a committee, and then to a fixed camera with two Phillips screwdriver heads mounted at the front, all before being inserted into a frame as the others. Although the drawing is by chance, the children who draw the higher prizes are applauded. Apart from the prizes drawn from the vessel, some prizes are calculated from the winning numbers (view the table with prizes above). Once the grand prize (El Gordo) is declared, this number is instantly broadcast on television, online and on public screens.
The two-vessels system was the traditional system used by Lotería Nacional in its draws, but nowadays it is only used in the special Christmas draw. Since 1965 the rest of the ordinary and special Lotería Nacional draws use five spherical cages with ten balls each (numbered 0 to 9), from where the five digits of the winning numbers are drawn.
The smallest prize is the reintegro, tickets that end with a certain digit get the money back. That means ten per cent of all tickets get the money back. There is a 5.3% chance of winning higher prizes meaning more than ten per cent of all tickets win some prize which is a significantly higher winning rate than most other lotteries. The prize structure makes it easier to win some money compared to other lotteries, and it is common saying that the prizes of the Christmas Lottery are well distributed all around Spain. Chances of winning El Gordo are 1 in 100,000, that is 0.001%, while chances of winning the top prize of EuroMillions are 1 in 139,838,160 or 0.00000072%, and chances of winning the top prize of Mega Millions are 1 in 302,575,350 or 0.00000000330496189%.
Non-winners are known to claim "it's health that really matters" after losing. Those who get their money back often re-invest it in a ticket for Sorteo Extraordinario de El Niño, the second most important Lotería Nacional draw, held every January 6, the Epiphany of Jesus day.
El Gordo
The climax of the drawing is the moment when El Gordo is drawn. Lottery outlets usually only sell tickets for one or two numbers, so the winners of the largest prizes often live in the same town or area or work for the same company. In 2011, El Gordo was sold entirely in Grañén, Huesca, a town with about 2,000 people. In 2010, €414 million from the first prize were sold in Barcelona, and the rest of the €585 million of El Gordo was distributed between Madrid, Tenerife, Alicante, Palencia, Zaragoza, Cáceres, and Guipúzcoa. In 2006, the winning number was sold in eight different lottery outlets across Spain, while the second prize number (€100,000 per décimo) was only ever sold from a kiosk on the Puerta del Sol in central Madrid. In 2005, the winning number was sold in the town of Vic in Catalonia (population 37,825), whose inhabitants shared about €500 million (€300,000 per winning décimo). The moment is aired live on La 1 and RNE, as well as on sister channels TVE Internacional and 24 Horas, and the resulting combination and winning price are shown on all lottery outlets following.
As a misconception in many non-Spanish speaking countries, it is often assumed that the term El Gordo is specific for the Christmas Lottery; some even think that El Gordo is in fact the name of the lottery. However, the real meaning of El Gordo is simply "the first prize" (literally "the fat one" or more accurately "the big one"); other lotteries have their Gordo as well. To add to the confusion, there is a relatively new weekly Spanish lottery game called El Gordo de la Primitiva, which has nothing in common with the Christmas lottery, except the fact that it is organized by the Spanish public lottery entity Loterías y Apuestas del Estado.
References
External links
Loterías y Apuestas del Estado official page
Rural Spanish housewife clubs win "El Gordo" lottery Reuters. December 22, 2011.
Lotteries in Spain
Culture of Spain
Christmas events and celebrations
Christmas in Spain |
```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()
``` |
Derek Mackay (born 1977) is a former Scottish politician who served as Cabinet Secretary for Finance, Economy and Fair Work from 2016 to 2020. A former member of the Scottish National Party (SNP), he was Member of the Scottish Parliament (MSP) for Renfrewshire North and West from 2011 to 2021. Mackay served as a government minister from 2011 to 2020 under the administrations of Alex Salmond and Nicola Sturgeon.
Raised in Renfrewshire, he was elected to Renfrewshire Council in 1999 and was Leader of the Council from 2007 to 2011. Elected to the Scottish Parliament at the 2011 Scottish Parliament election, he served as Minister for Transport and Islands from 2011 to 2014 and Minister for Local Government and Planning from 2014 to 2016, as well as Chairman and Business Convener of the Scottish National Party from 2011 to 2018.
Mackay became Cabinet Secretary for Finance and the Constitution in 2016, succeeding Deputy First Minister John Swinney. In 2018, during a Cabinet reshuffle, Mackay's post was enlarged, absorbing the responsibilities of the previous role of Cabinet Secretary for Economy, Jobs and Fair Work to become Cabinet Secretary for Finance, Economy and Fair Work. In February 2020, he resigned as Finance Secretary after the Scottish Sun reported he had messaged a 16-year-old boy on social media, describing the boy as "cute" and offering to meet with him. He was also suspended from the SNP and sat as an independent MSP for the remainder of the 2016 parliamentary term, which ended on 25 March 2021.
Early life
Mackay was born in Paisley, Renfrewshire, as the eldest of three children. His father was a violent alcoholic. In Mackay's early teens, he fled from his father with his mother and younger brother, becoming briefly homeless. He was educated at Kirklandneuk Primary School and Renfrew High School. MacKay became the first in his family to attend university, studying social work at the University of Glasgow, however, he later dropped out to pursue a career in politics.
He joined the Scottish National Party (SNP) at 16 and was involved in both the youth, where he served as National Convener from 1998–2002, and student movements.
Political career
Mackay was first elected as a councillor in 1999, representing the Blythswood Ward on Renfrewshire Council. He was re-elected in 2003 and 2007 (for the new multi-member ward of Renfrew North in the latter) and became leader of Renfrewshire Council in May 2007, taking the SNP from opposition to lead the administration for the first time.
He became a national figure in local government, leading the SNP group in the Convention of Scottish Local Authorities (COSLA) from 2009 to 2011. He coordinated the SNP campaign in the 2012 Scottish local government elections and the 2017 general election.
At the 2011 election, Mackay was adopted for the new constituency of Renfrewshire North and West while also being placed third on the SNP regional list for West Scotland region. Upon his election as the constituency MSP for Renfrewshire North and West, he was placed on the Finance Committee and also appointed as the SNP's Business Convener and Parliamentary Liaison Officer to the Cabinet Secretary for Parliamentary Business and Government Strategy Bruce Crawford MSP.
Following a mini-reshuffle Mackay replaced Aileen Campbell as Minister for Local Government and Planning on 7 December 2011. When Nicola Sturgeon became First Minister of Scotland he was appointed as Minister for Transport and Islands.
Following the Scottish Parliament election in 2016, Mackay was promoted to the Scottish Cabinet to serve as Cabinet Secretary for Finance and the Constitution. After a reshuffle in June 2018, Economy and Fair Work was added to his portfolio.
In June 2011, Mackay was appointed as the SNP's Business Convener (party chair), succeeding Bruce Crawford. The Business Convener is responsible for chairing the SNP's Party Conference and the National Executive Committee; overseeing the party's management, administration and operations, as well as the coordination of election campaigns; working with the Chief Executive of Headquarters in setting priorities. Mackay stepped down from the role in October 2018.
Resignation
On 5 February 2020, the Scottish Sun alerted the office of Nicola Sturgeon about a story they were planning to run revealing Mackay had sent a 16-year-old boy messages via Facebook and Instagram in which he described the boy as "cute" and offered to meet up with the boy in person. The paper told the BBC they had been approached by the boy's mother who had become aware of the messages in the week prior.
The Scottish Government was accused of trying to stop publication of the Scottish Sun article, questioning the "justification" of intruding into Mackay's private life and claiming the Scottish Sun had a “moral obligation" to share the material in order for them "to offer any form of substantive response or view". The paper defended its position, stating that Alan Muir, its Scottish editor, had read out the "most significant and damaging messages" to Sturgeon’s office in two 15-minute phone conversations.
On 6 February, Mackay resigned hours before the Scottish budget was due to be announced. Sturgeon announced he had been suspended from the SNP and she had accepted his resignation, recognising his "significant contribution to government" but admitting his behaviour "failed to meet the standards required". Scottish Conservative acting leader Jackson Carlaw suggested the messages could "constitute the grooming of a young individual" and called for Mackay to resign from the Scottish Parliament.
On 8 February, Police Scotland said that it had spoken to the schoolboy and that while it had not "received any complaint of criminality", it was "assessing available information". It subsequently announced that it had reviewed the case and that Mackay would not face any charges, as no laws had been broken, with 16 being the age of consent in Scotland.
Mackay sat as an Independent for the rest of 2016–2021 parliament term and stood down as an MSP when it ended on 5 May 2021.
Personal life
Mackay came out as gay in 2013 and separated from his wife. They have two sons together.
Mackay lives in Bishopton, Renfrewshire, near Glasgow, with his partner. He is involved with the Paisley Fairtrade Partnership, and is a member of CND and Amnesty International. He was the Honorary Vice President of the Battalion for Paisley and District Boys' Brigade, until being sacked from the position following his resignation scandal.
In February 2020, it was reported by a former senior SNP staff member that Nicola Sturgeon had banned Mackay from drinking at SNP conferences, because of reports around his behaviour. Mackay joked to attendees at the 2017 party conference that they would not see him later as, "Nicola won't let me".
References
External links
personal website
|-
1977 births
Living people
Scottish National Party MSPs
Members of the Scottish Parliament 2011–2016
Members of the Scottish Parliament 2016–2021
People from Renfrew
Gay politicians
Finance ministers of Scotland
Independent MSPs
Alumni of the University of Glasgow
Scottish National Party councillors
Councillors in Renfrewshire
Leaders of local authorities of Scotland
LGBT government ministers
LGBT members of the Scottish Parliament
21st-century Scottish LGBT people
People from Bishopton |
```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
``` |
Făt-Frumos (from Romanian făt: son, infant; frumos: handsome) is a knight hero in Romanian folklore, usually present in fairy tales.
Akin to Prince Charming, he possesses such essential attributes as courage, purity, justness, physical and spiritual strength, cleverness, passion, and unshakable love. Făt-Frumos also displays some minimal abilities in performing miracles, as well as total commitment to a task once his word is given and to the monarch he serves. In some tales, he is so precocious as to be able to weep before he is born.
Făt-Frumos is usually the youngest son of a king. In the Romanian folk stories it is common that all the sons of a king try to defeat the Zmeu or the Balaur, the older sons failing before the younger one succeeds.
Făt-Frumos has to go through tests and obstacles that surpass ordinary men's power. With dignity, he always brings these to a positive resolution. He fights demonic monsters and malevolent characters (zmeu, balaur, Muma Pădurii, etc.). He travels in both "this land" and "the other land" (tarâmul celălalt) on the Calul Năzdrăvan ("The Marvellous Horse"), who also serves as his counsellor.
At the end of the fairy tale, Fat-Frumos is paired up with the heroine of the story, a fairy maiden: Ileana Cosânzeana, Zâna Zânelor (Fairy Queen) or Doamna Chiralina.
In his journeys, Făt-Frumos often has to overcome a major dilemma related to the correct route he is to follow, and is bound to decide between two equally nonsensical choices. Asked about the right way, an old woman gives Făt-Frumos an obscure answer: "If you turn right, you will be in sorrow; if you turn left, you will be in sorrow as well".
According to Victor Kernbach, this lose-lose situation evokes the historical condition of the Romanian people whose homeland had been constantly crossed and attacked by foreign powers, as the native population was always forced to decide between two equally unfortunate choices: ally with your enemies or fight them.
Făt-Frumos is also a commonplace figure of the Romanian culture and literature. He appears as a character in stories and poems by famous writers, such as Mihai Eminescu, Tudor Arghezi, or Nichita Stănescu. As a symptom of the Romanian people's self-irony, Făt-Frumos can be encountered even in contemporary Romanian jokes, yet less frequently than Bulă or the political personalities of the moment.
See also
Culture of Romania
Religion in Romania
Ileana Cosânzeana
Princess and dragon
Dragonslayer
References
Selected bibliography
Calinescu, Matei. "Between History and Paradise: Initiation Trials". In: The Journal of Religion 59, no. 2 (1979): 218–23. www.jstor.org/stable/1202705.
Chelaru, Oana Valeria. "Sistemul actanţial al basmului" [Actantial System of the Folktale]. In: Anuarul Muzeului Etnografic al Moldovei [The Yearly Review of the Ethnographic Museum of Moldavia]. 11/2011. pp. 87-116. (In Romanian)
Frîncu, Simina & Giurginca, Ioana. (2019). Făt-Frumos cu ceas rupt din Soare. Folclorul românesc și astronomia. In: Astronomia străbunilor. Arheoastronomie și etnoastronomie pe teritoriul României, Publisher: JATEPress Kiadó, pp. 345–362.
Kernbach, Victor (1989). Dicționar de mitologie generală. Editura Științifică și Enciclopedică, București, pp. 183–184.
Fictional knights
Romanian mythology
Romanian folklore |
```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
``` |
Soldierpet is one of the oldest neighbourhoods in Visakhapatnam, Andhra Pradesh, India. In the 18th century the area was a residential colony for the British Army.
History
Soldierpet was formerly home to an Anglo-Indian community and resembles the backyards of Great Britain. The locality has several educational institutions.
The city is now expanding northward and has had problems with pollution.
References
Neighbourhoods in Visakhapatnam |
Commandos is the special forces formation of the Singapore Army responsible for conducting special operations. Commandos are tasked with infiltrating behind enemy lines by raiding and reconnaissance operations using airborne raids, helicopter assault and sea landings. The formation is made up of only one battalion, the 1st Commando Battalion (1 CDO BN), and is based in Hendon Camp.
History
The Commandos formation traces its origin to 1967 when two officers, Major Clarence Tan and Major James Chia, were tasked with recruiting eligible candidates from any unit within the Singapore Armed Forces (SAF) to form an elite unit. On 1 December 1969, ten officers and 20 men, all regulars, came together to form a unit called the Regular Battalion. Captain Tham Chee Onn was initially the acting commanding officer until Major Clarence Tan subsequently joined the unit, became its commanding officer, and established a training programme for the unit. A second recruitment drive was launched in early 1970 to increase the number of officers in the unit.
On 3 May 1971, the battalion introduced the red beret for its soldiers, and it was renamed 1st Commando Battalion (1 CDO BN) on 16 July 1971. The battalion had only one company at the time. After the Ministry of Defence (MINDEF) allowed Full-Time National Servicemen (NSFs) to join the 1 CDO BN in 1972, a second company was formed on 15 January 1973 from the first batch of conscripts enlisted in the Commandos. From July 1973 to January 1975, three more companies were created. In April 1975, 1 CDO BN was restructured and placed under the command of the 3rd Division (3 DIV). In 1977, 1 CDO BN and two Guards battalions came under the command of the 7th Singapore Infantry Brigade (7 SIB), and they received the state and regimental colours on 22 January 1977 from Minister for Defence Goh Keng Swee.
On 1 July 1980, 1 CDO BN was placed under the command of HQ Infantry. On 1 October that year, the School of Commando Training was established to take charge of 1 CDO BN. Brigadier-General Tan Chin Tiong, acting Chief of the General Staff, presented the 1 CDO BN with its current formation logo, which incorporates a winged stiletto denoting their airborne status, as well as the formation's motto, "For Honour and Glory". On 17 December 1984, the first company, which used to comprise only regulars, started taking in conscripts and training for long-range reconnaissance patrol and divisional disruptive operations. In December 1986, a new Commando tradition started when a stiletto (Fairbairn–Sykes fighting knife) was presented to every Commando of the second company during the ceremony when they received their red berets. Since then, every Commando has received a stiletto after completing two years of service in the battalion.
In 1989, HQ Commandos was established and it received its state and formation colours from President Wee Kim Wee on 20 October 1991. On 27 January 1994, Lieutenant-General Ng Jui Ping, Chief of Defence Force, officially opened Hendon Camp, which has since been the base of the Commando formation. Since 1992, the 1 CDO BN has organised an annual Commando Skills-at-Arms Meet, involving the Commandos competing in various skills such as marksmanship, demolition and completion of the standard obstacle course in full battle order.
In 2005, a sixth company was formed in the 1 CDO BN. It was reported that some Commandos had been deployed to the War in Afghanistan as part of the SAF's Operation Blue Ridge between 2007 and 2013.
Selection and training
The selection process for Commandos is stringent. Potential candidates are screened during the pre-National Service check-up before they enlist in the Singapore Armed Forces (SAF). Shortlisted candidates undergo further tests, security clearance checks, among other things, as well as a panel interview, before they are directly enlisted into one of the 1st Commando Battalion's companies.
Basic Military Training
All newly enlisted recruits undergo Basic Military Training (BMT) at the Commando Training Institute in Pasir Ris Camp. Upon completing BMT, they proceed for vocational training in specific roles, such as signaller, combat medic, weapons specialist, sniper, small boat operator, and demolition expert. Outstanding trainees who have demonstrated leadership potential may be sent for further training to be specialists or officers.
Basic Airborne Course
All trainees need to pass the Basic Airborne Course conducted by the Parachute Training Wing to earn the parachutist badge. After completing the basic airborne course, trainees undergo company-level training at Hendon Camp and an overseas training course in Brunei. To mark the end of nine months of training, they go for a route march before attending a ceremony in Hendon Camp to receive their red berets. The Commandos will continue training extensively in battalion-level operations, rappelling, fast-roping, small boat operations, and other advanced tactics.
Commando reservists are routinely called up for in-camp training after completing their full-time national service and are required to achieve standards higher than their non-Commando counterparts when they take the Individual Physical Proficiency Test (IPPT) every year.
School of Commandos
The School of Commandos has two training wings: the Commando Training Wing which conducts the "Singapore Armed Forces Ranger Course" (SAF RC) and the Parachute Training Wing which conducts the "Basic Airborne Course" (BAC).
The Commando Training Wing, established in 1974, conducts the Commando Section Leaders' Course, the Commando Small Boat Operators' Course, the Commando Officer Conversion Course, and the Singapore Armed Forces Ranger Course. The Commando Section Leaders' Course trains selected Commandos to become specialists, serving as section leaders. The best performing trainees are selected to undergo further training at the Officer Cadet School (OCS) at the SAFTI Military Institute. After they are commissioned, they return to the Commando Training Wing to attend the Commando Officer Conversion Course to be trained as platoon commanders.
Singapore Armed Forces Ranger Course (SAF RC), 65 day long, is toughest small unit leadership course with intense combat leadership training focused on the small-unit-tactics. First conducted in 1978, it is now conducted annually at Pasir Ris Camp with a limited number of slots open for application to not only Commandos, but also eligible regulars from other formations. Commando regulars have to enrol in the course and, upon completion of the course, they may be recommended to attend the United States Army's Ranger School.
Basic Airborne Course (BAC) covers the static line jumps. The Parachute Training Wing was established in 1974 as the Parachute Training School and started out with instructors trained in the United States and New Zealand. It completed training the first batch of Commandos on 19 October 1974 and subsequently started taking in non-Commando trainees as well. It conducts the Basic Airborne Course for about 120 to 160 trainees per class, as well as more advanced courses such as the Parachute Jump Instructor Course and the Military Free Fall Course.
Known Operations
Laju ferry hijacking
On 1 January 1974, four terrorists from the Popular Front for the Liberation of Palestine and Japanese Red Army attacked an oil refinery on Pulau Bukom and hijacked the ferry Laju and took five hostages. After negotiations with the Singapore Government, the terrorists freed the hostages on 8 February 1974 and boarded a flight to Kuwait. They were escorted by 13 men, of which four were Commandos.
Operation Thunderstorm
On 8 May 1975, the Commandos and the Navy stormed several vessels carrying Vietnamese refugees intruding into Singapore waters. They kept watch on the refugees and the crews until they were resupplied and escorted out of Singapore about two days later.
Operation Thunderbolt
On 26 March 1991, Singapore Airlines Flight 117 was hijacked by four Pakistani militants, who took all 129 people on board hostage. When the plane landed at Changi Airport, an unknown number of Commandos from the Special Operations Force (SOF) stormed the plane, killed the four hijackers and freed the hostages within five minutes. The Commandos were awarded the Medal of Valour for their achievement.
United Nations Transitional Authority in Cambodia
Commandos were deployed as peacekeepers alongside Super Puma helicopters.
Operation Blue Heron
Commandos were deployed as peacekeepers to East Timor from May 2001 to November 2002 while having small arms.
Operation Blue Orchid
Commandos deployed to Iraq from 2002 to 2008 to protect Singaporean Air Force aircraft and crew providing humanitarian relief and transporting essential supplies.
Operation Flying Eagle
Commandos were deployed in Aceh to ensure safety of SAF forces providing humanitarian relief.
Operation Blue Ridge
Commandos were deployed alongside regular SAF forces from 2007 to 2013 for protection and support operations.
Accidents and controversies
The Commandos have won the Singapore Armed Forces' annual Best Combat Unit competition many times since 1969. However, in 2003, 1 CDO BN was barred from the competition after it was found guilty of doctoring score-keeping records and fitness test results.
Serious accidents during training are rare and were hardly, or probably never, publicised in the media until 2003, when the Singapore Armed Forces' standards of safety in training came under increased scrutiny following the deaths of some servicemen during training.
On 21 August 2003, a Guardsman, Second Sergeant Hu Enhuai, died during a combat survival training course conducted by the Commandos. Four Commandos were charged in court a year later for carrying out the "dunking" procedure deemed inappropriate for training purposes. On 3 September 2003, another Guardsman, Second Sergeant Rajagopal Thirukumaran, died after a run during the selection process for the Ranger Course conducted by the Commando Training Wing.
On 15 June 2005, Second Sergeant Ong Jia Hui, a member of the Maritime Counter-Terrorism Group, drowned during training at Changi Naval Base. On 13 July 2005, First Sergeant Shiva s/o Mohan fell from 20 metres above the ground while rappelling from a helicopter and was pronounced dead in hospital about two hours later.
On 20 June 2006, Lieutenant Lionel Lin died after encountering difficulties while training at the swimming pool in Hendon Camp.
On 13 March 2010, First Sergeant Woo Teng Hai was accidentally shot by a villager during overseas training in Thailand. He was flown back to Singapore on the same day and was discharged from hospital by the end of that month.
Equipment
The following is a list of equipment known to be used by the Commandos:
References
Works cited
1969 establishments in Singapore
Formations of the Singapore Army
Special forces of Singapore
Commando units and formations |
Perfluorooctanesulfonamide (PFOSA) is a synthetic organofluorine compound. It is a fluorocarbon derivative and a perfluorinated compound, having an eight-carbon chain and a terminal sulfonamide functional group. PFOSA, a persistent organic pollutant, was an ingredient in 3M's former Scotchgard formulation from 1956 until 2003, and the compound was used to repel grease and water in food packaging along with other consumer applications. It breaks down to form perfluorooctane sulfonate (PFOS). The perfluorooctanesulfonyl fluoride-based chemistry that was used to make sulfonamides like PFOSA was phased out by 3M in the United States (US) during 2000–2002 but it has grown in China by other producers.
PFOSA can be synthesized from perfluorooctanesulfonyl halides by reaction with liquid ammonia or by a two step reaction via an azide followed by reduction with Zn and HCl. PFOSA is also a metabolic by-product of N-alkylated perfluorooctanesulfonamides. For example, N-ethyl perfluorooctanesulfonamidoethanol (N-EtFOSE), which was primarily used on paper,
and N-methyl perfluorooctanesulfonamidoethanol (N-MeFOSE), which was primarily used on carpets and textiles, both metabolize via acetates to PFOSA.
In addition, PFOSA is thought to be the biologically active form of the insecticide Sulfluramid (N-ethyl perfluorooctanesulfonamide)
as it is an extremely potent uncoupler of oxidative phosphorylation
with an IC50 of about 1 micromolar (≈500 nanograms per milliliter or parts per billion). PFOSA was the most toxic perfluorinated compound in a study with PC12 cells. Concentrations ranged from 10 to 250 micromolar in the study (or 5000 to 125,000 parts per billion).
Wildlife biomonitoring studies have found the highest level of PFOSA in the liver of common dolphin (Mediterranean Sea, Italy) with a concentration of 878 parts per billion; the liver of mink from Illinois, US, contained 590 parts per billion. In fish, the highest levels detected were in the liver of Norway Pike (91 parts per billion) and homogenates of slimy sculpin (150 parts per billion) from Lake Ontario. Differences in biotransformation across species could explain some of its presence. In humans, PFOSA has been detected in sub- to low-parts per billion levels; for example, in 1999–2000 US serum samples, the 95th percentile (or value where only 5% of the population was higher) was 1.4 parts per billion while in 2003–2004 the 95th percentile fell to 0.2 parts per billion. However, whole-blood concentrations are about five times higher than those in blood plasma or serum.
See also
Fluorosurfactant
Ionophore
References
External links
Perfluorinated Alkylated Substances (PFAS) in the European Nordic Environment
Perfluorinated compounds
Sulfonamides |
July 15 - Eastern Orthodox liturgical calendar - July 17
All fixed commemorations below are celebrated on July 29 by Old Calendar.
For July 16th, Orthodox Churches on the Old Calendar commemorate the Saints listed on July 3.
Saints
Saint Kyriakos the Executioner (Cyriacus), who had beheaded the martyr Antiochus of Sulcis, then converted to Christ and was beheaded (c. 110) (see also: December 13)
Martyr Faustus, by crucifixion, under Decius (c. 249-251)
Martyrs Paul and his two sisters Chionia (Thea) and Alevtina (Valentina) at Caesarea Palaestina (308) (see also: July 18)
Hieromartyr Athenogenes, Bishop of Heracleopolis, and his ten disciples (c. 311)
Martyr Athenogenes, by fire.
Martyr Antiochus of Sebaste, Physician (4th century)
15,000 Martyrs of Pisidia, who believed in Christ through Saint Marina, by the sword.
Many Holy Women Martyred by the sword.
Saint Anastasius I, Bishop of Thessaloniki, a father of the Fourth Ecumenical Council (via his representative) (451)
Saint Auxitheus (or Eudoxius), Bishop of Thessaloniki, one of the great Fathers of the Fourth Ecumenical Council (458)
Pre-Schism Western saints
Saint Domnio, a martyr in Bergamo in Italy under Diocletian (c. 295)
Saint Valentine of Trier, Bishop of Trier in Germany (or more probably Tongres in Belgium), under Diocletian (c. 305)
Virgin-martyr Julia of Carthage, by crucifixion, at Corsica (c. 440)
Martyr Helier of Jersey (6th century)
Saint Reineldis (Raineldis, Reinaldes) and Companions, martyred by the Huns (c. 680)
Saint Generosus, Abbot of Saint-Jouin-de-Marnes in Poitou in France (c. 682)
Saint Ténénan, Bishop of Léon (7th century)
Saint Vitalian of Capua, Bishop of Capua in Italy (7th century)
Saint Vitalian of Osimo, Bishop of Osimo in Italy (776)
Martyr Sisenandus Córdoba, a Deacon in the church of St Acisclus in Córdoba in Spain, beheaded under Abderrahman II (851)
Saint Irmengard (Irmgard of Chiemsee), Abbess of Buchau and then of Chiemsee in Germany (866)
Post-Schism Orthodox saints
Saint John of Vishnya and Mt. Athos, activist against Uniatism (c. 1630)
New Martyr John of Turnovo (1822)
Saint Theodotus, monk of Glinsk Hermitage (1859)
New martyrs and confessors
New Hieromartyrs Nicholas of Tarsus (1917) and his son Habib of Damascus (1948)
New Hieromartyrs Seraphim, Theognostus, and others of Alma-Ata (1921)
Venerable Schema-Abbess Magdalena (Dosmanova) of New Tikhvin Convent in Siberia (1934)
New Confessor Matrona Belyakova, Fool-for-Christ, of Anemnyasevo (1936)
New Hieromartyrs Jacob (Maskaev), Archbishop of Barnaul, and Priests Peter Gavrilov and John Mozhirin, and with them Monk-martyr Theodore (Nikitin) and Martyr John (1937)
New Hieromartyr Ardalion (Ponamarev), Archimandrite, of Kasli (Chelyabinsk) (1938)
Other commemorations
Icon of the Mother of God of Chirsk-Pskov (1420)
Icon gallery
Notes
References
Sources
July 16/July 29. Orthodox Calendar (PRAVOSLAVIE.RU).
July 29 / July 16. HOLY TRINITY RUSSIAN ORTHODOX CHURCH (A parish of the Patriarchate of Moscow).
July 16. OCA - The Lives of the Saints.
July 16. The Year of Our Salvation - Holy Transfiguration Monastery, Brookline, Massachusetts.
The Autonomous Orthodox Metropolia of Western Europe and the Americas (ROCOR). St. Hilarion Calendar of Saints for the year of our Lord 2004. St. Hilarion Press (Austin, TX). p. 52.
The Sixteenth Day of the Month of July. Orthodoxy in China.
July 16. Latin Saints of the Orthodox Patriarchate of Rome.
The Roman Martyrology. Transl. by the Archbishop of Baltimore. Last Edition, According to the Copy Printed at Rome in 1914. Revised Edition, with the Imprimatur of His Eminence Cardinal Gibbons. Baltimore: John Murphy Company, 1916. p. 209.
Rev. Richard Stanton. A Menology of England and Wales, or, Brief Memorials of the Ancient British and English Saints Arranged According to the Calendar, Together with the Martyrs of the 16th and 17th Centuries. London: Burns & Oates, 1892. pp. 341–344.
Greek Sources
Great Synaxaristes: 16 ΙΟΥΛΙΟΥ. ΜΕΓΑΣ ΣΥΝΑΞΑΡΙΣΤΗΣ.
Συναξαριστής. 16 Ιουλίου. ECCLESIA.GR. (H ΕΚΚΛΗΣΙΑ ΤΗΣ ΕΛΛΑΔΟΣ).
16/07/. Ορθόδοξος Συναξαριστής.
Russian Sources
29 июля (16 июля). Православная Энциклопедия под редакцией Патриарха Московского и всея Руси Кирилла (электронная версия). (Orthodox Encyclopedia - Pravenc.ru).
16 июля по старому стилю / 29 июля по новому стилю. СПЖ "Союз православных журналистов". .
16 июля (ст.ст.) 29 июля (нов. ст.). Русская Православная Церковь Отдел внешних церковных связей. (DECR).
July in the Eastern Orthodox calendar |
Bell Bottom Country is the fourth studio album by American country music singer-songwriter Lainey Wilson. Her fourth album overall, it follows 2021's Sayin' What I'm Thinkin' and was released on October 28, 2022, by BBR Music Group. It was preceded by the single "Heart Like a Truck". Sonically, the album combines country with elements of '70s rock, funk and soul.
It won Album of the Year at the 58th Academy of Country Music Awards.
Background
Wilson co-wrote all of the album's sixteen tracks, with the exception of a cover of "What's Up?", originally recorded by 4 Non Blondes, which Wilson had been performing during her live shows. Sonically, the album has been described as "country at its core", with elements of '70s rock, funk and soul.
The album was announced on August 16, 2022, alongside the promotional single "Watermelon Moonshine". In an interview with Taste Of Country, Wilson explained of the album's title "Sure, I love a good pair of bell bottoms, but Bell Bottom Country to me has always been about the flare and what makes someone unique—I have really embraced mine, and I hope y'all can hear that across this project". Of the short time frame between her debut and sophomore major label albums, Wilson stated ""I've lived quite a bit of life in the past few years, and I have a lot more to say." The song "Those Boots (Deddy's Song)" is a tribute to Wilson's father, who suffered a medical emergency that caused her to cancel a number of live shows.
"Live Off", the album's second promotional single, was released on September 23, 2022, following an acoustic performance of the track that was posted to her Instagram a week earlier. Describing the song, Wilson expressed "this one's one of my favorites off of my new album. 'Live Off' is all about the things that make my world go 'round... my backroad hometown, my dog, my family, my friends, and music, of course."
Upon making her acting debut on Yellowstone in November 2022, Wilson released two new songs—"Smell Like Smoke" and "New Friends"—that were tacked onto the streaming and digital versions of Bell Bottom Country.
Track listing
Personnel
Ashland Craft – background vocals
Fred Eltringham – drums, percussion, timpani, claps
Aslan Freeman – acoustic guitar, electric guitar, claps
Derek George – background vocals
Josh Groppel – background vocals, claps
Jason Hall – background vocals, gang vocals, claps
Joanna Janét – background vocals
Jay Joyce – B-3 organ, bass guitar, acoustic guitar, dobro, drums, electric guitar, ganjo, keyboards, percussion, programming, background vocals, gang vocals, claps
Billy Justineau – B-3 organ, keyboards, Moog, piano, pump organ
Joel King – bass guitar, claps
Jimmy Mansfield – claps
Rob McNelley – acoustic guitar, dobro, electric guitar, sitar, claps
Brad Pemberton – drums
Molly Tuttle – acoustic guitar, background vocals
Kasey Tyndall – background vocals
Lainey Wilson – lead vocals, background vocals, claps
Charlie Worsham – acoustic guitar, banjo, electric guitar, mandolin
Charts
References
2022 albums
Albums produced by Jay Joyce
BBR Music Group albums
Lainey Wilson albums |
David Cohen is a cellist from Belgium who made his solo debut with the Belgium National Orchestra when he was 9.
Cohen was born in Tournai, Belgium and studied at the Yehudi Menuhin School and then at the Guildhall School of Music & Drama where he studied under Oleg Kogan. He has won more than 25 prizes in International Cello Competitions including Gold Medal of the G.S.M.D. in London, the Geneva International Cello Competition, J.S.Bach International Competition, and many others.
In March of 2001, he was appointed as the Principal Cello of the Philharmonic Orchestra of Belgium, becoming the youngest Principal Cello in history. During the 2002-2003 music season, he was nominated as the ECHO "Rising Star" by the Royal Philharmonic Society of Belgium and the Concertgebouw.
He is the Artistic Director of the Melchoir Ensemble and the founder and Artistic Director of the chamber music festival, “Les Sons Intensifs” in Lessines, in Belgium. He is also a professor at the Conservatoire Royal de Musique de Mons in Belgium, a position he has held since 2000, and at the Trinity Laban in London, England.
In December 2021 he was appointed Principal Cello of the London Symphony Orchestra.
References
External links
official website
Belgian cellists
Year of birth missing (living people)
Living people |
```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);
});
});
``` |
12th Five Year Plan of the Government of India (2012–17) was India's last Five Year Plan.
With the deteriorating global situation, the Deputy Chairman of the Planning Commission Mr Montek Singh Ahluwalia has said that achieving an average growth rate of 8 per cent in the next five years is not possible. The final growth target has been set at 8% by the endorsement of plan at the National Development Council (NDC) meeting held in New Delhi.
"It is not possible to think of an average of 9 per cent (in 12th Plan). I think somewhere between 8 and 8.5 per cent is feasible", Mr Ahluwalia said on the sidelines of a conference of State Planning Boards and departments. The approached paper for the 12th Plan, approved last year, talked about an annual average growth rate of 9 per cent.
"When I say feasible...that will require major effort. If you don't do that, there is no God given right to grow at 8 per cent. I think given that the world economy deteriorated very sharply over the last year...the growth rate in the first year of the 12th Plan (2012-13) is 6.5 to 7 per cent."
He also indicated that soon he would share his views with other members of the commission to choose a final number (economic growth target) to put before the country's NDC for its approval.
Though the 12th Plan has taken off, it is yet to be formally approved. The Planning Commission set a deadline of September for taking the approval of the NDC. The council is expected to meet after July, subject to the convenience of the Prime Minister. It is mainly focused on health. The status of the 12th Plan is in question due to the dissolution of the Planning Commission.
Poverty
The government intends to reduce poverty by 10 per cent during the 12th Five-Year Plan. Mr Ahluwalia said, "We aim to reduce poverty estimates by 2 per cent annually on a sustainable basis during the Plan period".
According to the Tendulkar methodology, the percentage of population below the poverty line was 29.8 per cent at the end of 2009–10. This number includes 33.8 per cent in the rural areas and 20.9 per cent in the urban areas.
Earlier, addressing a conference of State Planning Boards and Planning departments, he said the rate of decline in poverty doubled during the 11th Plan. The commission had said, while using the Tendulkar poverty line, the rate of reduction in the five years between 2004–05 and 2009–10, was about 1.5 percentage points each year, which was twice that when compared to the period between 1993–95 to 2004–05.
See also
Five-Year Plans of India
References
Five-year plans of India
2012 in India
2010s in India |
Grey House Publishing is an American publisher of directories and other reference books in business, health, education and other areas.
Its corporate headquarters are in Amenia, New York. It also has a Canadian office in Toronto.
In 2013, Grey House Publishing became the licensed publisher of the print editions of the Salem Press product line, in an agreement with EBSCO Publishing. Grey House Publishing publishes print editions of the H.W. Wilson product line.
References
External links
Salem Press
Book publishing companies based in New York (state) |
Dicranopteris linearis is a common species of fern known by many common names, including Old World forked fern, uluhe (Hawaiian), and dilim (Filipino). It is one of the most widely distributed ferns of the wet Old World tropics and adjacent regions, including Polynesia and the Pacific. In parts of the New World tropics its niche is filled by its relative, Dicranopteris pectinatus.
This rhizomatous fern spreads via cloning, spreading along the ground and climbing on other vegetation, often forming thickets 3 metres deep or more. The stem grows from the rhizome, branches at a 45° angle, and forms fronds that continue to bud and branch. In this way the growth can continue for a long distance as the plant forms a mat, grows over itself in layers, and spreads. When climbing, the leafy branches can reach over 6 metres long and can climb 10 high when supported by a tree. The ultimate segments of the leaves are linear in shape, up to 7 centimeters long by a few millimeters wide. The undersides are hairy and sometimes waxy. It can also reproduce via spores.
The fern grows easily on poorly drained, nutrient-poor soils and in disturbed habitats and steep slopes. It does not tolerate shade, so once established it will eventually be shaded out by taller vegetation unless it climbs above it. It may suppress the growth of new stands of trees, especially when it becomes a dense thicket.
The fern is a keystone species in Hawaiian ecosystems, and dominates many areas in Hawaiian rainforests. It occurs on all the main Hawaiian islands. As a pioneer species in ecological succession, it can colonize bare sites such as lava flows, talus, and abandoned roads. When the fern grows onto a new site it produces layers of stems and leaves repeatedly until there is a network of vegetation. The leaves die and the stems are very slow to decompose, so the network persists. The network then fills with organic forest detritus, forming a litter layer which can be a meter thick. The network is penetrated by the fern's rhizomes and roots, such that the fern serves as its own substrate. Where the fern is eliminated, invasive species of plants can move in, so "one important function" of the fern is to prevent these plants from encroaching on the rainforest. The fern may have allelopathic effects, preventing the growth of other plants. Also, the fern is a very productive member of the forest ecosystem; despite being a relatively small amount of the biomass in the forest it accounts for over half of the primary productivity in some areas.
This plant is used medicinally to treat intestinal worms in Indochina, skin ulcers and wounds in New Guinea, and fever in Malaysia. In vitro samples of the fern kill bacteria.
The Diliman district in Quezon City in the Philippines' National Capital Region derived its name from Dicranopteris linearis, locally known as "Dilim" (the suffix "-an" indicates a place where something, in this case the fern, is common). As such, it is also the origin of the name of the University of the Philippines Diliman campus.
The fiddleheads of the fern are used in floral arrangements.
References
External links
USDA Plants Profile
Gleicheniales
Plants described in 1907
Paleotropical flora
Taxa named by Nicolaas Laurens Burman |
The Fulton House is a prominent Georgian-influenced stone tavern built c. 1793 and located on Lincoln Way East in McConnellsburg, Pennsylvania, this inn once boarded governors and four presidents and was originally known as The Union Hotel. The building is now restored following a devastating 1944 fire that destroyed much of the 18th century interior of the original structure. The 1820 east end addition was not affected by the fire.
The house was listed on the National Register of Historic Places in 1977. It is located in the McConnellsburg Historic District.
The east end portion of the building houses the Fulton County Historical Society Museum, which is open to the public on special occasions.
References
External links
Fulton County Historical Society
Houses on the National Register of Historic Places in Pennsylvania
Houses completed in 1793
Hotels in Pennsylvania
Houses in Fulton County, Pennsylvania
Museums in Fulton County, Pennsylvania
History museums in Pennsylvania
Historic district contributing properties in Pennsylvania
National Register of Historic Places in Fulton County, Pennsylvania |
Isadore Borsuk (November 4, 1927 – September 19, 2016), better known as Bobby Breen, was a Canadian-born American actor and singer. He was a popular male child singer during the 1930s and reached major popularity with film and radio appearances.
Early life
Breen was born Isadore Borsuk on November 4, 1927 (according to some sources he was born in 1928) in Montréal, Canada, the son of Hyman (Chaim) and Rebecca Borsuk. His parents were poor Jewish immigrants from present-day Ukraine. They, along with Breen's three older siblings (Gertrude, Sally, and Michael), migrated from Kiev to Montreal, Quebec, Canada, in 1927. Soon after, they relocated to Toronto. His singing talent as a boy soprano was discovered at age three by his sister Sally, herself an aspiring musical student who was several years his senior. While their parents did not show any particular interest, Sally decided to help him achieve stardom. With the assistance from her music teacher, Breen got a chance to perform in front of an audience in a nightclub. Soon, he began winning prizes in theatre competitions, providing significant amount of income to the poor family. Due to his gained popularity, the two siblings decided to look for work and recognition in the United States. Financed by Sally, they traveled to Chicago by bus in 1934, where he began working with people such as Gloria Swanson and Milton Berle in local theater productions. Breen later relocated to New York City. The foreign-sounding last name of Borsuk had been anglicised to Breen prior to their arrival in the United States.
Child star at RKO
Breen went to Hollywood in 1935, where he received singing lessons from a vocal coach. Film producer Sol Lesser, who had discovered Jackie Coogan, signed Breen to RKO Radio Pictures. Around this time, he became a regular performer on Eddie Cantor's weekly radio show in 1936, where his talents as a boy soprano were appreciated by the listeners. Prior to the release of his first motion picture, Let's Sing Again, he was compared to other child stars of the era such as Freddie Bartholomew and Shirley Temple. In terms of his vocalist abilities, he was described as a combination of Allan Jones, Nelson Eddy and Al Jolson. His debut saw him being top-billed with Henry Armetta as his co-star. He sang La donna è mobile, among other songs, in the movie. He also signed a contract with Decca Records and had moderate success with a series of 78 rpm records in the late 1930s. The title song from Let's Sing Again (Decca 798) would become a national hit, charting at #14 in the summer of 1936. By the 21st century, Breen was the only male artist with a pre-World War II hit record still living (Rose Marie, who charted as an eight-year-old in 1932 with "Say That You Were Teasing Me", died in 2017, a year after Breen).
Satisfied with his debut for the studio, RKO signed a deal with him for three additional movies. He was cast in another musical later the same year called Rainbow on the River, co-starring May Robson and Alan Mowbray. He sang Ave Maria and the film's title song Rainbow on the River. Kurt Neumann, who had directed Breen in his first two pictures, worked with him for the last time in Make a Wish in 1937. His co-star was Basil Rathbone. In a 1938 article, he was referred to as one of the rare cases of child actors succeeding in an adult-dominated industry.
By the time he had completed filming Escape to Paradise in 1939, his voice was gradually changing due to puberty. As a result, he retired from the film industry, despite being originally contracted for two additional movies, and instead focused on his education at Beverly Hills High School. He described the sudden voice change in a 1977 article:
His popularity did not immediately wane during his hiatus, receiving mail from numerous fans across the United States and United Kingdom. He briefly returned to the screen in 1942 to appear as himself in Johnny Doughboy, starring Jane Withers. As an adult, he expressed skepticism about children working in the entertainment industry.
In the military
Breen enlisted in the infantry in the U.S. Army during World War II. He and fellow Hollywood actor Mickey Rooney were soon assigned to entertain the troops, despite him having retired from show business. Breen was hospitalized in France in 1945 towards the end of the war. For his war efforts, he was awarded the Bronze Star Medal.
Adult years
After his discharge from the U.S. Army, in 1946, he initially struggled to find work as he returned to show business. He did some theatre work as well as some radio appearances in New York during this period. Because of his voice having changed since becoming an adult, he took singing lessons to reinvent himself by adapting to a new tenor singing style.
Throughout the 1950s and 1960s, he worked as a singer in nightclubs and as a musical performer in stock theatre, later serving as a guest pianist for the NBC Symphony Orchestra on radio, and hosting a local TV show in New York. He also recorded briefly for the Motown label, singing on two singles and produced an unreleased album in 1964 called Better Late Than Never. Berry Gordy had hoped for Breen to become his first white contracted artist, but ultimately changed his mind because the singer did not suit the type of music Motown produced. In 1953, Breen appeared on ABC's reality show, The Comeback Story, to explain how his career nose-dived as he entered his teen years and how he fought to recover.
Since the 1970s, he and his wife Audrey had been working in Florida as entrepreneurs, booking agents and producers arranging musical shows performed by various entertainers at smaller, affordable venues. The business idea is called a "condominium circuit". In later years, it has focused on hiring aged stars of the past, including Debbie Reynolds, Mickey Rooney and Ann Blyth.
Personal life
In November 1948, he went missing while on a private flight from Waukesha, Wisconsin, to Hayward, Wisconsin. Several planes went searching for him for a day and a half before it was discovered that he had been staying at a hotel anonymously without telling anyone. He was fined 300 U.S. dollars.
Breen married fashion model Jocelyn Lesh on November 9, 1952. The couple had a son, Hunter Keith Breen, in 1954. Four years later, the marriage became unsustainable, with Jocelyn claiming that he had physically injured her. They went their separate ways, but the divorce was not finalized until February 1961. He married the president of the City of Hope National Medical Center, Audrey Howard, in around 1962.
He lived with his family in Tamarac, Florida, and worked as the owner/operator of Bobby Breen Enterprises, a local talent agency. Starting in 2002, he made occasional concert appearances.
His sister Sally died in 1999. That same year, he underwent bypass surgery due to blocked arteries in his heart.
Death
He died of natural causes in Pompano Beach, Florida, on September 19, 2016, three days following the death of his wife.
Awards
On February 12, 2012, he was the recipient of the "Forest Trace Honorary Octogenarian: Turn Back Time" award.
Filmography
In popular culture
Breen was one of the people represented on the cover of The Beatles' album Sgt. Pepper's Lonely Hearts Club Band. He found his inclusion on the album cover surprising.
Lenny Bruce mentioned Breen in his comedy routine "The Palladium".
References
Further reading
Holmstrom, John (1996). The Moving Picture Boy: An International Encyclopaedia from 1895 to 1995. Norwich, Michael Russell, pp. 153–154.
Dye, David (1988). Child and Youth Actors: Filmography of Their Entire Careers, 1914-1985. Jefferson, NC: McFarland & Co., pp. 25–26.
External links
Bobby Breen at the American Film Institute
1927 births
2016 deaths
Boy sopranos
American male child actors
Apex Records artists
Canadian emigrants to the United States
Canadian people of Ukrainian-Jewish descent
Jewish American male actors
Jewish Canadian male actors
Jewish Canadian musicians
National Recording Corporation artists
American people of Ukrainian-Jewish descent
Male actors from Montreal
Musicians from Montreal
People from Tamarac, Florida
21st-century American Jews
Decca Records artists |
The 2017 MAAC women's soccer tournament was the postseason women's soccer tournament for the Metro Atlantic Athletic Conference held from October 28 through November 1, 2017. The ten-match tournament took place at ESPN Wide World of Sports Complex in Lake Buena Vista, Florida. The eleven-team single-elimination tournament consisted of four rounds based on seeding from regular season conference play. The Monmouth Hawks were the defending champions and successfully defended their title.
Bracket
Schedule
First Round
Quarterfinals
Semifinals
Final
Statistics
Goalscorers
3 Goals
Madie Gibson - Monmouth
Erica Modena - Manhattan
2 Goals
Annie Doerr - Manhattan
Nadya Gill - Quinnipiac
Arianna Montefusco - Manhattan
Lexi Palladino - Monmouth
1 Goal
Nicole Aylmer - Manhattan
Madi Belvito - Siena
Madison Borowiec - Quinnipiac
Alli DeLuca - Monmouth
Marissa Dundas - Iona
Lindsey Healy - Manhattan
Jessica Johnson - Monmouth
Alex Madden - Fairfield
Meghan McCabe - Rider
Jazlyn Moya - Monmouth
Valeria Pascuet - Rider
Al Pelletier - Quinnipiac
Hannah Reiter - Quinnipiac
Rachelle Ross - Monmouth
Cameron Santers - Rider
Emma Saul - Manhattan
Ellie Smith - Rider
Brooke Trotta - St. Peter's
Madison Vasquez - Siena
See also
2017 MAAC Men's Soccer Tournament
References
MAAC women's soccer tournament |
Wilton Town Hall is located at 42 Main Street in downtown Wilton, New Hampshire. Built in 1886, the red brick building is a prominent local example of civic Queen Anne style architecture. In a common style of the day, it includes a theater space which was used for dramatic presentations, silent films, and vaudeville productions, before being converted to its present use as a movie theater. The building was listed on the National Register of Historic Places in 2009.
Description and history
Wilton Town Hall occupies a prominent setting in the center of the town, on the east side of Main Street. It occupies a steeply sloping triangular lot bounded on the north by Maple Street. Its basement side is completely exposed on the Main Street side, and is composed of rustically cut Milford granite. The rest of the building is built out of load-bearing red brick, and is covered by a slate roof with a complex roofline. Windows in the upper levels are generally set in rounded-arch openings, and the roof is punctuated by several brick chimneys and a square clock tower. The clock is original to the building, made by George Milton Stevens of Boston, Massachusetts. The interior of the building is divided into civic offices and a theater. Its finishes are largely original, including fine woodwork on the main staircases, floors, and wainscoting.
The town hall was completed in 1886, and has housed town offices since then. It was the first building in the town dedicated to housing all of the town functions, including town clerk, police, and selectmen's offices. It was built in the aftermath of fires in 1874 and 1881 that destroyed much of what is now downtown Wilton. Its construction further cemented the importance of Wilton's East Village as the town's main village center. The hall was designed by Merrill & Cutler of Lowell, Massachusetts, and its design was featured in an architectural publication in 1884.
See also
National Register of Historic Places listings in Hillsborough County, New Hampshire
References
External links
Wilton Town Hall Theatre
Town of Wilton
City and town halls on the National Register of Historic Places in New Hampshire
Queen Anne architecture in New Hampshire
Buildings and structures completed in 1884
Buildings and structures in Hillsborough County, New Hampshire
City and town halls in New Hampshire
Cinemas and movie theaters in New Hampshire
National Register of Historic Places in Hillsborough County, New Hampshire
Wilton, New Hampshire |
Bill Clifton (July 6, 1916 – February 26, 1967) was a Canadian jazz pianist based in New York City for almost three decades. He played with many of the name bands of the swing era and accompanied some of the music industry's most noted vocalists He is remembered today as an early and important influence on the great jazz pianist Bill Evans.
Career
Clifton was born in Toronto, Ontario. He began his piano studies at age seven with Toronto's Royal Conservatory Of Music. Bill was introduced to the music of Fletcher Henderson and Duke Ellington in his high school years and began to ponder a career as a professional musician. After graduating, he became the pianist in The Cliff McKay Band, a Canadian group that played a few "hot" arrangements amongst its stylistically broad program. Bill Clifton entered New York City in 1939, finding immediate employment with The Paul Whiteman Orchestra. Stints with: Benny Goodman, Woody Herman, Ray Noble, Bud Freeman, Abe Lyman and others followed. Bill also performed and (or) recorded with some of the most beloved voices in American music history including: Bing Crosby, Frank Sinatra, Cliff "Ukulele Ike" Edwards (the voice of Disney's Jiminy Cricket) and Ilene Woods (the voice of Disney's Cinderella).
He made many appearances on radio and television during his employment as a studio musician for several years at both the NBC and CBS networks. He was a regular guest on the "Piano Playhouse" radio program during its lengthy run on NBC from the late 1940s to early 1950s. This was a popular weekly broadcast with an international audience that featured the most important pianist in the jazz and classical fields. His work in television included membership in the Tony Mottola Trio. This combo pioneered live music accompaniment for early television and was led by the brilliant guitarist, Tony Mottola. Bill Clifton also appeared in a number of films including "The Laugh Maker" (1953). starring Jackie Gleason and Art Carney. For several years, beginning in the late 1940s, Clifton alternated solo shows with the great pianist, Cy Walter (the Park Avenue Art Tatum) at New York's famed Drake Room. This elegant night spot housed in The Drake Hotel was a nexus at the time for some of the biggest names in the entertainment world.
In 1950, Bill Clifton recorded one of the earliest long-playing records as part of the Columbia Records "Piano Moods" series. Later work included an album featuring Clifton's talents as an arranger and conductor as well as pianist for the Ilene Woods LP "It's Late".
Clifton died while performing on board the S.S. Argentina.
Selected discography
Paul Whiteman Orchestra "Album Of Manhattan" Decca Records (1940)
Various Artists "Midnight At V-Disc" Pumpkin Productions (1944)
Frank Sinatra "The Voice Of Frank Sinatra" Columbia Records (1946)
Jerry Jerome "Something Old, Something New" and "Something Borrowed, Something Blue" Arbors Jazz Records (mid 1940s - late 1940s)
Bill Clifton "Piano Moods" Columbia Records (1950)
Ilene Woods "It's Late" Jubilee Records (1957)
Bill Clifton "Red Shadows: The Keystone Solo Piano Transcriptions c. 1947" Cliftone Records (released May, 2014)
References
External links
Official Website
Bill Clifton and his Modernist Moment - The Dartmouth Review
Remembering Canada Bill - article for Toronto Jazz Festival 2010
Duke, Bill Clifton Not Forgotten - Whole Note Magazine, Feb 2014
Bill Clifton and Bill Evans - Jazzwax, June 2, 2014
1916 births
1967 deaths
Canadian jazz pianists
Musicians from Toronto
Jazz musicians from New York City
20th-century American musicians
20th-century Canadian pianists
People who died at sea
Canadian expatriates in the United States |
Hong Sok-jung (), born in Seoul in 1941, is a North Korean writer.
He is the grandson of novelist Hong Myong-hui.
Sok-jung moved to North Korea with his family after the Second World War. He served in the Korean People's Navy, and obtained a degree in literature at Kim Il Sung University. His first published work was a short story, "Red Flower", in 1970. In 1979, he joined the Central Committee of North Korea's official literary organisation, the Joseon Writers' Alliance(Now under Korean Federation of Literature and Arts).
In 1993, he published his most successful work, Northeaster, an epic novel. In 2002, he published Hwang Jin-i (), a historical novel set in the sixteenth century, which depicts courtesan Hwang Jin-i's discovery of the people's starvation and encounters with corrupt officials. Hwang Jin-i was awarded South Korea's Manhae Literary Prize () in 2005 - the first time it had been awarded to a North Korean writer. An excerpt from the novel was translated into English and published by Words Without Borders (WWB) in Literature from the "Axis of Evil" in 2006.
See also
North Korean literature
Sources
Br. Anthony of Taizé, introductory remarks to the excerpt of Hwang Jin-i, in Literature from the "Axis of Evil" (a Words Without Borders anthology), , 2006, pp.99–101.
1941 births
North Korean novelists
Living people
Writers from Seoul
Kim Il Sung University alumni |
This is a list of senators from the state of Western Australia since Australian Federation in 1901.
List
References
Senators, Western Australia |
```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
}
``` |
The 2011 Donegal county football team season was the franchise's 107th season since the County Board's foundation in 1905. The team ended the season as Ulster champions after winning the 2011 Ulster Senior Football Championship. It was their sixth title and a first since Brian McEniff led the team to Sam MCMXCII.
Ahead of the new season, Jim McGuinness was appointed as the team's manager, bringing to an end the era of John Joe Doherty. The arrival of McGuinness brought the first appearance of a soon-to-be revolutionary tactic The System.
Panel
New manager Jim McGuinness included Kevin Cassidy (who intended to retire at the end of the previous season) and Michael Hegarty (who was not involved in the previous season) in his squad for the 2011 Dr McKenna Cup. Also named were several of the under-21s, including Peter Boyle, Thomas McKinley, Daniel McLaughlin, Kevin Mulhern and Antoin McFadden, and Johnny Bonner and Marty Boyle, stars of Naomh Conaill's run to the 2010 Ulster club football final. Johnny Bonner did not play in any of the league games.
McKenna Cup panel
Paul Durcan, Peter Boyle, Karl Lacey, Neil McGee, Barry Dunnion, Johnny Bonner, Tomas McKinley, Edward Kelly, Neil Gallagher, Rory Kavanagh, Christopher Murrin, Dermot Molloy, Michael Hegarty, Colm McFadden, Daniel McLaughlin, Marty Boyle, David Walsh, Adrian Hanlon, Michael Murphy, Paddy McGrath, Kevin Mulhern, Leo McLoone, Ryan Bradley, Kevin Cassidy, Frank McGlynn, Antoin McFadden.
Details
Christy Toye (St Michael's)
Championship panel
Competitions
League
Opener: win vs Sligo
Ulster Senior Football Championship
All-Ireland Senior Football Championship
Kit
Management team
Manager: Jim McGuinness
Selectors: Rory Gallagher, Maxi Curran
Goalkeeping coach: Pat Shovelin
Strength and conditioning coach: Adam Speer
Surgical consultant: Kevin Moran
Team doctor: Charlie McManus
Team physio: Dermot Simpson
Physiotherapists: Charlie Molloy, Paul Coyle, Donal Reid, JD.
Awards
All Stars
Donegal achieved three All Stars.
County breakdown
Dublin = 6
Kerry = 4
Donegal = 3
Mayo = 1
Kildare = 1
References
Donegal county football team seasons |
The 19th Politburo Standing Committee, formally the Standing Committee of the Political Bureau of the 19th Central Committee of the Communist Party of China, was elected by the 1st Plenary Session of the 19th Central Committee on 25 October 2017, in the aftermath of the 19th National Congress of the Chinese Communist Party (CCP). It was preceded by the CCP's 18th Politburo Standing Committee and was succeeded by the 20th in October 2022.
Meetings
Composition
References
Notes
Bibliography
19th Politburo Standing Committee of the Chinese Communist Party
2017 establishments in China |
```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
``` |
Mino is a genus of mynas, birds in the starling family. These are the largest of the starlings and are found in tropical moist lowland forests in New Guinea and eastern neighboring islands.
Taxonomy
The members of the genus are:
The long-tailed myna was formerly considered a subspecies of the yellow-faced myna.
References
External links
Bird genera
Taxa named by René Lesson |
Paul Raffi Abrahamian is an American reality television personality and clothing designer, born in Tarzana, California. Abrahamian is best known for their appearances in the United States reality television show Big Brother and related spin-offs.
Early life and education
Abrahamian was born in Tarzana, Los Angeles, in the U.S. state of California. They are of Armenian and Russian descent. Abrahamian attended Pepperdine University and received a degree in philosophy.
Big Brother
From 2016 to 2018, Abrahamian appeared in five consecutive seasons of Big Brother, three times in the parent series and three times in spin-offs. Abrahamian is the first HouseGuest to have twice reached the final two of the competition without winning.
Abrahamian was first introduced as a new HouseGuest on Big Brother 18 on June 19, 2016. Throughout their game play, Abrahamian was nominated for eviction six times. However, on three of those occasions they were removed from the block via the Power of Veto, which they won three times. They also won Head of Household three times during the season, including the final HoH when they chose to take Nicole Franzel to the finale. After 99 days and losing in the final jury vote of 5–4, Abrahamian was crowned the season's runner-up and received a total of .
On June 28, 2017, Abrahamian returned to Big Brother in Big Brother 19 as a swap-in contestant on the first day, resulting from a temptation accepted by another HouseGuest. Abrahamian's return to the game was met with both positive and negative reviews from critics. Throughout the season Abrahamian was only nominated for eviction once which was immediately canceled via The Pendant of Protection. They were unanimously elected by their fellow HouseGuests to face Cody in the season's 'Battle Back'. During the season they won the title of Head of Household three times and were awarded the Power of Veto five times. They also won the first round of the final Head of Household competition but lost to Josh in the final round. After 92 days and losing in the final jury vote of 5–4 once again, Abrahamian was crowned the runner-up and received another prize of .
In October 18, 2016, it was announced that Abrahamian was set to return to the house in the subscription-streaming spin-off Big Brother: Over the Top, to host a Head of Household competition. Abrahamian returned to the house on October 21 to host the fourth Head of Household competition of the season. Abrahamian appeared in the series premiere of the Big Brother spin-off Celebrity Big Brother for a special appearance during the first Head of Household competition. On June 27, 2018, Abrahamian appeared in the audience for the premiere episode of Big Brother 20 as a "nod to the shows past". They appeared on Off the Block with Ross and Marissa, a Big Brother talk and aftershow, on August 24, 2018. Abrahamian appeared in the thirty-third episode of Big Brother 20 to celebrate the engagement of Nicole Franzel and Victor Arroyo.
Outside of Big Brother
On October 25, 2016, Abrahamian appeared on the CBS show The Bold & The Beautiful. On July 9, 2017, Abrahamian teamed up with former Big Brother contestant Da'Vonne Rogers in the series premiere of the CBS game show Candy Crush as part of a special premiere event featuring past players of Big Brother and Survivor.
Personal life
Abrahamian uses both 'they/them' and 'he/him' pronouns interchangeably.
Filmography
Notes
References
1993 births
American fashion designers
American people of Armenian descent
American people of Russian descent
Big Brother (American TV series) contestants
Living people
People from Tarzana, Los Angeles |
Mănăstirea Humorului () is a commune located in Suceava County, in the historical region of Bukovina, northeastern Romania. It is composed of three villages, namely: Mănăstirea Humorului, Pleșa, and Poiana Micului. The 16th century Humor Monastery is located in the commune.
Demographics
At the 2011 census, 79.3% of inhabitants were Romanians, 19.6% Poles, and 1% Germans (more specifically Bukovina Germans).
Slovaks settled in Poiana Micului in 1841–1842. Later, part of the community migrated to other areas of Bukovina. The Austrian census of 1890 recorded 50.9% of villagers as Polish speakers. The 1930 Romanian census found 45.3% were ethnic Poles. In 1936, a Slovak Catholic priest arrived from Czechoslovakia and began preaching in Slovak. From that point, some villagers began to identify as Slovak, while others insisted on their Polish identity. The Romanian authorities were drawn in, sending a Slovak schoolteacher, while the Polish Legation at Bucharest intervened on the side of the Polish villagers.
A survey of Slavic villagers taken in autumn 1937 found 67.1% declaring as Poles, and 32.9% as Slovaks. In 1942, the Catholic bishop of Iași estimated that half his parishioners there were Poles, half Slovaks. The 1948 census found 256 (67.9%) Polish speakers in Poiana Micului, and a total of 12 Czech and Slovak speakers in all of Câmpulung County.
Administration and local politics
Communal council
The commune's current local council has the following political composition, according to the results of the 2020 Romanian local elections:
Notes
References
Philippe Henri Blasen, ”Între poloni și slovaci: oscilarea națională în Poiana-Micului (1936–1942)”, in Anca Filipovici (ed.), Polonezii din România: repere identitare, pp. 133–74. Cluj-Napoca: Editura Institutului pentru Studierea Problemelor Minorităților Naționale, 2020,
Communes in Suceava County
Localities in Southern Bukovina
Polish communities in Romania |
The Nanjing Tongxi Monkey Kings () are a Chinese professional basketball team based in Nanjing, Jiangsu, which plays in the Southern Division of the Chinese Basketball Association (CBA). The club joined the league ahead of the 2014–15 CBA season as the Jiangsu Tongxi Monkey Kings, after spending its first seven campaigns at the lower levels of the country's basketball hierarchy. The team was renamed the Nanjing Tongxi Monkey Kings after the 2016–17 CBA season.
Roster
References
External links
Nanjing Tongxi Monkey Kings official website
Chinese Basketball Association teams
Sport in Nanjing
2007 establishments in China
Basketball teams established in 2007 |
```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;
}
``` |
Organoastatine chemistry describes the synthesis and properties of organoastatine compounds, chemical compounds containing a carbon to astatine chemical bond.
Astatine is extremely radioactive, with the longest-lived isotope (210At) having a half-life of only 8.1 hours. Consequently, organoastatine chemistry can only be studied by tracer techniques on extremely small quantities. The problems caused by radiation damage as well as difficulties in separation and identification are worse for organic astatine derivatives than for inorganic compounds. Most studies of organoastatine chemistry focus on 211At (half-life 7.21 hours), which is the subject of ongoing studies in nuclear medicine: it is better than 131I at destroying abnormal thyroid tissue.
Astatine-labelled iodine reagents have been used to synthesise RAt, RAtCl2, R2AtCl, and RAtO2 (R = phenyl or p-tolyl). Alkyl and aryl astatides are relatively stable and have been analysed at high temperatures (120 °C) with radio gas chromatography. Demercuration reactions have produced with good yields trace quantities of 211At-containing aromatic amino acids, steroids, and imidazols, among other compounds.
Astatine has both halogen-like and metallic properties, so that analogies with iodine sometimes hold, but sometimes do not. Astatine can be incorporated into organic molecules via halogen exchange, halodediazotation (replacing a diazonium group), halodeprotonation, or halodemetallation. Initial attempts to radiolabel proteins with 211At exemplify its intermediate behaviour, as astatination (analogous to radioiodination) produces unstable results and it is instead AtO+ (or a hydrolysed species) that probably bonds to proteins. Two-step procedures are used today, first synthesising stable astatoaryl prosthetic groups before incorporating them into the protein. Not only is the C–At bond the weakest of all carbon–halogen bonds (following periodic trends), but also the bond easily breaks as the astatine is oxidised back to free astatine.
References
Further reading
Astatine |
Bhakri () is a round flatbread often used in the cuisine of the states of Gujarat, Maharashtra, Rajasthan, and Karnataka in India. The bhakri prepared using jowar or bajra is coarser than a regular wheat chapati.
Bhakri can be either soft or hard in texture, unlike khakhra in respect to hardness.
Grains and variants
Different types of millets (jowar, bajra, ragi) are the more common grains used for making bhakris. These millet bhakris are popular in the Deccan plateau regions of India (Maharashtra and Northern Karnataka) as well as the semi-arid regions of Rajasthan. In the coastal Konkan and Goa regions of western India rice flour is used for making bhakri.
Jowar bhakri – Jowar bhakris are the most common type of bhakri. The dough is prepared by mixing jowar flour with hot water and then flattened by hand.
Bajra bhakri – Bajra bhakris are mainly prepared in winter, especially near the festival of Sankranti. The preparation is similar to jowar bhakris.
Makai bhakri – Cornmeal bhakris commonly prepared during winters. Also known by the name "Makai No Rotlo" in Gujarati and "Makyachi Bhakri" in Marathi.
Ragi bhakri – Ragi bhakhris, or ragi rottis, are made of red finger millets. They are prepared similar to other bhakris.
Rice bhakri – Rice bhakhris are made of rice flour, prepared similarly to other bhakris. They are common in the Konkan region.
Wheat Bhakri – Wheat bhakris are like wheat rotis, but bigger in size and depth with proportionally more oil.
Pulse Bhakri – Prepared from urad dal or mix flour of urad and jowar, also known as Kalna bhakri. They are very popular in Khandesh region.
The dough for bhakri prepared by mixing the flour with small amount of salt in a bowl and knead into a smooth stiff dough, using enough hot water.
The dough is split into little balls. The ball is then flattened using one's palms. There are two types by which is made. It is either flattened in the plate by palm by pressing or it is made thin by holding the ball in both palms which requires a lot of skill. The tava (pan) is heated and the bhakri is cooked applying little water to the upper surface and spread it all over with the help of the cook's fingers. The other side also cooked on the tava. Once it is prepared, it is roasted in the direct flame on both the sides.
A bhakri an be of two types soft or hard. the hard bhakri is basically with hard outer layers to ad a crunch re
Serving
Bhakri is typically served with yogurt, garlic chutney, Pithla, baingan bharta, thecha (chutney made of green chillies and peanuts), preparations of green leafy vegetables and raw onion. In northern parts of Karnataka, it is served with stuffed brinjal curry. In Vidarbha, it is eaten with "Zunka" – a coarse and thick variant of "Pithla." It has traditionally been the rural staple which would be carried to the farm at the crack of dawn and make up for both breakfast and lunch. In the fields, bhakri even used to serve as a plate, on which chutney, kharda or thecha was served and eaten together. In Khandesh region, bhakri and shev bhaji (thick savory curry prepared from sev) is a very popular dish. In the coastal regions like Konkan and Goa, the rice flour bhakris are mainly served with fish curry.
In modern days, bhakhris have increasingly been replaced by wheat rotis and phulkas but they still retain popularity in many regions and as specialty dishes.
See also
Roti
Chapati
Paratha
Kulcha
List of Indian breads
References
Gujarati cuisine
Indian breads
Flatbreads
Unleavened breads
Rajasthani cuisine
Maharashtrian cuisine
Roti
Flatbread dishes |
WWQQ-FM (101.3 MHz) is a country music formatted radio station located in Wilmington, North Carolina.
It advertises itself as "Cape Fear's Country Leader".
History
From its sign-on in 1969 until 1978, the call letters of this station were WMFD-FM, and it was partially simulcast with sister station WMFD. That year, Village Broadcasting of Chapel Hill bought the station from the Dunlea family, changed the call letters to WWQQ and started a country music format on the station. Station alumni from that era include Dan Hester, "Dr. Dale" O'Brian, Mike Grohman, Mark McKay, Joanie D., Tom Lamont, J.J Carroll and Tom Burton. In 1995, WXQR-FM joined the "Q Network" that included WWQQ and WQSL when HVS Partners bought the station. On April 30, 1997, Cumulus Broadcasting announced its purchase of WAAV, WWQQ, WXQR, and WQSL. Double Q 101 plays a variety of country music with the majority of songs ranging from the 1990s to today.
References
External links
WWQQ Official Website
WQQ-FM
Country radio stations in the United States
Cumulus Media radio stations |
Krstur may mean:
Ruski Krstur, a village in Vojvodina, Serbia
Srpski Krstur, a village in Vojvodina, Serbia |
Crinum bakeri is a species of flowering plant in the amaryllis family Amaryllidaceae, native to the Caroline Islands and the Marshall Islands. It was first described by Karl Moritz Schumann in 1887. It is probably a synonym for Crinum asiaticum var. asiaticum.
References
bakeri
Flora of the Caroline Islands
Flora of the Marshall Islands
Plants described in 1887 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.