Henri Verbeet : wined3d: Make the device parameter to drawStridedSlow() const.
Module: wine Branch: master Commit: 22f5d0081f374d3774a1f57dfc5dfe8f7fe4c150 URL: http://source.winehq.org/git/wine.git/?a=commit;h=22f5d0081f374d3774a1f57dfc... Author: Henri Verbeet <hverbeet(a)codeweavers.com> Date: Tue Aug 23 20:08:12 2011 +0200 wined3d: Make the device parameter to drawStridedSlow() const. --- dlls/wined3d/drawprim.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/wined3d/drawprim.c b/dlls/wined3d/drawprim.c index ea2dd8f..dde71b4 100644 --- a/dlls/wined3d/drawprim.c +++ b/dlls/wined3d/drawprim.c @@ -65,7 +65,7 @@ static void drawStridedFast(const struct wined3d_gl_info *gl_info, GLenum primit */ /* GL locking is done by the caller */ -static void drawStridedSlow(struct wined3d_device *device, const struct wined3d_context *context, +static void drawStridedSlow(const struct wined3d_device *device, const struct wined3d_context *context, const struct wined3d_stream_info *si, UINT NumVertexes, GLenum glPrimType, const void *idxData, UINT idxSize, UINT startIdx) {
participants (1)
-
Alexandre Julliard