Lines Matching defs:PipelineExecutableProperty
339 struct PipelineExecutableProperty struct
341 …PipelineExecutableProperty (VkShaderStageFlags stageFlags_, std::string name_, std::string descrip… in PipelineExecutableProperty() argument
350 const VkShaderStageFlags stageFlags;
351 const std::string name;
352 const std::string description;
353 const uint32_t subgroupSize;
355 void addStat (const PipelineExecutableStat& stat) { m_stats.emplace_back(stat); } in addStat()
356 void addIR (const PipelineExecutableInternalRepresentation& ir) { m_irs.emplace_back(ir); } in addIR()
358 const std::vector<PipelineExecutableStat>& getStats (void) const { return m_stats; } in getStats()
359 const std::vector<PipelineExecutableInternalRepresentation>& getIRs (void) const { return m_irs; } in getIRs()
362 std::vector<PipelineExecutableStat> m_stats;
363 std::vector<PipelineExecutableInternalRepresentation> m_irs;