wined3d: Make the src_surface parameter to draw_textured_quad() const.
This commit is contained in:
parent
0d18f5df0e
commit
aa55404682
|
@ -288,7 +288,7 @@ static inline void surface_get_rect(struct wined3d_surface *surface, const RECT
|
|||
}
|
||||
|
||||
/* GL locking and context activation is done by the caller */
|
||||
void draw_textured_quad(struct wined3d_surface *src_surface, const RECT *src_rect,
|
||||
void draw_textured_quad(const struct wined3d_surface *src_surface, const RECT *src_rect,
|
||||
const RECT *dst_rect, WINED3DTEXTUREFILTERTYPE Filter)
|
||||
{
|
||||
struct blt_info info;
|
||||
|
|
|
@ -2095,8 +2095,8 @@ void get_drawable_size_swapchain(const struct wined3d_context *context, UINT *wi
|
|||
void get_drawable_size_backbuffer(const struct wined3d_context *context, UINT *width, UINT *height) DECLSPEC_HIDDEN;
|
||||
void get_drawable_size_fbo(const struct wined3d_context *context, UINT *width, UINT *height) DECLSPEC_HIDDEN;
|
||||
|
||||
void draw_textured_quad(struct wined3d_surface *src_surface, const RECT *src_rect,
|
||||
const RECT *dst_rect, WINED3DTEXTUREFILTERTYPE Filter) DECLSPEC_HIDDEN;
|
||||
void draw_textured_quad(const struct wined3d_surface *src_surface, const RECT *src_rect,
|
||||
const RECT *dst_rect, WINED3DTEXTUREFILTERTYPE Filter) DECLSPEC_HIDDEN;
|
||||
void flip_surface(struct wined3d_surface *front, struct wined3d_surface *back) DECLSPEC_HIDDEN;
|
||||
|
||||
/* Surface flags: */
|
||||
|
|
Loading…
Reference in New Issue