0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-02 23:41:28 +00:00

[qfcc] Encode handle descriptor type and extra

Needed for differentiating image types, and any other fancy handle types
in the future.
This commit is contained in:
Bill Currie 2025-02-11 14:43:52 +09:00
parent e8e2bf7efe
commit 10505451eb

View file

@ -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 : "");