2019-07-08 16:00:47 +00:00
|
|
|
#ifndef __vid_sw_h
|
|
|
|
#define __vid_sw_h
|
|
|
|
|
|
|
|
struct vrect_s;
|
|
|
|
typedef struct sw_ctx_s {
|
2021-07-10 15:09:41 +00:00
|
|
|
int pixbytes;
|
2022-03-09 05:26:16 +00:00
|
|
|
void (*choose_visual) (struct sw_ctx_s *ctx);
|
|
|
|
void (*create_context) (struct sw_ctx_s *ctx);
|
|
|
|
void (*set_palette) (struct sw_ctx_s *ctx, const byte *palette);
|
|
|
|
void (*update) (struct sw_ctx_s *ctx, struct vrect_s *rects);
|
2019-07-08 16:00:47 +00:00
|
|
|
} sw_ctx_t;
|
|
|
|
|
|
|
|
extern sw_ctx_t *sw_ctx;
|
2022-03-09 05:26:16 +00:00
|
|
|
|
2022-03-07 14:32:44 +00:00
|
|
|
struct tex_s *sw_SCR_CaptureBGR (void);
|
|
|
|
|
2019-07-08 16:00:47 +00:00
|
|
|
#endif//__vid_sw_h
|