i965/gen8: Remove unused gen8_emit_3dstate_multisample()
authorTopi Pohjolainen <topi.pohjolainen@intel.com>
Mon, 11 Sep 2017 11:54:11 +0000 (14:54 +0300)
committerTopi Pohjolainen <topi.pohjolainen@intel.com>
Thu, 21 Sep 2017 05:43:20 +0000 (08:43 +0300)
Reviewed-by: Chad Versace <chadversary@chromium.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
src/mesa/drivers/dri/i965/brw_context.h
src/mesa/drivers/dri/i965/gen8_multisample_state.c

index a46776f5dc8330201ac9a047bec158c9e96964cf..e130fbf4041251679d4f5ba64ee63913862b5406 100644 (file)
@@ -1520,7 +1520,6 @@ void
 gen6_set_sample_maps(struct gl_context *ctx);
 
 /* gen8_multisample_state.c */
-void gen8_emit_3dstate_multisample(struct brw_context *brw, unsigned num_samp);
 void gen8_emit_3dstate_sample_pattern(struct brw_context *brw);
 
 /* gen7_urb.c */
index 7a31a5df4a2aa062e87a8d17335efd0767721bef..3afa5862757378aeeee87bad8fd459265a96ddc7 100644 (file)
 #include "brw_defines.h"
 #include "brw_multisample_state.h"
 
-/**
- * 3DSTATE_MULTISAMPLE
- */
-void
-gen8_emit_3dstate_multisample(struct brw_context *brw, unsigned num_samples)
-{
-   assert(num_samples <= 16);
-
-   unsigned log2_samples = ffs(MAX2(num_samples, 1)) - 1;
-
-   BEGIN_BATCH(2);
-   OUT_BATCH(GEN8_3DSTATE_MULTISAMPLE << 16 | (2 - 2));
-   OUT_BATCH(MS_PIXEL_LOCATION_CENTER | log2_samples << 1);
-   ADVANCE_BATCH();
-}
-
 /**
  * 3DSTATE_SAMPLE_PATTERN
  */