We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f2af3b + 90d7056 commit 3a84fb7Copy full SHA for 3a84fb7
src/SDLx/Surface.xs
@@ -16,6 +16,14 @@
16
#include <SDL_gfxPrimitives.h>
17
#endif
18
19
+int _calc_offset ( SDL_Surface* surface, int x, int y )
20
+{
21
+ int offset;
22
+ offset = (surface->pitch * y) / surface->format->BytesPerPixel;
23
+ offset += x;
24
+ return offset;
25
+}
26
+
27
SV * get_pixel32 (SDL_Surface *surface, int x, int y)
28
{
29
/* Convert the pixels to 32 bit */
@@ -52,14 +60,6 @@ SV * construct_p_matrix ( SDL_Surface *surface )
52
60
return newRV_noinc((SV *)matrix);
53
61
}
54
62
55
-int _calc_offset ( SDL_Surface* surface, int x, int y )
56
-{
57
- int offset;
58
- offset = (surface->pitch * y) / surface->format->BytesPerPixel;
59
- offset += x;
- return offset;
-}
-
63
unsigned int _get_pixel(SDL_Surface * surface, int offset)
64
65
unsigned int value;
0 commit comments