[qfcc] Give qfo spaces support for names

Fortunately, there was a reserved spot that could be used for the name
thus no need for a version update. The name isn't used yet but will be
for glsl support.
This commit is contained in:
Bill Currie 2024-09-12 13:50:33 +09:00
parent 99be6f6e41
commit 355ee12c3f

View file

@ -92,7 +92,7 @@ typedef struct qfo_space_s {
pr_uint_t data_size; ///< in elements. zero for entity spaces pr_uint_t data_size; ///< in elements. zero for entity spaces
pr_uint_t id; pr_uint_t id;
pr_uint_t alignment; ///< min alignment for space (1<<alignment) pr_uint_t alignment; ///< min alignment for space (1<<alignment)
pr_int_t reserved[1]; pr_string_t name; ///< special space name
} qfo_space_t; } qfo_space_t;
/** Representation of a def in the object file. /** Representation of a def in the object file.