Displaying 1 result from an estimated 1 matches for "test_dpms".
Did you mean:
last_dpms
2020 Mar 18
0
[PATCH i-g-t] tests/kms_plane: Generate reference CRCs for partial coverage too
...ue;
} color_t;
+typedef struct {
+ int x, y;
+ color_t color;
+} rectangle_t;
+
typedef struct {
int drm_fd;
igt_display_t display;
@@ -71,9 +76,52 @@ static void test_fini(data_t *data)
igt_pipe_crc_free(data->pipe_crc);
}
+enum {
+ TEST_POSITION_PARTIALLY_COVERED = 1 << 0,
+ TEST_DPMS = 1 << 1,
+ TEST_PANNING_TOP_LEFT = 1 << 2,
+ TEST_PANNING_BOTTOM_RIGHT = 1 << 3,
+ TEST_SUSPEND_RESUME = 1 << 4,
+};
+
+/*
+ * create a colored fb, possibly with a series of 64x64 colored rectangles (used
+ * for position te...