intel/blorp: Rename emit_viewport_state to emit_cc_viewport
authorJason Ekstrand <jason.ekstrand@intel.com>
Fri, 12 May 2017 04:56:05 +0000 (21:56 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Fri, 26 May 2017 14:58:01 +0000 (07:58 -0700)
The real point of this packet is that it sets up CC_VIEWPORT so that
name is a bit better.

Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
src/intel/blorp/blorp_genX_exec.h

index 3c46340a2ee673476f6edf3d29ab9234f9747a4d..31cb0491e8ceed29ffc7e0574c1e5c1b04573a95 100644 (file)
@@ -432,8 +432,8 @@ blorp_emit_vertex_elements(struct blorp_batch *batch,
 
 /* 3DSTATE_VIEWPORT_STATE_POINTERS */
 static uint32_t
-blorp_emit_viewport_state(struct blorp_batch *batch,
-                          const struct blorp_params *params)
+blorp_emit_cc_viewport(struct blorp_batch *batch,
+                       const struct blorp_params *params)
 {
    uint32_t cc_vp_offset;
    blorp_emit_dynamic(batch, GENX(CC_VIEWPORT), vp, 32, &cc_vp_offset) {
@@ -1136,7 +1136,7 @@ blorp_emit_pipeline(struct blorp_batch *batch,
    blorp_emit_sf_config(batch, params);
    blorp_emit_ps_config(batch, params);
 
-   blorp_emit_viewport_state(batch, params);
+   blorp_emit_cc_viewport(batch, params);
 }
 
 /******** This is the end of the pipeline setup code ********/