mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-05-31 05:56:24 +08:00
surface: Add a private SDL_ReadSurfacePixel
This shares its implementation with SDLTest_ReadSurfacePixel: the same code is compiled twice, to get it into the static test library and also the public shared library. Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
committed by
Sam Lantinga
parent
0d68f45879
commit
f5745c3a67
@@ -23,6 +23,7 @@
|
|||||||
#include "SDL_sysvideo.h"
|
#include "SDL_sysvideo.h"
|
||||||
#include "SDL_blit.h"
|
#include "SDL_blit.h"
|
||||||
#include "SDL_RLEaccel_c.h"
|
#include "SDL_RLEaccel_c.h"
|
||||||
|
#include "SDL_surface_pixel_impl.h"
|
||||||
#include "SDL_pixels_c.h"
|
#include "SDL_pixels_c.h"
|
||||||
#include "SDL_yuv_c.h"
|
#include "SDL_yuv_c.h"
|
||||||
#include "../render/SDL_sysrender.h"
|
#include "../render/SDL_sysrender.h"
|
||||||
@@ -34,6 +35,12 @@ SDL_COMPILE_TIME_ASSERT(surface_size_assumptions,
|
|||||||
|
|
||||||
SDL_COMPILE_TIME_ASSERT(can_indicate_overflow, SDL_SIZE_MAX > SDL_MAX_SINT32);
|
SDL_COMPILE_TIME_ASSERT(can_indicate_overflow, SDL_SIZE_MAX > SDL_MAX_SINT32);
|
||||||
|
|
||||||
|
int
|
||||||
|
SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a)
|
||||||
|
{
|
||||||
|
return SDL_ReadSurfacePixel_impl(surface, x, y, r, g, b, a);
|
||||||
|
}
|
||||||
|
|
||||||
/* Public routines */
|
/* Public routines */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -57,4 +57,6 @@ extern void SDL_VideoQuit(void);
|
|||||||
|
|
||||||
extern int SDL_SetWindowTextureVSync(SDL_Window *window, int vsync);
|
extern int SDL_SetWindowTextureVSync(SDL_Window *window, int vsync);
|
||||||
|
|
||||||
|
extern int SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a);
|
||||||
|
|
||||||
#endif /* SDL_video_c_h_ */
|
#endif /* SDL_video_c_h_ */
|
||||||
|
|||||||
Reference in New Issue
Block a user