mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
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:
parent
feaecbeeab
commit
261f42f0c8
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue