Archived
1
Fork 0
This repository has been archived on 2025-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
libxiv/include/cmpparser.h

18 lines
241 B
C
Raw Normal View History

2022-05-04 15:54:16 -04:00
#pragma once
#include "memorybuffer.h"
struct RacialScalingParameter {
};
struct ColorData {
uint8_t r, g, b, a;
};
struct CMP {
std::vector<ColorData> colorPixels;
};
void read_cmp(MemoryBuffer data);
void write_cmp(CMP cmp);