slouken@5163
|
1 |
/*
|
slouken@5535
|
2 |
Simple DirectMedia Layer
|
slouken@11811
|
3 |
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
|
slouken@5163
|
4 |
|
slouken@5535
|
5 |
This software is provided 'as-is', without any express or implied
|
slouken@5535
|
6 |
warranty. In no event will the authors be held liable for any damages
|
slouken@5535
|
7 |
arising from the use of this software.
|
slouken@5163
|
8 |
|
slouken@5535
|
9 |
Permission is granted to anyone to use this software for any purpose,
|
slouken@5535
|
10 |
including commercial applications, and to alter it and redistribute it
|
slouken@5535
|
11 |
freely, subject to the following restrictions:
|
slouken@5163
|
12 |
|
slouken@5535
|
13 |
1. The origin of this software must not be misrepresented; you must not
|
slouken@5535
|
14 |
claim that you wrote the original software. If you use this software
|
slouken@5535
|
15 |
in a product, an acknowledgment in the product documentation would be
|
slouken@5535
|
16 |
appreciated but is not required.
|
slouken@5535
|
17 |
2. Altered source versions must be plainly marked as such, and must not be
|
slouken@5535
|
18 |
misrepresented as being the original software.
|
slouken@5535
|
19 |
3. This notice may not be removed or altered from any source distribution.
|
slouken@5163
|
20 |
*/
|
janisozaur+sdl2image@12366
|
21 |
|
janisozaur+sdl2image@12366
|
22 |
#ifndef SDL_blendline_h_
|
janisozaur+sdl2image@12366
|
23 |
#define SDL_blendline_h_
|
janisozaur+sdl2image@12366
|
24 |
|
icculus@8093
|
25 |
#include "../../SDL_internal.h"
|
slouken@5163
|
26 |
|
slouken@5163
|
27 |
|
slouken@5163
|
28 |
extern int SDL_BlendLine(SDL_Surface * dst, int x1, int y1, int x2, int y2, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a);
|
slouken@5163
|
29 |
extern int SDL_BlendLines(SDL_Surface * dst, const SDL_Point * points, int count, SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a);
|
slouken@5163
|
30 |
|
janisozaur+sdl2image@12366
|
31 |
#endif /* SDL_blendline_h_ */
|
janisozaur+sdl2image@12366
|
32 |
|
slouken@5163
|
33 |
/* vi: set ts=4 sw=4 expandtab: */
|