From 10505451eb83ebf526c269253d679a963608a3ff Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 11 Feb 2025 14:43:52 +0900 Subject: [PATCH] [qfcc] Encode handle descriptor type and extra Needed for differentiating image types, and any other fancy handle types in the future. --- tools/qfcc/source/type.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index 68777fc8a..003b9833e 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -1325,7 +1325,13 @@ encode_type (dstring_t *encoding, const type_t *type) algebra_encode_type (encoding, type); return; case ty_handle: - dasprintf (encoding, "{%s$}", type->name); + if (type->handle.type) { + dasprintf (encoding, "{%s:", type->name); + encode_type (encoding, type->handle.type); + dasprintf (encoding, ":%u$}", type->handle.extra); + } else { + dasprintf (encoding, "{%s$}", type->name); + } return; case ty_alias: dasprintf (encoding, "{%s>", type->name ? type->name : "");