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:
parent
e8e2bf7efe
commit
10505451eb
1 changed files with 7 additions and 1 deletions
|
@ -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 : "");
|
||||
|
|
Loading…
Reference in a new issue