diff options
| author | Michal Krol <michal@tungstengraphics.com> | 2008-05-31 18:19:21 +0200 |
|---|---|---|
| committer | Michal Krol <michal@tungstengraphics.com> | 2008-05-31 18:19:21 +0200 |
| commit | 13581958bd99396ab8ec314f10cf61f717b18a9b (patch) | |
| tree | 13b762fae6736556ed127e83f5821e434c875ec7 | |
| parent | ffc6afcdbf14b5d26bd3665a269fdd28d944afed (diff) | |
draw: Remove const qualifier.
| -rw-r--r-- | src/gallium/auxiliary/draw/draw_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h index 4f8cceee1e..423f64262b 100644 --- a/src/gallium/auxiliary/draw/draw_private.h +++ b/src/gallium/auxiliary/draw/draw_private.h @@ -193,7 +193,7 @@ struct draw_context const float (*aligned_constants)[4]; - const float (*aligned_constant_storage)[4]; + float (*aligned_constant_storage)[4]; unsigned const_storage_size; |
