Method

CoglFramebufferpush_scissor_clip

Declaration [src]

void
cogl_framebuffer_push_scissor_clip (
  CoglFramebuffer* framebuffer,
  int x,
  int y,
  int width,
  int height
)

Description [src]

Specifies a rectangular clipping area for all subsequent drawing operations. Any drawing commands that extend outside the rectangle will be clipped so that only the portion inside the rectangle will be displayed. The rectangle dimensions are not transformed by the current model-view matrix.

The rectangle is intersected with the current clip region. To undo the effect of this function, call cogl_framebuffer_pop_clip().

Stability:Unstable
Available since:1.10

Parameters

x int
 

Left edge of the clip rectangle in window coordinates.

y int
 

Top edge of the clip rectangle in window coordinates.

width int
 

Width of the clip rectangle.

height int
 

Height of the clip rectangle.