summaryrefslogtreecommitdiff
path: root/src/glsl/ir.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-11-16 11:59:22 -0800
committerIan Romanick <ian.d.romanick@intel.com>2010-11-19 15:00:25 -0800
commit8e498050dc1a1285c2218fdf4ea506c1cdcd9dd8 (patch)
tree3cebc43709d6e214ccadbf8c3aaf10b8ebd6d343 /src/glsl/ir.h
parentfc92e87b9757eda01caf0bb3e2c31b1dbbd73aa0 (diff)
glsl: Add ir_rvalue::is_negative_one predicate
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r--src/glsl/ir.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h
index 2b94e63cc2..960cd8bab4 100644
--- a/src/glsl/ir.h
+++ b/src/glsl/ir.h
@@ -179,7 +179,7 @@ public:
* for vector and scalar types that have all elements set to the value
* zero (or \c false for booleans).
*
- * \sa ir_constant::has_value, ir_rvalue::is_one
+ * \sa ir_constant::has_value, ir_rvalue::is_one, ir_rvalue::is_negative_one
*/
virtual bool is_zero() const;
@@ -191,10 +191,22 @@ public:
* for vector and scalar types that have all elements set to the value
* one (or \c true for booleans).
*
- * \sa ir_constant::has_value, ir_rvalue::is_zero
+ * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_negative_one
*/
virtual bool is_one() const;
+ /**
+ * Determine if an r-value has the value negative one
+ *
+ * The base implementation of this function always returns \c false. The
+ * \c ir_constant class over-rides this function to return \c true \b only
+ * for vector and scalar types that have all elements set to the value
+ * negative one. For boolean times, the result is always \c false.
+ *
+ * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_one
+ */
+ virtual bool is_negative_one() const;
+
protected:
ir_rvalue();
};
@@ -1482,12 +1494,14 @@ public:
/**
* Determine whether a constant has the same value as another constant
*
- * \sa ir_constant::is_zero, ir_constant::is_one
+ * \sa ir_constant::is_zero, ir_constant::is_one,
+ * ir_constant::is_negative_one
*/
bool has_value(const ir_constant *) const;
virtual bool is_zero() const;
virtual bool is_one() const;
+ virtual bool is_negative_one() const;
/**
* Value of the constant.