dxt.h 192 B

12345678910
  1. #pragma once
  2. struct DXTUnpackContext {
  3. int width, height;
  4. const void *packed;
  5. void *output;
  6. };
  7. void dxt1Unpack(struct DXTUnpackContext ctx);
  8. void dxt5Unpack(struct DXTUnpackContext ctx);