Files
jak-project/decompiler/data/tpage.h
T
water111 3afd99a8e3 [graphics] partial tfrag implementation (#958)
* temp

* some decomp

* tfrag dma setup

* fix negative label bug

* tfrag dma setup

* tfrag, with pipeline tricks

* kinda works

* cleanup before trying some color stuff

* time of day works

* clean up

* temp before render changes

* a few more fixes

* fix up tests

* clean up

* fix

* fix alignment

* one more cleanup
2021-11-13 20:44:17 -05:00

13 lines
246 B
C++

#pragma once
namespace decompiler {
struct ObjectFileData;
struct TPageResultStats {
int total_textures = 0;
int successful_textures = 0;
int num_px = 0;
};
TPageResultStats process_tpage(ObjectFileData& data);
} // namespace decompiler