radeonsi: make const and stream uploaders allocate read-only memory
and anything that clones these uploaders, like u_threaded_context. Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
@@ -445,12 +445,15 @@ bool si_common_context_init(struct r600_common_context *rctx,
|
||||
return false;
|
||||
|
||||
rctx->b.stream_uploader = u_upload_create(&rctx->b, 1024 * 1024,
|
||||
0, PIPE_USAGE_STREAM, 0);
|
||||
0, PIPE_USAGE_STREAM,
|
||||
R600_RESOURCE_FLAG_READ_ONLY);
|
||||
if (!rctx->b.stream_uploader)
|
||||
return false;
|
||||
|
||||
rctx->b.const_uploader = u_upload_create(&rctx->b, 128 * 1024,
|
||||
0, PIPE_USAGE_DEFAULT, 0);
|
||||
0, PIPE_USAGE_DEFAULT,
|
||||
sscreen->cpdma_prefetch_writes_memory ?
|
||||
0 : R600_RESOURCE_FLAG_READ_ONLY);
|
||||
if (!rctx->b.const_uploader)
|
||||
return false;
|
||||
|
||||
|
Reference in New Issue
Block a user