Add OpLoad

This commit is contained in:
ReinUsesLisp 2018-10-31 04:16:26 -03:00
parent 97825750a3
commit 01c658b891
2 changed files with 14 additions and 0 deletions

View file

@ -200,6 +200,10 @@ class Module {
Ref Variable(Ref result_type, spv::StorageClass storage_class,
Ref initializer = nullptr);
/// Load through a pointer.
Ref Load(Ref result_type, Ref pointer,
std::optional<spv::MemoryAccessMask> memory_access = {});
/// Create a pointer into a composite object that can be used with OpLoad
/// and OpStore.
Ref AccessChain(Ref result_type, Ref base,