[vulkan] Update vkgen for the newly added bool type

I had forgotten about this, and ironically it's just one field in all of
vkparse, but adding support for bool to vkgen was easier than expected.
This commit is contained in:
Bill Currie 2024-09-04 10:33:10 +09:00
parent 83b92dd067
commit fe16fed01a
5 changed files with 38 additions and 2 deletions

View file

@ -5,6 +5,7 @@ EXTRA_PROGRAMS += vkgen.dat$(EXEEXT)
vkgen_dat_src= \
libs/video/renderer/vulkan/vkgen/vkalias.r \
libs/video/renderer/vulkan/vkgen/vkbool.r \
libs/video/renderer/vulkan/vkgen/vkenum.r \
libs/video/renderer/vulkan/vkgen/vkfieldarray.r \
libs/video/renderer/vulkan/vkgen/vkfieldauto.r \
@ -51,6 +52,7 @@ EXTRA_DIST += \
libs/video/renderer/vulkan/vkgen/stddef.h \
libs/video/renderer/vulkan/vkgen/stdint.h \
libs/video/renderer/vulkan/vkgen/vkalias.h \
libs/video/renderer/vulkan/vkgen/vkbool.h \
libs/video/renderer/vulkan/vkgen/vkenum.h \
libs/video/renderer/vulkan/vkgen/vkfieldarray.h \
libs/video/renderer/vulkan/vkgen/vkfieldauto.h \

View file

@ -10,5 +10,4 @@ typedef int int32_t;
typedef int int64_t;
typedef int size_t;
typedef struct char { int x; } char;//FIXME add char to qfcc
typedef struct bool { int x; } bool;//FIXME add bool to qfcc
#endif//__vkgen_stdint_h

View file

@ -0,0 +1,11 @@
#ifndef __renderer_vulkan_vkgen_vkbool_h
#define __renderer_vulkan_vkgen_vkbool_h
#include "vktype.h"
@class PLItem;
@interface Bool: Type
@end
#endif//__renderer_vulkan_vkgen_vkbool_h

View file

@ -0,0 +1,22 @@
#include <string.h>
#include "vkbool.h"
#include "vkgen.h"
@implementation Bool
-(string) name
{
return "bool";
}
-(string) cexprType
{
return "cexpr_bool";
}
-(string) parseType
{
return "QFString";
}
@end

View file

@ -1,6 +1,7 @@
#include <hash.h>
#include "vkalias.h"
#include "vkbool.h"
#include "vkenum.h"
#include "vkfixedarray.h"
#include "vkgen.h"
@ -51,7 +52,8 @@ static string get_type_key (void *type, void *unused)
return nil;
}
switch (type.meta) {
case ty_bool: //FIXME special type?
case ty_bool:
return [[Bool alloc] initWithType: type];
case ty_basic:
if (type.type == ev_ptr) {
Type *tgt = [Type findType: type.fldptr.aux_type];