r600/sfn: fix definition of priority queue
Closes #3889
Fixes: b8fdcffc4c
r600/sfn: Fix vertex stage export to accomodate IO lowering
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7820>
This commit is contained in:
@@ -52,7 +52,7 @@ protected:
|
||||
unsigned param_id(unsigned driver_location);
|
||||
unsigned current_param() const;
|
||||
private:
|
||||
std::priority_queue<unsigned, std::vector<int>, std::greater<int> > m_param_driver_locations;
|
||||
std::priority_queue<unsigned, std::vector<unsigned>, std::greater<unsigned> > m_param_driver_locations;
|
||||
std::map<unsigned, unsigned> m_param_map;
|
||||
unsigned m_current_param;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user