Home | History | Annotate | Download | only in src

Lines Matching refs:scanlines

1655         int scanlines = drv_ctx.video_resolution.scan_lines;
1658 scanlines = drv_ctx.video_resolution.frame_height;
1660 scanlines = (scanlines + DEFAULT_HEIGHT_ALIGNMENT - 1) & (~(DEFAULT_HEIGHT_ALIGNMENT - 1));
1665 DEBUG_PRINT_LOW("Logging width/height(%u/%u) stride/scanlines(%u/%u)",
1667 drv_ctx.video_resolution.frame_height, stride, scanlines);
1672 temp = (char *)drv_ctx.ptr_outputbuffer[buf_index].bufferaddr + stride * scanlines;
7222 void dump_buffer(FILE* pFile, char* buffer, int stride, int scanlines, int width, int height)
7237 temp = (char *)buffer + stride * scanlines;
7246 DEBUG_PRINT_ERROR("stride %d, scanlines %d, frame_height %d bytes_written %d",
7247 stride, scanlines, height, bytes);