mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 18:06:13 +00:00
kms_rotation_crc: Use the igt_kms enum to encode the plane rotation
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
parent
a58f8b93b4
commit
92a2b292df
@ -29,11 +29,6 @@
|
|||||||
#include "igt_kms.h"
|
#include "igt_kms.h"
|
||||||
#include "igt_core.h"
|
#include "igt_core.h"
|
||||||
|
|
||||||
#define DRM_ROTATE_0 0
|
|
||||||
#define DRM_ROTATE_90 1
|
|
||||||
#define DRM_ROTATE_180 2
|
|
||||||
#define DRM_ROTATE_270 3
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int gfx_fd;
|
int gfx_fd;
|
||||||
igt_display_t display;
|
igt_display_t display;
|
||||||
@ -44,7 +39,7 @@ typedef struct {
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
paint_squares(data_t *data, struct igt_fb *fb, drmModeModeInfo *mode,
|
paint_squares(data_t *data, struct igt_fb *fb, drmModeModeInfo *mode,
|
||||||
uint32_t rotation)
|
igt_rotation_t rotation)
|
||||||
{
|
{
|
||||||
cairo_t *cr;
|
cairo_t *cr;
|
||||||
int w, h;
|
int w, h;
|
||||||
@ -54,7 +49,7 @@ paint_squares(data_t *data, struct igt_fb *fb, drmModeModeInfo *mode,
|
|||||||
|
|
||||||
cr = igt_get_cairo_ctx(data->gfx_fd, &data->fb);
|
cr = igt_get_cairo_ctx(data->gfx_fd, &data->fb);
|
||||||
|
|
||||||
if (rotation == DRM_ROTATE_180) {
|
if (rotation == IGT_ROTATION_180) {
|
||||||
cairo_translate(cr, w, h);
|
cairo_translate(cr, w, h);
|
||||||
cairo_rotate(cr, M_PI);
|
cairo_rotate(cr, M_PI);
|
||||||
}
|
}
|
||||||
@ -98,7 +93,7 @@ static bool prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
|
|||||||
|
|
||||||
/* Step 1: create a reference CRC for a software-rotated fb */
|
/* Step 1: create a reference CRC for a software-rotated fb */
|
||||||
|
|
||||||
paint_squares(data, &data->fb, mode, DRM_ROTATE_180);
|
paint_squares(data, &data->fb, mode, IGT_ROTATION_180);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* XXX: We always set the primary plane to actually enable the pipe as
|
* XXX: We always set the primary plane to actually enable the pipe as
|
||||||
@ -121,7 +116,7 @@ static bool prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
|
|||||||
* Step 2: prepare the plane with an non-rotated fb let the hw
|
* Step 2: prepare the plane with an non-rotated fb let the hw
|
||||||
* rotate it.
|
* rotate it.
|
||||||
*/
|
*/
|
||||||
paint_squares(data, &data->fb, mode, DRM_ROTATE_0);
|
paint_squares(data, &data->fb, mode, IGT_ROTATION_0);
|
||||||
|
|
||||||
igt_plane_set_fb(plane, &data->fb);
|
igt_plane_set_fb(plane, &data->fb);
|
||||||
igt_display_commit(display);
|
igt_display_commit(display);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user