i965/fs: Remove unused apply_stride().
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user