diff options
author | Chris Forbes <[email protected]> | 2014-01-25 19:51:50 +1300 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-02-05 22:02:23 -0800 |
commit | bba1105d52efdf26b9cdf4e389f68d928e5ca3b2 (patch) | |
tree | f88de53954706609a8cbe6cc05e28716acec280a /src | |
parent | e57d77280efcbfd6579a88f071426653287ef833 (diff) |
i965/vs: Fix typo in brw_compute_vue_map
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.c b/src/mesa/drivers/dri/i965/brw_vs.c index a4f2ac63a0f..092d53af3f5 100644 --- a/src/mesa/drivers/dri/i965/brw_vs.c +++ b/src/mesa/drivers/dri/i965/brw_vs.c @@ -61,7 +61,7 @@ brw_compute_vue_map(struct brw_context *brw, struct brw_vue_map *vue_map, int i; /* gl_Layer and gl_ViewportIndex don't get their own varying slots -- they - * are stored in the virst VUE slot (VARYING_SLOT_PSIZ). + * are stored in the first VUE slot (VARYING_SLOT_PSIZ). */ slots_valid &= ~(VARYING_BIT_LAYER | VARYING_BIT_VIEWPORT); |