user_assert(Index < PIPE_MAX_CLIP_PLANES, D3DERR_INVALIDCALL);
memcpy(&state->clip.ucp[Index][0], pPlane, sizeof(state->clip.ucp[0]));
- state->changed.ucp |= 1 << Index;
+ if (unlikely(This->is_recording))
+ state->changed.ucp |= 1 << Index;
+ else
+ nine_context_set_clip_plane(This, Index, pPlane);
return D3D_OK;
}
context->commit = 0;
- if (unlikely(state->changed.ucp)) {
- pipe->set_clip_state(pipe, &state->clip);
- state->changed.ucp = 0;
+ if (unlikely(context->changed.ucp)) {
+ pipe->set_clip_state(pipe, &context->clip);
+ context->changed.ucp = FALSE;
}
if (unlikely(group & NINE_STATE_RARE)) {
context->ff.changed.tex_stage[Stage][Type / 32] |= 1 << (Type % 32);
}
+void
+nine_context_set_clip_plane(struct NineDevice9 *device,
+ DWORD Index,
+ const float *pPlane)
+{
+ struct nine_context *context = &device->context;
+
+ memcpy(&context->clip.ucp[Index][0], pPlane, sizeof(context->clip.ucp[0]));
+ context->changed.ucp = TRUE;
+}
+
void
nine_context_apply_stateblock(struct NineDevice9 *device,
const struct nine_state *src)
if (src->changed.group & NINE_STATE_SCISSOR)
context->scissor = src->scissor;
+ /* User Clip Planes */
+ if (src->changed.ucp) {
+ for (i = 0; i < PIPE_MAX_CLIP_PLANES; ++i)
+ if (src->changed.ucp & (1 << i))
+ memcpy(context->clip.ucp[i],
+ src->clip.ucp[i], sizeof(src->clip.ucp[0]));
+ context->changed.ucp = TRUE;
+ }
+
if (!(src->changed.group & NINE_STATE_FF))
return;
state->changed.group = NINE_STATE_ALL;
context->changed.vtxbuf = (1ULL << device->caps.MaxStreams) - 1;
- state->changed.ucp = (1 << PIPE_MAX_CLIP_PLANES) - 1;
+ context->changed.ucp = TRUE;
context->commit |= NINE_STATE_COMMIT_CONST_VS | NINE_STATE_COMMIT_CONST_PS;
}
*/
state->changed.group = NINE_STATE_ALL;
context->changed.vtxbuf = (1ULL << device->caps.MaxStreams) - 1;
- state->changed.ucp = (1 << PIPE_MAX_CLIP_PLANES) - 1;
+ context->changed.ucp = TRUE;
context->ff.changed.transform[0] = ~0;
context->ff.changed.transform[D3DTS_WORLD / 32] |= 1 << (D3DTS_WORLD % 32);
uint16_t ps_const_i; /* NINE_MAX_CONST_I == 16 */
struct nine_range *vs_const_b; /* stateblocks only */
uint16_t ps_const_b; /* NINE_MAX_CONST_B == 16 */
- uint8_t ucp;
+ uint8_t ucp; /* stateblocks only */
} changed;
struct NineSurface9 *rt[NINE_MAX_SIMULTANEOUS_RENDERTARGETS];
BOOL ps_const_f;
BOOL ps_const_i;
BOOL ps_const_b;
+ BOOL ucp;
} changed;
uint32_t bumpmap_vars[6 * NINE_MAX_TEXTURE_STAGES];
struct pipe_index_buffer idxbuf;
+ struct pipe_clip_state clip;
+
DWORD rs[NINED3DRS_COUNT];
struct NineBaseTexture9 *texture[NINE_MAX_SAMPLERS];
nine_context_set_depth_stencil(struct NineDevice9 *device,
struct NineSurface9 *ds);
+void
+nine_context_set_clip_plane(struct NineDevice9 *device,
+ DWORD Index,
+ const float *pPlane);
+
void
nine_context_apply_stateblock(struct NineDevice9 *device,
const struct nine_state *src);