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/hud | |
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/hud')
-rw-r--r-- | src/gallium/auxiliary/hud/hud_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index 691de81f20a..de019ebcb02 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -1176,7 +1176,7 @@ hud_create(struct pipe_context *pipe, struct cso_context *cso) hud->pipe = pipe; hud->cso = cso; - hud->uploader = u_upload_create(pipe, 256 * 1024, 16, + hud->uploader = u_upload_create(pipe, 256 * 1024, PIPE_BIND_VERTEX_BUFFER); /* font */ |