New upstream version 25.0.3+dfsg1
This commit is contained in:
parent
04fe0efc67
commit
8b2e5f2130
569 changed files with 62491 additions and 5875 deletions
|
|
@ -53,7 +53,7 @@ struct gs_exports {
|
|||
gs_texture_t *(*device_voltexture_create)(
|
||||
gs_device_t *device, uint32_t width, uint32_t height,
|
||||
uint32_t depth, enum gs_color_format color_format,
|
||||
uint32_t levels, const uint8_t **data, uint32_t flags);
|
||||
uint32_t levels, const uint8_t *const *data, uint32_t flags);
|
||||
gs_zstencil_t *(*device_zstencil_create)(
|
||||
gs_device_t *device, uint32_t width, uint32_t height,
|
||||
enum gs_zstencil_format format);
|
||||
|
|
@ -115,6 +115,7 @@ struct gs_exports {
|
|||
uint32_t src_w, uint32_t src_h);
|
||||
void (*device_stage_texture)(gs_device_t *device, gs_stagesurf_t *dst,
|
||||
gs_texture_t *src);
|
||||
void (*device_begin_frame)(gs_device_t *device);
|
||||
void (*device_begin_scene)(gs_device_t *device);
|
||||
void (*device_draw)(gs_device_t *device, enum gs_draw_mode draw_mode,
|
||||
uint32_t start_vert, uint32_t num_verts);
|
||||
|
|
@ -310,6 +311,10 @@ struct gs_exports {
|
|||
gs_stagesurf_t *(*device_stagesurface_create_nv12)(gs_device_t *device,
|
||||
uint32_t width,
|
||||
uint32_t height);
|
||||
void (*device_register_loss_callbacks)(
|
||||
gs_device_t *device, const struct gs_device_loss *callbacks);
|
||||
void (*device_unregister_loss_callbacks)(gs_device_t *device,
|
||||
void *data);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue