diff options
author | Zoë Blade <[email protected]> | 2015-04-22 11:33:17 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2015-04-27 17:28:29 +0300 |
commit | 05e7f7f4388bde882b7ce74124000a4d435affff (patch) | |
tree | 9a7c7ea02152900a03fc6662aa60a7b8f79dad06 /src/gallium/drivers/i915 | |
parent | e17dc004fd96e589e92ee64deeb45339af4bf671 (diff) |
Fix a few typos
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/gallium/drivers/i915')
-rw-r--r-- | src/gallium/drivers/i915/i915_prim_vbuf.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/i915/i915_resource_texture.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/i915/i915_state_dynamic.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/i915/i915_state_immediate.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/i915/i915_prim_vbuf.c b/src/gallium/drivers/i915/i915_prim_vbuf.c index dff51c580c0..d134dbb1620 100644 --- a/src/gallium/drivers/i915/i915_prim_vbuf.c +++ b/src/gallium/drivers/i915/i915_prim_vbuf.c @@ -266,7 +266,7 @@ i915_vbuf_render_map_vertices(struct vbuf_render *render) struct i915_context *i915 = i915_render->i915; if (i915->vbo_flushed) - debug_printf("%s bad vbo flush occured stalling on hw\n", __FUNCTION__); + debug_printf("%s bad vbo flush occurred stalling on hw\n", __FUNCTION__); #ifdef VBUF_MAP_BUFFER return (unsigned char *)i915_render->vbo_ptr + i915_render->vbo_sw_offset; diff --git a/src/gallium/drivers/i915/i915_resource_texture.c b/src/gallium/drivers/i915/i915_resource_texture.c index dc8f4d1c903..8ef73d6f2c2 100644 --- a/src/gallium/drivers/i915/i915_resource_texture.c +++ b/src/gallium/drivers/i915/i915_resource_texture.c @@ -452,7 +452,7 @@ i945_texture_layout_2d(struct i915_texture *tex) tex->stride = align(util_format_get_stride(pt->format, width), 4); - /* May need to adjust pitch to accomodate the placement of + /* May need to adjust pitch to accommodate the placement of * the 2nd mipmap level. This occurs when the alignment * constraints of mipmap placement push the right edge of the * 2nd mipmap level out past the width of its parent. diff --git a/src/gallium/drivers/i915/i915_state_dynamic.c b/src/gallium/drivers/i915/i915_state_dynamic.c index cf0f18afe78..4050cd4ac44 100644 --- a/src/gallium/drivers/i915/i915_state_dynamic.c +++ b/src/gallium/drivers/i915/i915_state_dynamic.c @@ -315,5 +315,5 @@ static void update_dynamic(struct i915_context *i915) struct i915_tracked_state i915_hw_dynamic = { "dynamic", update_dynamic, - ~0 /* all state atoms, becuase we do internal checking */ + ~0 /* all state atoms, because we do internal checking */ }; diff --git a/src/gallium/drivers/i915/i915_state_immediate.c b/src/gallium/drivers/i915/i915_state_immediate.c index 56af11324f6..d244a349fce 100644 --- a/src/gallium/drivers/i915/i915_state_immediate.c +++ b/src/gallium/drivers/i915/i915_state_immediate.c @@ -230,5 +230,5 @@ static void update_immediate(struct i915_context *i915) struct i915_tracked_state i915_hw_immediate = { "immediate", update_immediate, - ~0 /* all state atoms, becuase we do internal checking */ + ~0 /* all state atoms, because we do internal checking */ }; |