Controlled SPV features on QCOM

This commit is contained in:
CamilleLaVey 2025-11-26 21:11:18 -04:00 committed by Caio Oliveira
parent f40774a4b9
commit d6f14f5519
No known key found for this signature in database
GPG key ID: AAAE6C7FD4186B0C
6 changed files with 418 additions and 88 deletions

View file

@ -146,6 +146,8 @@ struct InputGenericInfo {
Id id;
Id pointer_type;
Id component_type;
Id composite_type;
Id composite_pointer_type;
InputGenericLoadOp load_op;
};
@ -153,6 +155,8 @@ struct GenericElementInfo {
Id id{};
u32 first_element{};
u32 num_components{};
Id composite_type{};
Id composite_pointer_type{};
};
class EmitContext final : public Sirit::Module {