From 261f42f0c8790edfe40a3da65715fb29164335d8 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Sat, 28 Nov 2020 10:27:48 +0100 Subject: [PATCH] r600/sfn: fix definition of priority queue Closes #3889 Fixes: b8fdcffc4c755241d645c62385729ee14dd8620b r600/sfn: Fix vertex stage export to accomodate IO lowering Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_vertexstageexport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_vertexstageexport.h b/src/gallium/drivers/r600/sfn/sfn_vertexstageexport.h index 3bb9fb2b37a..46aee807195 100644 --- a/src/gallium/drivers/r600/sfn/sfn_vertexstageexport.h +++ b/src/gallium/drivers/r600/sfn/sfn_vertexstageexport.h @@ -52,7 +52,7 @@ protected: unsigned param_id(unsigned driver_location); unsigned current_param() const; private: - std::priority_queue, std::greater > m_param_driver_locations; + std::priority_queue, std::greater > m_param_driver_locations; std::map m_param_map; unsigned m_current_param; };