mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 17:25:46 +00:00
shader: Initial support for textures and TEX
This commit is contained in:
parent
7d6ba5b984
commit
ab46371247
33 changed files with 1489 additions and 342 deletions
|
@ -39,6 +39,10 @@ u64 FileEnvironment::ReadInstruction(u32 offset) {
|
|||
return data[offset / 8];
|
||||
}
|
||||
|
||||
u32 FileEnvironment::TextureBoundBuffer() {
|
||||
throw NotImplementedException("Texture bound buffer serialization");
|
||||
}
|
||||
|
||||
std::array<u32, 3> FileEnvironment::WorkgroupSize() {
|
||||
return {1, 1, 1};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue