JacksEscape/render_pattern.h

24 lines
404 B
C
Raw Permalink Normal View History

2024-03-19 11:59:09 +08:00
#pragma once
// for BYTE
#include <windows.h>
2024-03-19 11:59:09 +08:00
2024-03-19 15:14:23 +08:00
#ifdef __cplusplus
extern "C" {
#endif
2024-03-19 11:59:09 +08:00
// Returns a dissolve pattern for the given progress in [0,1]
2024-03-19 15:14:23 +08:00
// From empty to full
BYTE *render_DissolvePatternIn(double progress);
// From full to empty
BYTE *render_DissolvePatternOut(double progress);
2024-03-19 11:59:09 +08:00
// The underlying data. 520 bytes
extern char render_DissolvePatternData[520];
2024-03-19 15:14:23 +08:00
#ifdef __cplusplus
}
#endif