Skip to content
Snippets Groups Projects
Commit 1fdc75fd authored by Matt Turner's avatar Matt Turner
Browse files

i965/fs: Remove unused apply_stride().


Reviewed-by: default avatarAnuj Phogat <anuj.phogat@gmail.com>
parent 279c1c80
No related branches found
Tags mesa-17.1.0-rc3
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment