Home
last modified time | relevance | path

Searched refs:m_last_pixel_export (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_shader_fragment.cpp43 m_last_pixel_export(nullptr), in FragmentShaderFromNir()
802 m_last_pixel_export = new ExportInstruction(location, value, ExportInstruction::et_pixel); in emit_export_pixel()
812 emit_export_instruction(m_last_pixel_export); in emit_export_pixel()
846 if (!m_last_pixel_export) { in do_finalize()
848 m_last_pixel_export = new ExportInstruction(0, v, ExportInstruction::et_pixel); in do_finalize()
851 emit_export_instruction(m_last_pixel_export); in do_finalize()
854 m_last_pixel_export->set_last(); in do_finalize()
Dsfn_shader_fragment.h81 ExportInstruction *m_last_pixel_export; variable