i965/fs: Remove unused apply_stride().
authorMatt Turner <mattst88@gmail.com>
Wed, 12 Nov 2014 19:03:44 +0000 (11:03 -0800)
committerMatt Turner <mattst88@gmail.com>
Fri, 21 Nov 2014 18:26:44 +0000 (10:26 -0800)
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
src/mesa/drivers/dri/i965/brw_fs.cpp
src/mesa/drivers/dri/i965/brw_fs.h

index ef6e6e7467ae48fb34ee39bfead3fd36381e9fbe..4804b7dff71d1af2694acc45565c3f35ce051a70 100644 (file)
@@ -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)
 {
index f778c26939f066bfe6f6b4f6fcd435050c902e0c..c4d8323f768ac6798892e4940a05dad4ba5120be 100644 (file)
@@ -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);