jak-project/decompiler/data/tpage.h
water111 083202929c
[graphics] tfrag3 renderer (#978)
* begin work

* work

* working objs

* exporting

* it works

* before some time of day fixes

* add time of day interp and also fix zbuffer

* some small blending fixes

* improve randomess

* clean up extraction and missing blend mode

* culling, time of day, more level fixes

* more cleanup

* cleanup memory usage

* windows fix
2021-12-04 12:33:18 -05:00

15 lines
309 B
C++

#pragma once
#include "decompiler/data/TextureDB.h"
namespace decompiler {
struct ObjectFileData;
struct TPageResultStats {
int total_textures = 0;
int successful_textures = 0;
int num_px = 0;
};
TPageResultStats process_tpage(ObjectFileData& data, TextureDB& texture_db);
} // namespace decompiler