Example #1
0
        public void ParseVector(OpTypeVector instruction)
        {
            var componentType             = ResolveType(instruction.ComponentType);
            var instructionComponentCount = instruction.ComponentCount;
            var vector = SpirvTypeBase.ResolveVector(componentType, instructionComponentCount);

            AddType(instruction, vector);
        }