summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvfx/nvfx_state_scissor.c
blob: dd6ae757df7e057138f7a0283de24e68a0b8f08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "nvfx_context.h"

static boolean
nvfx_state_scissor_validate(struct nvfx_context *nvfx)
{
	struct nouveau_channel *chan = nvfx->screen->base.channel;
	struct pipe_rasterizer_state *rast = &nvfx->rasterizer->pipe;
	struct pipe_scissor_state *s = &nvfx->scissor;

	if ((rast->scissor == 0 && nvfx->state.scissor_enabled == 0))
		return FALSE;
	nvfx->state.scissor_enabled = rast->scissor;

	WAIT_RING(chan, 3);
	OUT_RING(chan, RING_3D(NV34TCL_SCISSOR_HORIZ, 2));
	if (nvfx->state.scissor_enabled) {
		OUT_RING(chan, ((s->maxx - s->minx) << 16) | s->minx);
		OUT_RING(chan, ((s->maxy - s->miny) << 16) | s->miny);
	} else {
		OUT_RING(chan, 4096 << 16);
		OUT_RING(chan, 4096 << 16);
	}
	return TRUE;
}

struct nvfx_state_entry nvfx_state_scissor = {
	.validate = nvfx_state_scissor_validate,
	.dirty = {
		.pipe = NVFX_NEW_SCISSOR | NVFX_NEW_RAST,
	}
};