mirror of https://github.com/xemu-project/xemu.git
ymax instead of ymin for clip seems to work better
This commit is contained in:
parent
82b884beaa
commit
3ca7c1fe42
|
@ -4491,8 +4491,9 @@ static void pgraph_method(NV2AState *d,
|
|||
unsigned int ymax = GET_MASK(pg->regs[NV_PGRAPH_CLEARRECTY],
|
||||
NV_PGRAPH_CLEARRECTY_YMAX);
|
||||
|
||||
/* FIXME: Maybe "pg->surface_shape.clip_height-ymax" instead of ymin? */
|
||||
glScissor(xmin, ymin, xmax-xmin+1, ymax-ymin+1);
|
||||
/* FIXME: Should this really be inverted instead of ymin? */
|
||||
glScissor(xmin, pg->surface_shape.clip_height-ymax,
|
||||
xmax-xmin+1, ymax-ymin+1);
|
||||
|
||||
NV2A_DPRINTF("------------------CLEAR 0x%x %d,%d - %d,%d %x---------------\n",
|
||||
parameter, xmin, ymin, xmax, ymax, d->pgraph.regs[NV_PGRAPH_COLORCLEARVALUE]);
|
||||
|
|
Loading…
Reference in New Issue