diff options
author | Marek Olšák <[email protected]> | 2015-12-19 17:43:48 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-01-02 15:15:45 +0100 |
commit | 37d0aea772a39f9ae7fe3d791e23c1be03ccf9de (patch) | |
tree | b6fb4928a1eca231f3cdda5bec1a0a8217ddbe62 /src/gallium/auxiliary/indices | |
parent | 1bb79c3a7bee7298b0415ee21a9412c98b1cfee5 (diff) |
u_upload_mgr: remove alignment parameter from u_upload_create
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/indices')
-rw-r--r-- | src/gallium/auxiliary/indices/u_primconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/indices/u_primconvert.c b/src/gallium/auxiliary/indices/u_primconvert.c index c0a31548433..e21174a608f 100644 --- a/src/gallium/auxiliary/indices/u_primconvert.c +++ b/src/gallium/auxiliary/indices/u_primconvert.c @@ -153,7 +153,7 @@ util_primconvert_draw_vbo(struct primconvert_context *pc, } if (!pc->upload) { - pc->upload = u_upload_create(pc->pipe, 4096, 4, PIPE_BIND_INDEX_BUFFER); + pc->upload = u_upload_create(pc->pipe, 4096, PIPE_BIND_INDEX_BUFFER); } u_upload_alloc(pc->upload, 0, new_ib.index_size * new_info.count, 4, |