mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-20 18:50:30 +01:00
nv30: Rename state emission func
This commit is contained in:
parent
9489de9980
commit
4ca346a8c0
3 changed files with 3 additions and 3 deletions
|
|
@ -192,7 +192,7 @@ extern void nv30_fragtex_bind(struct nv30_context *);
|
|||
|
||||
/* nv30_state.c and friends */
|
||||
extern boolean nv30_state_validate(struct nv30_context *nv30);
|
||||
extern void nv30_emit_hw_state(struct nv30_context *nv30);
|
||||
extern void nv30_state_emit(struct nv30_context *nv30);
|
||||
extern void nv30_state_tex_update(struct nv30_context *nv30);
|
||||
extern struct nv30_state_entry nv30_state_rasterizer;
|
||||
extern struct nv30_state_entry nv30_state_scissor;
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ nv30_state_do_validate(struct nv30_context *nv30,
|
|||
}
|
||||
|
||||
void
|
||||
nv30_emit_hw_state(struct nv30_context *nv30)
|
||||
nv30_state_emit(struct nv30_context *nv30)
|
||||
{
|
||||
struct nv30_state *state = &nv30->state;
|
||||
struct nv30_screen *screen = nv30->screen;
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ nv30_vbo_validate_state(struct nv30_context *nv30,
|
|||
|
||||
nv30_state_validate(nv30);
|
||||
|
||||
nv30_emit_hw_state(nv30);
|
||||
nv30_state_emit(nv30);
|
||||
|
||||
if (nv30->dirty & NV30_NEW_ARRAYS) {
|
||||
nv30_vbo_arrays_update(nv30);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue