wined3d: Make the device parameter to context_choose_pixel_format() const.

This commit is contained in:
Henri Verbeet 2011-10-20 21:42:59 +02:00 committed by Alexandre Julliard
parent a2c754dde8
commit f28ba9007e
1 changed files with 1 additions and 1 deletions

View File

@ -1119,7 +1119,7 @@ void context_invalidate_state(struct wined3d_context *context, DWORD state)
}
/* This function takes care of wined3d pixel format selection. */
static int context_choose_pixel_format(struct wined3d_device *device, HDC hdc,
static int context_choose_pixel_format(const struct wined3d_device *device, HDC hdc,
const struct wined3d_format *color_format, const struct wined3d_format *ds_format,
BOOL auxBuffers, BOOL findCompatible)
{