ilo: rename cache_seqno to uploaded

It has been used as a bool since shader cache rework.
This commit is contained in:
Chia-I Wu 2013-06-20 11:36:36 +08:00
parent ffebefa114
commit 8b2cba8f97
2 changed files with 6 additions and 6 deletions

View file

@ -74,7 +74,7 @@ ilo_shader_cache_add(struct ilo_shader_cache *shc,
shader->cache = shc;
LIST_FOR_EACH_ENTRY(sh, &shader->variants, list)
sh->cache_seqno = false;
sh->uploaded = false;
list_add(&shader->list, &shc->changed);
}
@ -118,7 +118,7 @@ ilo_shader_cache_upload_shader(struct ilo_shader_cache *shc,
LIST_FOR_EACH_ENTRY(sh, &shader->variants, list) {
int err;
if (incremental && sh->cache_seqno)
if (incremental && sh->uploaded)
continue;
/* kernels must be aligned to 64-byte */
@ -128,7 +128,7 @@ ilo_shader_cache_upload_shader(struct ilo_shader_cache *shc,
if (unlikely(err))
return -1;
sh->cache_seqno = true;
sh->uploaded = true;
sh->cache_offset = offset;
offset += sh->kernel_size;
@ -154,7 +154,7 @@ ilo_shader_cache_get_upload_size(struct ilo_shader_cache *shc,
/* see ilo_shader_cache_upload_shader() */
LIST_FOR_EACH_ENTRY(sh, &shader->variants, list) {
if (!incremental || !sh->cache_seqno)
if (!incremental || !sh->uploaded)
offset = align(offset, 64) + sh->kernel_size;
}
}
@ -165,7 +165,7 @@ ilo_shader_cache_get_upload_size(struct ilo_shader_cache *shc,
/* see ilo_shader_cache_upload_shader() */
LIST_FOR_EACH_ENTRY(sh, &shader->variants, list) {
if (!incremental || !sh->cache_seqno)
if (!incremental || !sh->uploaded)
offset = align(offset, 64) + sh->kernel_size;
}
}

View file

@ -120,7 +120,7 @@ struct ilo_shader {
struct list_head list;
/* managed by shader cache */
uint32_t cache_seqno;
bool uploaded;
uint32_t cache_offset;
};