mirror of
https://github.com/xenia-project/xenia.git
synced 2025-04-02 11:02:16 -04:00
10 lines
411 B
C++
10 lines
411 B
C++
// File: crn_zeng.h
|
|
// See Copyright Notice and license at the end of inc/crnlib.h
|
|
|
|
namespace crnlib
|
|
{
|
|
typedef float (*zeng_similarity_func)(uint index_a, uint index_b, void* pContext);
|
|
|
|
void create_zeng_reorder_table(uint n, uint num_indices, const uint* pIndices, crnlib::vector<uint>& remap_table, zeng_similarity_func pFunc, void* pContext, float similarity_func_weight);
|
|
|
|
} // namespace crnlib
|