diff options
author | Brian Paul <[email protected]> | 2012-08-09 10:14:51 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-08-16 08:58:55 -0600 |
commit | 2a5eeeaebe4f631e0f4e3dbe73f22d5f60a53db5 (patch) | |
tree | 160a42cc6215fecb40947ba9d9956ba9a75a1433 /src/gallium/drivers/svga | |
parent | 8cc1860d4a55c93ce12a649c281012b37212ffbd (diff) |
svga: rename svga_hw_vs_parameters -> svga_hw_vs_constants
and similarly for svga_hw_fs_parameters
Diffstat (limited to 'src/gallium/drivers/svga')
-rw-r--r-- | src/gallium/drivers/svga/svga_state.c | 4 | ||||
-rw-r--r-- | src/gallium/drivers/svga/svga_state.h | 4 | ||||
-rw-r--r-- | src/gallium/drivers/svga/svga_state_constants.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/drivers/svga/svga_state.c b/src/gallium/drivers/svga/svga_state.c index 55cc8417874..986f3ad6559 100644 --- a/src/gallium/drivers/svga/svga_state.c +++ b/src/gallium/drivers/svga/svga_state.c @@ -70,8 +70,8 @@ static const struct svga_tracked_state *hw_draw_state[] = &svga_hw_tss_binding, &svga_hw_clip_planes, &svga_hw_vdecl, - &svga_hw_fs_parameters, - &svga_hw_vs_parameters, + &svga_hw_fs_constants, + &svga_hw_vs_constants, NULL }; diff --git a/src/gallium/drivers/svga/svga_state.h b/src/gallium/drivers/svga/svga_state.h index 046c0330d58..7051263daf0 100644 --- a/src/gallium/drivers/svga/svga_state.h +++ b/src/gallium/drivers/svga/svga_state.h @@ -64,8 +64,8 @@ extern struct svga_tracked_state svga_hw_tss; extern struct svga_tracked_state svga_hw_tss_binding; extern struct svga_tracked_state svga_hw_clip_planes; extern struct svga_tracked_state svga_hw_vdecl; -extern struct svga_tracked_state svga_hw_fs_parameters; -extern struct svga_tracked_state svga_hw_vs_parameters; +extern struct svga_tracked_state svga_hw_fs_constants; +extern struct svga_tracked_state svga_hw_vs_constants; /* SWTNL_DRAW */ diff --git a/src/gallium/drivers/svga/svga_state_constants.c b/src/gallium/drivers/svga/svga_state_constants.c index c03ef0580e7..1a67c112217 100644 --- a/src/gallium/drivers/svga/svga_state_constants.c +++ b/src/gallium/drivers/svga/svga_state_constants.c @@ -303,7 +303,7 @@ emit_fs_consts(struct svga_context *svga, unsigned dirty) } -struct svga_tracked_state svga_hw_fs_parameters = +struct svga_tracked_state svga_hw_fs_constants = { "hw fs params", (SVGA_NEW_FS_CONST_BUFFER | @@ -355,7 +355,7 @@ emit_vs_consts(struct svga_context *svga, unsigned dirty) } -struct svga_tracked_state svga_hw_vs_parameters = +struct svga_tracked_state svga_hw_vs_constants = { "hw vs params", (SVGA_NEW_PRESCALE | |