Searched defs:spirv_inst_iter (Results 1 - 1 of 1) sorted by relevance

/external/vulkan-validation-layers/layers/
H A Dshader_validation.h27 struct spirv_inst_iter { struct
46 spirv_inst_iter() {}
48 spirv_inst_iter(std::vector<uint32_t>::const_iterator zero, std::vector<uint32_t>::const_iterator it) : zero(zero), it(it) {}
50 bool operator==(spirv_inst_iter const &other) { return it == other.it; }
52 bool operator!=(spirv_inst_iter const &other) { return it != other.it; }
54 spirv_inst_iter operator++(int) { // x++
55 spirv_inst_iter ii = *this;
60 spirv_inst_iter operator++() { // ++x;
66 spirv_inst_iter &operator*() { return *this; }
67 spirv_inst_iter cons
[all...]

Completed in 154 milliseconds