Skip to content

Commit 2939fff

Browse files
committed
projet
1 parent 0697969 commit 2939fff

1,129 files changed

Lines changed: 151951 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#define NO_PYGAME_C_API
2+
#include "_surface.h"
3+
4+
/* The structure passed to the low level blit functions */
5+
typedef struct {
6+
int width;
7+
int height;
8+
Uint8 *s_pixels;
9+
int s_pxskip;
10+
int s_skip;
11+
Uint8 *d_pixels;
12+
int d_pxskip;
13+
int d_skip;
14+
SDL_PixelFormat *src;
15+
SDL_PixelFormat *dst;
16+
Uint8 src_blanket_alpha;
17+
int src_has_colorkey;
18+
Uint32 src_colorkey;
19+
SDL_BlendMode src_blend;
20+
SDL_BlendMode dst_blend;
21+
} SDL_BlitInfo;
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
pygame - Python Game Library
3+
4+
This library is free software; you can redistribute it and/or
5+
modify it under the terms of the GNU Library General Public
6+
License as published by the Free Software Foundation; either
7+
version 2 of the License, or (at your option) any later version.
8+
9+
This library is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
Library General Public License for more details.
13+
14+
You should have received a copy of the GNU Library General Public
15+
License along with this library; if not, write to the Free
16+
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17+
18+
*/
19+
20+
#ifndef _CAMERA_H
21+
#define _CAMERA_H
22+
23+
#include "_pygame.h"
24+
#include "camera.h"
25+
26+
#endif

0 commit comments

Comments
 (0)