Searched refs:scissor (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.3-release/sys/dev/drm/
H A Dmach64_state.c85 /* Mach64 doesn't have hardware cliprects, just one hardware scissor,
86 * so the GL scissor is intersected with each cliprect here
96 struct drm_clip_rect scissor; local
103 /* Get GL scissor */
104 /* FIXME: store scissor in SAREA as a cliprect instead of in
107 scissor.x1 = regs->sc_left_right & 0xffff;
108 scissor.x2 = (regs->sc_left_right & 0xffff0000) >> 16;
109 scissor.y1 = regs->sc_top_bottom & 0xffff;
110 scissor.y2 = (regs->sc_top_bottom & 0xffff0000) >> 16;
112 /* Intersect GL scissor wit
[all...]

Completed in 55 milliseconds