revert between 56095 -> 55830 in arch
[AROS.git] / workbench / libs / mesa / src / gallium / include / state_tracker / drisw_api.h
blob944a649257e08e8f31f1567f17f79b0a46264906
1 #ifndef _DRISW_API_H_
2 #define _DRISW_API_H_
4 #include "pipe/p_compiler.h"
6 struct pipe_screen;
7 struct dri_drawable;
9 /**
10 * This callback struct is intended for the winsys to call the loader.
12 struct drisw_loader_funcs
14 void (*put_image) (struct dri_drawable *dri_drawable,
15 void *data, unsigned width, unsigned height);
18 /**
19 * Implemented by the drisw target.
21 struct pipe_screen * drisw_create_screen(struct drisw_loader_funcs *lf);
23 #endif