mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
asahi: enable tcs caching
works fine Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27616>
This commit is contained in:
parent
19da2f6d30
commit
9e8ce4550c
1 changed files with 2 additions and 3 deletions
|
|
@ -70,9 +70,8 @@ agx_disk_cache_store(struct disk_cache *cache,
|
|||
if (!cache)
|
||||
return;
|
||||
|
||||
/* TODO: Support caching GS/TCS */
|
||||
if (uncompiled->type == PIPE_SHADER_GEOMETRY ||
|
||||
uncompiled->type == PIPE_SHADER_TESS_CTRL)
|
||||
/* TODO: Support caching GS */
|
||||
if (uncompiled->type == PIPE_SHADER_GEOMETRY)
|
||||
return;
|
||||
|
||||
assert(binary->bo->ptr.cpu != NULL && "shaders must be CPU mapped");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue