-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathZXTestsSimpleBitBlit.h
More file actions
39 lines (35 loc) · 2.75 KB
/
ZXTestsSimpleBitBlit.h
File metadata and controls
39 lines (35 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// ZX Graphics library, part of Another Graphics library
//
// Created by error on 20.01.18.
// Copyright © 2018 errorsoft. All rights reserved.
//
#ifndef zxGraphicsBitBlitForTests_h
#define zxGraphicsBitBlitForTests_h
#include "ZXGraphics.h"
// tests
void ZXRawBitBlitCopy_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitOr_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitAnd_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitXor_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitNotCopy_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitNotOr_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitNotAnd_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawBitBlitNotXor_test(ZXBitmapRef bitmap, int x, int y,
ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight);// for tests
void ZXRawMaskBlitCopy_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitOr_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitAnd_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitXor_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitNotCopy_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitNotOr_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitNotAnd_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
void ZXRawMaskBlitNotXor_test(ZXBitmapRef bitmap, int x, int y, ZXBitmapRef src, int srcX, int srcY, int srcWidth, int srcHeight, ZXBitmapRef mask);
#endif /* zxGraphicsBitBlitForTests_h */