OSDN Git Service

i965/vec4/vp: Use vec4_visitor::CMP.
authorMatt Turner <mattst88@gmail.com>
Thu, 12 Feb 2015 02:01:49 +0000 (02:01 +0000)
committerMatt Turner <mattst88@gmail.com>
Sun, 15 Feb 2015 20:24:10 +0000 (12:24 -0800)
commit72b9f8db2a035b52dbd59af0d2a6441cbde11a4c
treec8eabdd78a0c911a4c0de8316f3e9f7a88ee3994
parent69b1693ef3e5f6be872ae131ea01de435a8e9337
i965/vec4/vp: Use vec4_visitor::CMP.

... instead of emit(BRW_OPCODE_CMP, ...). In commit 6b3a301f I changed
vec4_visitor::CMP to set the destination's type to that of src0. In the
following commit (2335153f) I removed an apparently now unnecessary work
around for Gen8 that did the same thing.

But there was a single place that emitted a CMP instruction without
using the vec4_visitor::CMP function. Use it there.

And change dst_null_d to dst_null_f for good measure, since ARB vp
doesn't have integers.

Cc: "10.5" <mesa-stable@lists.freedesktop.org>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89032
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_vec4_vp.cpp