fallout2-ce/src/mmx.h

9 lines
291 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef MMX_H
#define MMX_H
bool mmxIsSupported();
void mmxBlit(unsigned char* dest, int destPitch, unsigned char* src, int srcPitch, int width, int height);
void mmxBlitTrans(unsigned char* dest, int destPitch, unsigned char* src, int srcPitch, int width, int height);
#endif /* MMX_H */