mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 23:10:11 +01:00
i965/fs: Remove unused apply_stride().
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
parent
279c1c80b6
commit
1fdc75fde4
2 changed files with 0 additions and 11 deletions
|
|
@ -607,16 +607,6 @@ fs_reg::equals(const fs_reg &r) const
|
|||
stride == r.stride);
|
||||
}
|
||||
|
||||
fs_reg &
|
||||
fs_reg::apply_stride(unsigned stride)
|
||||
{
|
||||
assert((this->stride * stride) <= 4 &&
|
||||
(is_power_of_two(stride) || stride == 0) &&
|
||||
file != HW_REG && file != IMM);
|
||||
this->stride *= stride;
|
||||
return *this;
|
||||
}
|
||||
|
||||
fs_reg &
|
||||
fs_reg::set_smear(unsigned subreg)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@ public:
|
|||
bool is_valid_3src() const;
|
||||
bool is_contiguous() const;
|
||||
|
||||
fs_reg &apply_stride(unsigned stride);
|
||||
/** Smear a channel of the reg to all channels. */
|
||||
fs_reg &set_smear(unsigned subreg);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue