engine_upload: Addapt to new Texture Cache

This commit is contained in:
Fernando Sahmkow
2019-05-11 00:38:35 -04:00
committed by ReinUsesLisp
parent 2131f71573
commit 6bd034eae9
2 changed files with 5 additions and 5 deletions

View File

@ -39,15 +39,15 @@ struct Registers {
}
u32 BlockWidth() const {
return 1U << block_width.Value();
return block_width;
}
u32 BlockHeight() const {
return 1U << block_height.Value();
return block_height;
}
u32 BlockDepth() const {
return 1U << block_depth.Value();
return block_depth;
}
} dest;
};