mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 18:35:45 +00:00
engine_upload: Addapt to new Texture Cache
This commit is contained in:
parent
2131f71573
commit
6bd034eae9
2 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue