Searched defs:plane_idx (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddevice.c2090 UINT plane_idx, const struct wined3d_vec4 *plane)
2092 TRACE("device %p, plane_idx %u, plane %p.\n", device, plane_idx, plane);
2094 /* Validate plane_idx. */
2095 if (plane_idx >= device->adapter->gl_info.limits.clipplanes)
2101 device->updateStateBlock->changed.clipplane |= 1 << plane_idx;
2103 if (!memcmp(&device->updateStateBlock->state.clip_planes[plane_idx], plane, sizeof(*plane)))
2109 device->updateStateBlock->state.clip_planes[plane_idx] = *plane;
2118 device_invalidate_state(device, STATE_CLIPPLANE(plane_idx));
2124 UINT plane_idx, struc
2089 wined3d_device_set_clip_plane(struct wined3d_device *device, UINT plane_idx, const struct wined3d_vec4 *plane) argument
2123 wined3d_device_get_clip_plane(const struct wined3d_device *device, UINT plane_idx, struct wined3d_vec4 *plane) argument
[all...]

Completed in 57 milliseconds