summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorTopi Pohjolainen <[email protected]>2013-12-02 11:09:19 +0200
committerTopi Pohjolainen <[email protected]>2014-01-23 08:44:52 +0200
commit3c44e43357caf21ef90963508c4477199a0c3139 (patch)
tree8072e5993a4aaf15fdc14f9d923f7460a7e5679e /src/mesa
parentf031487dcb77f2fe053d0d39d32e443c7b2207dc (diff)
i965/blorp: move emission of pixel kill into eu-emitter
The combination of four separate comparison operations and and the masked "and" require special treatment when moving to FS LIR. Signed-off-by: Topi Pohjolainen <[email protected]> Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_blorp_blit.cpp28
-rw-r--r--src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp28
-rw-r--r--src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h7
3 files changed, 38 insertions, 25 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp
index f9c355b372a..03fabd62f71 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp
+++ b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp
@@ -640,7 +640,6 @@ private:
void translate_tiling(bool old_tiled_w, bool new_tiled_w);
void encode_msaa(unsigned num_samples, intel_msaa_layout layout);
void decode_msaa(unsigned num_samples, intel_msaa_layout layout);
- void kill_if_outside_dst_rect();
void translate_dst_to_src();
void clamp_tex_coords(struct brw_reg regX, struct brw_reg regY,
struct brw_reg clampX0, struct brw_reg clampY0,
@@ -833,7 +832,9 @@ brw_blorp_blit_program::compile(struct brw_context *brw,
*/
if (key->use_kill)
- kill_if_outside_dst_rect();
+ emit_kill_if_outside_rect(x_coords[xy_coord_index],
+ y_coords[xy_coord_index],
+ dst_x0, dst_x1, dst_y0, dst_y1);
/* Next, apply a translation to obtain coordinates in the source image. */
translate_dst_to_src();
@@ -1375,29 +1376,6 @@ brw_blorp_blit_program::decode_msaa(unsigned num_samples,
}
/**
- * Emit code that kills pixels whose X and Y coordinates are outside the
- * boundary of the rectangle defined by the push constants (dst_x0, dst_y0,
- * dst_x1, dst_y1).
- */
-void
-brw_blorp_blit_program::kill_if_outside_dst_rect()
-{
- struct brw_reg f0 = brw_flag_reg(0, 0);
- struct brw_reg g1 = retype(brw_vec1_grf(1, 7), BRW_REGISTER_TYPE_UW);
- struct brw_reg null32 = vec16(retype(brw_null_reg(), BRW_REGISTER_TYPE_UD));
-
- brw_CMP(&func, null32, BRW_CONDITIONAL_GE, X, dst_x0);
- brw_CMP(&func, null32, BRW_CONDITIONAL_GE, Y, dst_y0);
- brw_CMP(&func, null32, BRW_CONDITIONAL_L, X, dst_x1);
- brw_CMP(&func, null32, BRW_CONDITIONAL_L, Y, dst_y1);
-
- brw_set_predicate_control(&func, BRW_PREDICATE_NONE);
-
- struct brw_instruction *inst = brw_AND(&func, g1, f0, g1);
- inst->header.mask_control = BRW_MASK_DISABLE;
-}
-
-/**
* Emit code to translate from destination (X, Y) coordinates to source (X, Y)
* coordinates.
*/
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp
index 8d723d64052..161c6798a57 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp
+++ b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp
@@ -63,3 +63,31 @@ brw_blorp_eu_emitter::get_program(unsigned *program_size, FILE *dump_file)
return brw_get_program(&func, program_size);
}
+
+/**
+ * Emit code that kills pixels whose X and Y coordinates are outside the
+ * boundary of the rectangle defined by the push constants (dst_x0, dst_y0,
+ * dst_x1, dst_y1).
+ */
+void
+brw_blorp_eu_emitter::emit_kill_if_outside_rect(const struct brw_reg &x,
+ const struct brw_reg &y,
+ const struct brw_reg &dst_x0,
+ const struct brw_reg &dst_x1,
+ const struct brw_reg &dst_y0,
+ const struct brw_reg &dst_y1)
+{
+ struct brw_reg f0 = brw_flag_reg(0, 0);
+ struct brw_reg g1 = retype(brw_vec1_grf(1, 7), BRW_REGISTER_TYPE_UW);
+ struct brw_reg null32 = vec16(retype(brw_null_reg(), BRW_REGISTER_TYPE_UD));
+
+ brw_CMP(&func, null32, BRW_CONDITIONAL_GE, x, dst_x0);
+ brw_CMP(&func, null32, BRW_CONDITIONAL_GE, y, dst_y0);
+ brw_CMP(&func, null32, BRW_CONDITIONAL_L, x, dst_x1);
+ brw_CMP(&func, null32, BRW_CONDITIONAL_L, y, dst_y1);
+
+ brw_set_predicate_control(&func, BRW_PREDICATE_NONE);
+
+ struct brw_instruction *inst = brw_AND(&func, g1, f0, g1);
+ inst->header.mask_control = BRW_MASK_DISABLE;
+}
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h
index 1bcb0d98bff..3f74e0e9925 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h
+++ b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.h
@@ -35,6 +35,13 @@ protected:
const unsigned *get_program(unsigned *program_size, FILE *dump_file);
+ void emit_kill_if_outside_rect(const struct brw_reg &x,
+ const struct brw_reg &y,
+ const struct brw_reg &dst_x0,
+ const struct brw_reg &dst_x1,
+ const struct brw_reg &dst_y0,
+ const struct brw_reg &dst_y1);
+
void *mem_ctx;
struct brw_compile func;
};