mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[vulkan] Parse VkPresentModeKHR
And strip the KHR for short names.
This commit is contained in:
parent
a52704e8ca
commit
87b3c64801
2 changed files with 12 additions and 0 deletions
|
@ -20,6 +20,8 @@ typedef enum VkBool32 {
|
||||||
end = "_FLAG_BITS_MAX_ENUM";
|
end = "_FLAG_BITS_MAX_ENUM";
|
||||||
} else if (str_mid([self name], -11) == "FlagBitsEXT") {
|
} else if (str_mid([self name], -11) == "FlagBitsEXT") {
|
||||||
end = "_FLAG_BITS_MAX_ENUM_EXT";
|
end = "_FLAG_BITS_MAX_ENUM_EXT";
|
||||||
|
} else if (str_mid([self name], -3) == "KHR") {
|
||||||
|
end = "_MAX_ENUM_KHR";
|
||||||
}
|
}
|
||||||
len = -strlen (end);
|
len = -strlen (end);
|
||||||
for (int i = 0; i < type.strct.num_fields; i++) {
|
for (int i = 0; i < type.strct.num_fields; i++) {
|
||||||
|
@ -84,10 +86,14 @@ skip_value(string name)
|
||||||
-(void) writeTable
|
-(void) writeTable
|
||||||
{
|
{
|
||||||
int strip_bit = 0;
|
int strip_bit = 0;
|
||||||
|
int strip_khr = 0;
|
||||||
if (str_mid([self name], -8) == "FlagBits"
|
if (str_mid([self name], -8) == "FlagBits"
|
||||||
|| str_mid([self name], -11) == "FlagBitsEXT") {
|
|| str_mid([self name], -11) == "FlagBitsEXT") {
|
||||||
strip_bit = 1;
|
strip_bit = 1;
|
||||||
}
|
}
|
||||||
|
if (str_mid([self name], -3) == "KHR") {
|
||||||
|
strip_khr = 1;
|
||||||
|
}
|
||||||
|
|
||||||
fprintf (output_file, "exprtype_t %s_type = {\n", [self name]);
|
fprintf (output_file, "exprtype_t %s_type = {\n", [self name]);
|
||||||
fprintf (output_file, "\t.name = \"%s\",\n", [self name]);
|
fprintf (output_file, "\t.name = \"%s\",\n", [self name]);
|
||||||
|
@ -132,6 +138,11 @@ skip_value(string name)
|
||||||
if (bit_pos >= 0) {
|
if (bit_pos >= 0) {
|
||||||
shortname = str_mid (shortname, 0, bit_pos);
|
shortname = str_mid (shortname, 0, bit_pos);
|
||||||
}
|
}
|
||||||
|
} else if (strip_khr) {
|
||||||
|
int khr_pos = str_str (shortname, "_KHR");
|
||||||
|
if (khr_pos >= 0) {
|
||||||
|
shortname = str_mid (shortname, 0, khr_pos);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fprintf (output_file, "\t{\"%s\", &%s_type, %s_values + %d},\n",
|
fprintf (output_file, "\t{\"%s\", &%s_type, %s_values + %d},\n",
|
||||||
str_lower(shortname), [self name], [self name], index);
|
str_lower(shortname), [self name], [self name], index);
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
search = (
|
search = (
|
||||||
VkAttachmentDescription,
|
VkAttachmentDescription,
|
||||||
VkDebugUtilsMessageSeverityFlagBitsEXT,
|
VkDebugUtilsMessageSeverityFlagBitsEXT,
|
||||||
|
VkPresentModeKHR,
|
||||||
VkSubpassDescription,
|
VkSubpassDescription,
|
||||||
VkSubpassDependency,
|
VkSubpassDependency,
|
||||||
VkSpecializationInfo,
|
VkSpecializationInfo,
|
||||||
|
|
Loading…
Reference in a new issue