mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 02:20:11 +01:00
r600/sfn: Fix typo with block type
Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24297>
This commit is contained in:
parent
e60ff83834
commit
c517defbdd
2 changed files with 3 additions and 3 deletions
|
|
@ -298,7 +298,7 @@ Block::erase(iterator node)
|
|||
void
|
||||
Block::set_type(Type t, r600_chip_class chip_class)
|
||||
{
|
||||
m_blocK_type = t;
|
||||
m_block_type = t;
|
||||
switch (t) {
|
||||
case vtx:
|
||||
/* In theory on >= EG VTX support 16 slots, but with vertex fetch
|
||||
|
|
|
|||
|
|
@ -203,7 +203,7 @@ public:
|
|||
|
||||
int id() const { return m_id; }
|
||||
|
||||
auto type() const { return m_blocK_type; }
|
||||
auto type() const {return m_block_type; }
|
||||
void set_type(Type t, r600_chip_class chip_class);
|
||||
int32_t remaining_slots() const { return m_remaining_slots;}
|
||||
|
||||
|
|
@ -243,7 +243,7 @@ private:
|
|||
int m_id;
|
||||
int m_next_index;
|
||||
|
||||
Type m_blocK_type{unknown};
|
||||
Type m_block_type{unknown};
|
||||
uint32_t m_remaining_slots{0xffff};
|
||||
|
||||
std::array<KCacheLine, 4> m_kcache;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue