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:
Gert Wollny 2023-07-21 16:58:54 +02:00 committed by Marge Bot
parent e60ff83834
commit c517defbdd
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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;