HomeSort by: relevance | last modified time | path
    Searched defs:pitch_pixels (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_legacy_crtc.c 390 uint32_t crtc_pitch, pitch_pixels; local in function:radeon_crtc_do_set_base
493 pitch_pixels = target_fb->pitches[0] / target_fb->format->cpp[0];
494 crtc_pitch = DIV_ROUND_UP(pitch_pixels * target_fb->format->cpp[0] * 8,
521 int tile_addr = (((y >> 3) * pitch_pixels + x) >> (8 - byteshift)) << 11;
526 int offset = y * pitch_pixels + x;
radeon_display.c 498 uint32_t tiling_flags, pitch_pixels; local in function:radeon_crtc_page_flip_target
550 pitch_pixels = fb->pitches[0] / fb->format->cpp[0];
557 int tile_addr = (((crtc->y >> 3) * pitch_pixels + crtc->x) >> (8 - byteshift)) << 11;
561 int offset = crtc->y * pitch_pixels + crtc->x;
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_display.c 2363 unsigned int pitch_pixels = pitch_tiles * tile_width; local in function:intel_adjust_tile_offset
2376 *y += *x / pitch_pixels * tile_height;
2377 *x %= pitch_pixels;

Completed in 27 milliseconds