nv40: shorten zsa state lines
authorBen Skeggs <skeggsb@gmail.com>
Wed, 2 Apr 2008 02:54:37 +0000 (12:54 +1000)
committerBen Skeggs <skeggsb@gmail.com>
Wed, 2 Apr 2008 02:54:37 +0000 (12:54 +1000)
src/gallium/drivers/nv40/nv40_state.c

index 1417c95e758216209db57b4da496c6f929794eda..89f4078b720fa45b09faec3f5b3dc7bbb36d3f98 100644 (file)
@@ -445,19 +445,20 @@ nv40_depth_stencil_alpha_state_create(struct pipe_context *pipe,
        struct nv40_context *nv40 = nv40_context(pipe);
        struct nv40_zsa_state *zsaso = CALLOC(1, sizeof(*zsaso));
        struct nouveau_stateobj *so = so_new(32, 0);
+       struct nouveau_grobj *curie = nv40->screen->curie;
 
-       so_method(so, nv40->screen->curie, NV40TCL_DEPTH_FUNC, 3);
+       so_method(so, curie, NV40TCL_DEPTH_FUNC, 3);
        so_data  (so, nvgl_comparison_op(cso->depth.func));
        so_data  (so, cso->depth.writemask ? 1 : 0);
        so_data  (so, cso->depth.enabled ? 1 : 0);
 
-       so_method(so, nv40->screen->curie, NV40TCL_ALPHA_TEST_ENABLE, 3);
+       so_method(so, curie, NV40TCL_ALPHA_TEST_ENABLE, 3);
        so_data  (so, cso->alpha.enabled ? 1 : 0);
        so_data  (so, nvgl_comparison_op(cso->alpha.func));
        so_data  (so, float_to_ubyte(cso->alpha.ref));
 
        if (cso->stencil[0].enabled) {
-               so_method(so, nv40->screen->curie, NV40TCL_STENCIL_FRONT_ENABLE, 8);
+               so_method(so, curie, NV40TCL_STENCIL_FRONT_ENABLE, 8);
                so_data  (so, cso->stencil[0].enabled ? 1 : 0);
                so_data  (so, cso->stencil[0].write_mask);
                so_data  (so, nvgl_comparison_op(cso->stencil[0].func));
@@ -467,12 +468,12 @@ nv40_depth_stencil_alpha_state_create(struct pipe_context *pipe,
                so_data  (so, nvgl_stencil_op(cso->stencil[0].zfail_op));
                so_data  (so, nvgl_stencil_op(cso->stencil[0].zpass_op));
        } else {
-               so_method(so, nv40->screen->curie, NV40TCL_STENCIL_FRONT_ENABLE, 1);
+               so_method(so, curie, NV40TCL_STENCIL_FRONT_ENABLE, 1);
                so_data  (so, 0);
        }
 
        if (cso->stencil[1].enabled) {
-               so_method(so, nv40->screen->curie, NV40TCL_STENCIL_BACK_ENABLE, 8);
+               so_method(so, curie, NV40TCL_STENCIL_BACK_ENABLE, 8);
                so_data  (so, cso->stencil[1].enabled ? 1 : 0);
                so_data  (so, cso->stencil[1].write_mask);
                so_data  (so, nvgl_comparison_op(cso->stencil[1].func));
@@ -482,7 +483,7 @@ nv40_depth_stencil_alpha_state_create(struct pipe_context *pipe,
                so_data  (so, nvgl_stencil_op(cso->stencil[1].zfail_op));
                so_data  (so, nvgl_stencil_op(cso->stencil[1].zpass_op));
        } else {
-               so_method(so, nv40->screen->curie, NV40TCL_STENCIL_BACK_ENABLE, 1);
+               so_method(so, curie, NV40TCL_STENCIL_BACK_ENABLE, 1);
                so_data  (so, 0);
        }