From: Tom Stellard Date: Tue, 24 Jul 2012 14:49:25 +0000 (+0000) Subject: r600g: Initialize VGT_PRIMITIVE_TYPE in the start_cs_cmd atom X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc0b8a46289d0e6b10c542df0856d51a0aabf9b0;p=mesa.git r600g: Initialize VGT_PRIMITIVE_TYPE in the start_cs_cmd atom The value of this register will always be DI_PT_POINTLIST for compute shaders. Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/r600/evergreen_compute.c b/src/gallium/drivers/r600/evergreen_compute.c index 33e3243c9f9..5e43faebeb1 100644 --- a/src/gallium/drivers/r600/evergreen_compute.c +++ b/src/gallium/drivers/r600/evergreen_compute.c @@ -268,8 +268,6 @@ void evergreen_direct_dispatch( /* Set CB_TARGET_MASK */ evergreen_reg_set(res, R_028238_CB_TARGET_MASK, rctx->compute_cb_target_mask); - evergreen_reg_set(res, R_008958_VGT_PRIMITIVE_TYPE, V_008958_DI_PT_POINTLIST); - evergreen_reg_set(res, R_00899C_VGT_COMPUTE_START_X, 0); evergreen_reg_set(res, R_0089A0_VGT_COMPUTE_START_Y, 0); evergreen_reg_set(res, R_0089A4_VGT_COMPUTE_START_Z, 0); @@ -633,6 +631,11 @@ void evergreen_init_atom_start_compute_cs(struct r600_context *ctx) } /* Config Registers */ + + /* The primitive type always needs to be POINTLIST for compute. */ + r600_store_config_reg(cb, R_008958_VGT_PRIMITIVE_TYPE, + V_008958_DI_PT_POINTLIST); + if (ctx->chip_class < CAYMAN) { /* These registers control which simds can be used by each stage.