mirror of
https://github.com/open-goal/jak-project
synced 2026-06-17 07:08:17 -04:00
3afd99a8e3
* 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
13 lines
246 B
C++
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
|