Files
mesa/src
Eric Engestrom 8af1b540c5 i915: remove unnecessary if
if (x) return true; else return false;
can be simplified as:
	return x;
since `x` is already a boolean expression.

Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2016-08-24 11:17:05 +01:00
..
2016-08-23 21:19:58 -07:00
2016-08-24 11:17:05 +01:00