/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | gen7_misc_state.c | 49 uint32_t draw_x = 0, draw_y = 0; in emit_depthbuffer() local 117 draw_x = srb->draw_x; in emit_depthbuffer() 119 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 159 draw_x = drb->draw_x; in emit_depthbuffer() 161 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 183 draw_x & ~tile_mask_x, in emit_depthbuffer() 218 draw_x & ~tile_mask_x, in emit_depthbuffer() 246 (draw_x & ~tile_mask_x) * 64; in emit_depthbuffer()
|
D | brw_misc_state.c | 273 uint32_t draw_x = 0, draw_y = 0; in emit_depthbuffer() local 396 draw_x = stencil_irb->draw_x; in emit_depthbuffer() 398 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 454 draw_x = depth_irb->draw_x; in emit_depthbuffer() 456 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 478 draw_x & ~tile_mask_x, in emit_depthbuffer() 522 draw_x & ~tile_mask_x, in emit_depthbuffer() 551 (draw_x & ~tile_mask_x) * 64; in emit_depthbuffer()
|
D | intel_pixel_copy.c | 191 srcx += read_irb->draw_x; in do_blit_copypixels() 193 dstx += draw_irb->draw_x; in do_blit_copypixels()
|
D | gen7_blorp.cpp | 581 uint32_t draw_x = params->depth.x_offset; in gen7_blorp_emit_depth_stencil_config() local 589 uint32_t tile_x = draw_x & tile_mask_x; in gen7_blorp_emit_depth_stencil_config() 593 draw_x & ~tile_mask_x, in gen7_blorp_emit_depth_stencil_config() 642 draw_x & ~tile_mask_x, in gen7_blorp_emit_depth_stencil_config()
|
D | gen6_blorp.cpp | 833 uint32_t draw_x = params->depth.x_offset; in gen6_blorp_emit_depth_stencil_config() local 841 uint32_t tile_x = draw_x & tile_mask_x; in gen6_blorp_emit_depth_stencil_config() 845 draw_x & ~tile_mask_x, in gen6_blorp_emit_depth_stencil_config() 898 draw_x & ~tile_mask_x, in gen6_blorp_emit_depth_stencil_config()
|
D | brw_blorp.cpp | 62 x_offset = rb.draw_x; in set()
|
D | intel_tex_copy.c | 132 irb->draw_x + x, irb->draw_y + y, in intel_copy_texsubimage()
|
D | intel_fbo.c | 562 irb->draw_x = dst_x; in intel_renderbuffer_set_draw_offset() 586 *tile_x = irb->draw_x & mask_x; in intel_renderbuffer_tile_offsets() 588 return intel_region_get_aligned_offset(region, irb->draw_x & ~mask_x, in intel_renderbuffer_tile_offsets()
|
D | intel_blit.c | 288 x1 = cx + irb->draw_x; in intelClearWithBlit() 290 x2 = cx + cw + irb->draw_x; in intelClearWithBlit()
|
D | intel_screen.c | 148 irb->draw_x, in aub_dump_bmp()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_vtbl.c | 588 uint32_t draw_x, draw_y, draw_offset; in i915_set_draw_region() local 652 idrb && irb && (idrb->draw_x != irb->draw_x || in i915_set_draw_region() 656 draw_x = irb->draw_x; in i915_set_draw_region() 659 draw_x = idrb->draw_x; in i915_set_draw_region() 662 draw_x = 0; in i915_set_draw_region() 666 draw_offset = (draw_y << 16) | draw_x; in i915_set_draw_region() 669 (ctx->DrawBuffer->Width + draw_x > 2048) || in i915_set_draw_region() 682 ((ctx->DrawBuffer->Width + draw_x - 1) & 0xffff) | in i915_set_draw_region()
|
D | i830_vtbl.c | 624 uint32_t draw_x, draw_y; in i830_set_draw_region() local 678 idrb && irb && (idrb->draw_x != irb->draw_x || in i830_set_draw_region() 682 draw_x = irb->draw_x; in i830_set_draw_region() 685 draw_x = idrb->draw_x; in i830_set_draw_region() 688 draw_x = 0; in i830_set_draw_region() 694 state->Buffer[I830_DESTREG_DRAWRECT2] = (draw_y << 16) | draw_x; in i830_set_draw_region() 696 ((ctx->DrawBuffer->Width + draw_x - 1) & 0xffff) | in i830_set_draw_region() 698 state->Buffer[I830_DESTREG_DRAWRECT4] = (draw_y << 16) | draw_x; in i830_set_draw_region()
|
D | intel_pixel_copy.c | 191 srcx += read_irb->draw_x; in do_blit_copypixels() 193 dstx += draw_irb->draw_x; in do_blit_copypixels()
|
D | intel_tex_copy.c | 132 irb->draw_x + x, irb->draw_y + y, in intel_copy_texsubimage()
|
D | intel_fbo.c | 562 irb->draw_x = dst_x; in intel_renderbuffer_set_draw_offset() 586 *tile_x = irb->draw_x & mask_x; in intel_renderbuffer_tile_offsets() 588 return intel_region_get_aligned_offset(region, irb->draw_x & ~mask_x, in intel_renderbuffer_tile_offsets()
|
D | intel_blit.c | 288 x1 = cx + irb->draw_x; in intelClearWithBlit() 290 x2 = cx + cw + irb->draw_x; in intelClearWithBlit()
|
D | intel_screen.c | 148 irb->draw_x, in aub_dump_bmp()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_pixel_copy.c | 191 srcx += read_irb->draw_x; in do_blit_copypixels() 193 dstx += draw_irb->draw_x; in do_blit_copypixels()
|
D | intel_fbo.h | 74 GLuint draw_x, draw_y; /**< Offset of drawing within the region */ member
|
D | intel_tex_copy.c | 132 irb->draw_x + x, irb->draw_y + y, in intel_copy_texsubimage()
|
D | intel_fbo.c | 562 irb->draw_x = dst_x; in intel_renderbuffer_set_draw_offset() 586 *tile_x = irb->draw_x & mask_x; in intel_renderbuffer_tile_offsets() 588 return intel_region_get_aligned_offset(region, irb->draw_x & ~mask_x, in intel_renderbuffer_tile_offsets()
|
D | intel_blit.c | 288 x1 = cx + irb->draw_x; in intelClearWithBlit() 290 x2 = cx + cw + irb->draw_x; in intelClearWithBlit()
|
D | intel_screen.c | 148 irb->draw_x, in aub_dump_bmp()
|