mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-04 08:48:14 +02:00
i965g: s/varient/variant/
This commit is contained in:
parent
a185d439bd
commit
bd75e4b8be
4 changed files with 8 additions and 8 deletions
|
|
@ -363,10 +363,10 @@ const struct brw_tracked_state brw_line_stipple = {
|
|||
|
||||
|
||||
/***********************************************************************
|
||||
* Misc invarient state packets
|
||||
* Misc invariant state packets
|
||||
*/
|
||||
|
||||
static int upload_invarient_state( struct brw_context *brw )
|
||||
static int upload_invariant_state( struct brw_context *brw )
|
||||
{
|
||||
{
|
||||
/* 0x61040000 Pipeline Select */
|
||||
|
|
@ -439,7 +439,7 @@ static int upload_invarient_state( struct brw_context *brw )
|
|||
{
|
||||
struct brw_polygon_stipple_offset bpso;
|
||||
|
||||
/* This is invarient state in gallium:
|
||||
/* This is invariant state in gallium:
|
||||
*/
|
||||
memset(&bpso, 0, sizeof(bpso));
|
||||
bpso.header.opcode = CMD_POLY_STIPPLE_OFFSET;
|
||||
|
|
@ -453,13 +453,13 @@ static int upload_invarient_state( struct brw_context *brw )
|
|||
return 0;
|
||||
}
|
||||
|
||||
const struct brw_tracked_state brw_invarient_state = {
|
||||
const struct brw_tracked_state brw_invariant_state = {
|
||||
.dirty = {
|
||||
.mesa = 0,
|
||||
.brw = BRW_NEW_CONTEXT,
|
||||
.cache = 0
|
||||
},
|
||||
.emit = upload_invarient_state
|
||||
.emit = upload_invariant_state
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ const struct brw_tracked_state brw_clip_prog;
|
|||
const struct brw_tracked_state brw_clip_unit;
|
||||
const struct brw_tracked_state brw_curbe_buffer;
|
||||
const struct brw_tracked_state brw_curbe_offsets;
|
||||
const struct brw_tracked_state brw_invarient_state;
|
||||
const struct brw_tracked_state brw_invariant_state;
|
||||
const struct brw_tracked_state brw_gs_prog;
|
||||
const struct brw_tracked_state brw_gs_unit;
|
||||
const struct brw_tracked_state brw_line_stipple;
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ const struct brw_tracked_state *atoms[] =
|
|||
|
||||
/* Command packets:
|
||||
*/
|
||||
&brw_invarient_state,
|
||||
&brw_invariant_state,
|
||||
&brw_state_base_address,
|
||||
|
||||
&brw_binding_table_pointers,
|
||||
|
|
|
|||
|
|
@ -812,7 +812,7 @@ static void precalc_tex( struct brw_wm_compile *c,
|
|||
}
|
||||
|
||||
/* XXX: add GL_EXT_texture_swizzle support to gallium -- by
|
||||
* generating shader varients in mesa state tracker.
|
||||
* generating shader variants in mesa state tracker.
|
||||
*/
|
||||
|
||||
/* Release this temp if we ended up allocating it:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue