HomeSort by relevance Sort by last modified time
    Searched defs:scissor (Results 26 - 50 of 67) sorted by null

12 3

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 205 /* if variant is opaque and scissor doesn't effect the tile */
488 * triangle bounding box and the scissor rect to generate the
489 * scissor planes.
500 * Note that otherwise, the scissor planes only vary in 'C' value,
505 const struct u_rect *scissor = &setup->scissor; local
509 plane[3].c = 1-scissor->x0;
514 plane[4].c = scissor->x1+1;
519 plane[5].c = 1-scissor->y0;
524 plane[6].c = scissor->y1+1
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_context.h 102 struct pipe_scissor_state scissor; member in struct:nv30_context
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_context.h 106 uint16_t scissor; member in struct:nv50_context::__anon24909
146 struct pipe_scissor_state scissor; member in struct:nv50_context
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_context.h 99 uint16_t scissor; member in struct:nvc0_context::__anon24918
150 struct pipe_scissor_state scissor; member in struct:nvc0_context
  /external/mesa3d/src/mesa/state_tracker/
st_context.h 111 struct pipe_scissor_state scissor; member in struct:st_context::__anon25632
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.cpp 282 hwc_rect_t scissor = {0, 0, hw_w, hw_h }; local
283 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
    [all...]
hwc_utils.cpp 545 const hwc_rect_t& scissor, int orient) {
561 const int& sci_l = scissor.left;
562 const int& sci_t = scissor.top;
563 const int& sci_r = scissor.right;
564 const int& sci_b = scissor.bottom;
777 hwc_rect_t scissor = {0, 0, hw_w, hw_h }; local
778 qhwc::calculate_crop_rects(crop, dst, scissor, transform);
1055 hwc_rect_t scissor = {0, 0, hw_w\/2, hw_h }; local
1061 hwc_rect_t scissor = {hw_w\/2, 0, hw_w, hw_h }; local
    [all...]
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.cpp 274 hwc_rect_t scissor = {0, 0, hw_w, hw_h }; local
275 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
    [all...]
hwc_utils.cpp 506 const hwc_rect_t& scissor, int orient) {
522 const int& sci_l = scissor.left;
523 const int& sci_t = scissor.top;
524 const int& sci_r = scissor.right;
525 const int& sci_b = scissor.bottom;
744 hwc_rect_t scissor = {0, 0, hw_w, hw_h }; local
745 qhwc::calculate_crop_rects(crop, dst, scissor, transform);
1029 hwc_rect_t scissor = {0, 0, lSplit, hw_h }; local
1035 hwc_rect_t scissor = {lSplit, 0, hw_w, hw_h }; local
    [all...]
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_mdpcomp.cpp 277 hwc_rect_t scissor = {0, 0, hw_w, hw_h }; local
278 qhwc::calculate_crop_rects(crop, dst, scissor, layer->transform);
    [all...]
hwc_utils.cpp 505 const hwc_rect_t& scissor, int orient) {
521 const int& sci_l = scissor.left;
522 const int& sci_t = scissor.top;
523 const int& sci_r = scissor.right;
524 const int& sci_b = scissor.bottom;
738 hwc_rect_t scissor = {0, 0, hw_w, hw_h }; local
739 qhwc::calculate_crop_rects(crop, dst, scissor, transform);
999 hwc_rect_t scissor = {0, 0, hw_w\/2, hw_h }; local
1005 hwc_rect_t scissor = {hw_w\/2, 0, hw_w, hw_h }; local
    [all...]
  /external/chromium_org/cc/debug/
fake_web_graphics_context_3d.h 354 virtual void scissor( function in class:cc::FakeWebGraphicsContext3D
  /external/chromium_org/cc/output/
gl_renderer_unittest.cc 1093 virtual void scissor(GLint x, GLint y, GLsizei width, GLsizei height) { function in class:cc::__anon6498::FlippedScissorAndViewportContext
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Context.h 131 Rectangle scissor; member in struct:gl::State
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_emit.c 333 "r300: Scissor width: %i, height: %i, CBZB clear: %s\n",
767 struct pipe_scissor_state* scissor = (struct pipe_scissor_state*)state; local
773 OUT_CS((scissor->minx << R300_CLIPRECT_X_SHIFT) |
774 (scissor->miny << R300_CLIPRECT_Y_SHIFT));
775 OUT_CS(((scissor->maxx - 1) << R300_CLIPRECT_X_SHIFT) |
776 ((scissor->maxy - 1) << R300_CLIPRECT_Y_SHIFT));
778 OUT_CS(((scissor->minx + 1440) << R300_CLIPRECT_X_SHIFT) |
779 ((scissor->miny + 1440) << R300_CLIPRECT_Y_SHIFT));
780 OUT_CS(((scissor->maxx + 1440-1) << R300_CLIPRECT_X_SHIFT) |
781 ((scissor->maxy + 1440-1) << R300_CLIPRECT_Y_SHIFT))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_state_common.c 317 /* Set a scissor state such that it doesn't do anything. */
318 struct pipe_scissor_state scissor; local
319 scissor.minx = 0;
320 scissor.miny = 0;
321 scissor.maxx = 8192;
322 scissor.maxy = 8192;
324 r600_set_scissor_state(rctx, &scissor);
352 /* Workaround for a missing scissor enable on r600. */
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
renderer.c 117 } scissor; member in union:renderer::__anon14945
502 VGboolean scissor)
507 z = (scissor) ? 0.0f : 1.0f;
728 * Prepare the renderer for scissor update. This will reset the depth buffer
756 renderer->u.scissor.restore_dsa = restore_dsa;
767 * Add a scissor rectangle. Depth values inside the rectangle will be set to
780 * End scissor update and restore the states.
786 if (renderer->u.scissor.restore_dsa)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
attrib.c 51 #include "scissor.h"
118 GLboolean Scissor;
312 attr->Scissor = ctx->Scissor.Enabled;
409 memcpy( attr, &ctx->Scissor, sizeof(struct gl_scissor_attrib) );
599 TEST_AND_UPDATE(ctx->Scissor.Enabled, enable->Scissor, GL_SCISSOR_TEST);
1202 const struct gl_scissor_attrib *scissor; local
    [all...]
  /external/chromium_org/ui/compositor/
test_web_graphics_context_3d.h 274 virtual void scissor(WebKit::WGC3Dint x, function in class:ui::TestWebGraphicsContext3D
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.c 333 "r300: Scissor width: %i, height: %i, CBZB clear: %s\n",
767 struct pipe_scissor_state* scissor = (struct pipe_scissor_state*)state; local
773 OUT_CS((scissor->minx << R300_CLIPRECT_X_SHIFT) |
774 (scissor->miny << R300_CLIPRECT_Y_SHIFT));
775 OUT_CS(((scissor->maxx - 1) << R300_CLIPRECT_X_SHIFT) |
776 ((scissor->maxy - 1) << R300_CLIPRECT_Y_SHIFT));
778 OUT_CS(((scissor->minx + 1440) << R300_CLIPRECT_X_SHIFT) |
779 ((scissor->miny + 1440) << R300_CLIPRECT_Y_SHIFT));
780 OUT_CS(((scissor->maxx + 1440-1) << R300_CLIPRECT_X_SHIFT) |
781 ((scissor->maxy + 1440-1) << R300_CLIPRECT_Y_SHIFT))
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state_common.c 317 /* Set a scissor state such that it doesn't do anything. */
318 struct pipe_scissor_state scissor; local
319 scissor.minx = 0;
320 scissor.miny = 0;
321 scissor.maxx = 8192;
322 scissor.maxy = 8192;
324 r600_set_scissor_state(rctx, &scissor);
352 /* Workaround for a missing scissor enable on r600. */
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.c 117 } scissor; member in union:renderer::__anon25287
502 VGboolean scissor)
507 z = (scissor) ? 0.0f : 1.0f;
728 * Prepare the renderer for scissor update. This will reset the depth buffer
756 renderer->u.scissor.restore_dsa = restore_dsa;
767 * Add a scissor rectangle. Depth values inside the rectangle will be set to
780 * End scissor update and restore the states.
786 if (renderer->u.scissor.restore_dsa)
    [all...]
  /external/mesa3d/src/mesa/main/
attrib.c 51 #include "scissor.h"
118 GLboolean Scissor;
312 attr->Scissor = ctx->Scissor.Enabled;
409 memcpy( attr, &ctx->Scissor, sizeof(struct gl_scissor_attrib) );
599 TEST_AND_UPDATE(ctx->Scissor.Enabled, enable->Scissor, GL_SCISSOR_TEST);
1202 const struct gl_scissor_attrib *scissor; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/tests/
FakeWebGraphicsContext3D.h 191 virtual void scissor(WGC3Dint x, WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) { } function in class:WebKit::FakeWebGraphicsContext3D
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_context.h 245 struct pipe_scissor_state scissor; member in struct:i915_context

Completed in 784 milliseconds

12 3