mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-21 13:23:02 +00:00
lib/igt_fb: switch to igt_ prefix from kmstest_
Shorter and more in line with our general igt_ prefix for everything which isn't somehow intel or i915-gem or otherwise hw specific - these helpers here are all fully generic framebuffer handling functions based on kms + cairo. Well, the actual buffer alloc is done with i915 gem, but meh ;-) Two special cases: - bpp_depth_to_drm_format and drm_format_to_bpp completely lacked prefixes, so just add igt_. - write_fb was a bit misleading given that we have gem_write for uploading to buffers. Rename that to write_fb_to_png to make it crystal clear what this thing does even without looking at docs. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
typedef struct {
|
||||
int drm_fd;
|
||||
igt_display_t display;
|
||||
struct kmstest_fb fb;
|
||||
struct igt_fb fb;
|
||||
} data_t;
|
||||
|
||||
static void test_bad_command(data_t *data, const char *cmd)
|
||||
@@ -75,7 +75,7 @@ static void test_read_crc(data_t *data, int pipe, unsigned flags)
|
||||
pipe_name(pipe));
|
||||
|
||||
mode = igt_output_get_mode(output);
|
||||
kmstest_create_color_fb(data->drm_fd,
|
||||
igt_create_color_fb(data->drm_fd,
|
||||
mode->hdisplay, mode->vdisplay,
|
||||
DRM_FORMAT_XRGB8888,
|
||||
false, /* tiled */
|
||||
@@ -116,7 +116,7 @@ static void test_read_crc(data_t *data, int pipe, unsigned flags)
|
||||
|
||||
free(crcs);
|
||||
igt_pipe_crc_free(pipe_crc);
|
||||
kmstest_remove_fb(data->drm_fd, &data->fb);
|
||||
igt_remove_fb(data->drm_fd, &data->fb);
|
||||
igt_plane_set_fb(primary, NULL);
|
||||
|
||||
igt_output_set_pipe(output, PIPE_ANY);
|
||||
|
||||
Reference in New Issue
Block a user