diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/igt_kms.c | 21 | ||||
-rw-r--r-- | lib/igt_kms.h | 1 |
2 files changed, 0 insertions, 22 deletions
diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 70b104b2..9cf4b68f 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -3227,27 +3227,6 @@ void igt_pipe_request_out_fence(igt_pipe_t *pipe) igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_OUT_FENCE_PTR, (ptrdiff_t)&pipe->out_fence_fd); } -/** - * igt_crtc_set_background: - * @pipe: pipe pointer to which background color to be set - * @background: background color value in BGR 16bpc - * - * Sets background color for requested pipe. Color value provided here - * will be actually submitted at output commit time via "background_color" - * property. - * For example to get red as background, set background = 0x00000000FFFF. - */ -void igt_crtc_set_background(igt_pipe_t *pipe, uint64_t background) -{ - igt_display_t *display = pipe->display; - - LOG(display, "%s.%d: crtc_set_background(%"PRIx64")\n", - kmstest_pipe_name(pipe->pipe), - pipe->pipe, background); - - igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_BACKGROUND, background); -} - void igt_wait_for_vblank_count(int drm_fd, enum pipe pipe, int count) { drmVBlank wait_vbl; diff --git a/lib/igt_kms.h b/lib/igt_kms.h index dbba0cd5..e722f0be 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -378,7 +378,6 @@ void igt_plane_set_fence_fd(igt_plane_t *plane, int fence_fd); void igt_plane_set_position(igt_plane_t *plane, int x, int y); void igt_plane_set_size(igt_plane_t *plane, int w, int h); void igt_plane_set_rotation(igt_plane_t *plane, igt_rotation_t rotation); -void igt_crtc_set_background(igt_pipe_t *pipe, uint64_t background); void igt_fb_set_position(struct igt_fb *fb, igt_plane_t *plane, uint32_t x, uint32_t y); void igt_fb_set_size(struct igt_fb *fb, igt_plane_t *plane, |