diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-03-22 15:31:15 +0100 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-03-22 15:31:15 +0100 |
commit | 7dc0001f3db58af82f7e34c83a9fdb5fe90baccd (patch) | |
tree | bbfc35f4c6ca4423f90752b3ee34755b57d1af47 /tests | |
parent | a8e8654f81380c19f7c90479f98b9d9314f638b3 (diff) |
lib: make rendercopy.h an internal header
And move the public interfaces into intel_batchbuffer.[hc].
A bit messy since we are fairly inconsistent with our header #include
handling.
Also exclude rendercopy.h from the documentation.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gem_ctx_basic.c | 19 | ||||
-rw-r--r-- | tests/gem_render_copy.c | 20 | ||||
-rw-r--r-- | tests/gem_render_linear_blits.c | 20 | ||||
-rw-r--r-- | tests/gem_render_tiled_blits.c | 19 | ||||
-rw-r--r-- | tests/gem_reset_stats.c | 5 | ||||
-rw-r--r-- | tests/gem_ring_sync_copy.c | 2 | ||||
-rw-r--r-- | tests/gem_ringfill.c | 2 | ||||
-rw-r--r-- | tests/gem_seqno_wrap.c | 4 | ||||
-rw-r--r-- | tests/gem_stress.c | 19 | ||||
-rw-r--r-- | tests/gem_wait_render_timeout.c | 18 | ||||
-rw-r--r-- | tests/kms_fbc_crc.c | 2 | ||||
-rw-r--r-- | tests/kms_flip.c | 2 |
12 files changed, 117 insertions, 15 deletions
diff --git a/tests/gem_ctx_basic.c b/tests/gem_ctx_basic.c index e1eeaa16..34542511 100644 --- a/tests/gem_ctx_basic.c +++ b/tests/gem_ctx_basic.c @@ -30,7 +30,24 @@ */ #include <pthread.h> -#include "rendercopy.h" +#include <assert.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <assert.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <getopt.h> +#include "drm.h" +#include "i915_drm.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" /* options */ int num_contexts = 10; diff --git a/tests/gem_render_copy.c b/tests/gem_render_copy.c index 5e2433c9..65323a94 100644 --- a/tests/gem_render_copy.c +++ b/tests/gem_render_copy.c @@ -32,8 +32,24 @@ #include <stdbool.h> #include <unistd.h> #include <cairo.h> - -#include "rendercopy.h" +#include <assert.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <assert.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <getopt.h> +#include "drm.h" +#include "i915_drm.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" #define WIDTH 512 #define STRIDE (WIDTH*4) diff --git a/tests/gem_render_linear_blits.c b/tests/gem_render_linear_blits.c index 5ba7c98f..5efcc210 100644 --- a/tests/gem_render_linear_blits.c +++ b/tests/gem_render_linear_blits.c @@ -37,8 +37,24 @@ #include "config.h" #endif -#include "rendercopy.h" - +#include <assert.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <assert.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <getopt.h> +#include "drm.h" +#include "i915_drm.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" #define WIDTH 512 #define STRIDE (WIDTH*4) #define HEIGHT 512 diff --git a/tests/gem_render_tiled_blits.c b/tests/gem_render_tiled_blits.c index 9b6e9204..71dfdd64 100644 --- a/tests/gem_render_tiled_blits.c +++ b/tests/gem_render_tiled_blits.c @@ -33,7 +33,24 @@ * The goal is to simply ensure the basics work. */ -#include "rendercopy.h" +#include <assert.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <assert.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <getopt.h> +#include "drm.h" +#include "i915_drm.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" #define WIDTH 512 #define STRIDE (WIDTH*4) diff --git a/tests/gem_reset_stats.c b/tests/gem_reset_stats.c index 3719f407..8ac93a89 100644 --- a/tests/gem_reset_stats.c +++ b/tests/gem_reset_stats.c @@ -26,6 +26,7 @@ */ #define _GNU_SOURCE +#include <stdbool.h> #include <unistd.h> #include <stdlib.h> #include <stdio.h> @@ -40,11 +41,11 @@ #include <signal.h> #include "i915_drm.h" +#include "drmtest.h" +#include "igt_debugfs.h" #include "intel_bufmgr.h" #include "intel_batchbuffer.h" #include "intel_gpu_tools.h" -#include "rendercopy.h" -#include "igt_debugfs.h" #define RS_NO_ERROR 0 #define RS_BATCH_ACTIVE (1 << 0) diff --git a/tests/gem_ring_sync_copy.c b/tests/gem_ring_sync_copy.c index 2cd78a32..b7dcf9df 100644 --- a/tests/gem_ring_sync_copy.c +++ b/tests/gem_ring_sync_copy.c @@ -52,7 +52,7 @@ #include "i915_drm.h" #include "drmtest.h" -#include "rendercopy.h" +#include "intel_batchbuffer.h" #define WIDTH 512 #define HEIGHT 512 diff --git a/tests/gem_ringfill.c b/tests/gem_ringfill.c index 31a21cbb..8e0ca91b 100644 --- a/tests/gem_ringfill.c +++ b/tests/gem_ringfill.c @@ -43,10 +43,10 @@ #include "drm.h" #include "i915_drm.h" +#include "drmtest.h" #include "intel_bufmgr.h" #include "intel_batchbuffer.h" #include "intel_gpu_tools.h" -#include "rendercopy.h" struct bo { const char *ring; diff --git a/tests/gem_seqno_wrap.c b/tests/gem_seqno_wrap.c index 79562693..cc133a9a 100644 --- a/tests/gem_seqno_wrap.c +++ b/tests/gem_seqno_wrap.c @@ -39,13 +39,15 @@ #include <sys/wait.h> #include <limits.h> #include <wordexp.h> +#include <getopt.h> #include <signal.h> #include "i915_drm.h" +#include "drmtest.h" +#include "igt_core.h" #include "intel_bufmgr.h" #include "intel_batchbuffer.h" #include "intel_gpu_tools.h" -#include "rendercopy.h" static int devid; static int card_index = 0; diff --git a/tests/gem_stress.c b/tests/gem_stress.c index c01e92eb..527f7de8 100644 --- a/tests/gem_stress.c +++ b/tests/gem_stress.c @@ -49,7 +49,24 @@ * In short: designed for maximum evilness. */ -#include "rendercopy.h" +#include <assert.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <assert.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <getopt.h> +#include "drm.h" +#include "i915_drm.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" #define CMD_POLY_STIPPLE_OFFSET 0x7906 diff --git a/tests/gem_wait_render_timeout.c b/tests/gem_wait_render_timeout.c index e16d6238..1c6aa7d1 100644 --- a/tests/gem_wait_render_timeout.c +++ b/tests/gem_wait_render_timeout.c @@ -27,8 +27,24 @@ #include <stdio.h> #include <time.h> +#include <assert.h> +#include <stdlib.h> +#include <sys/ioctl.h> +#include <stdio.h> +#include <string.h> +#include <assert.h> +#include <fcntl.h> +#include <inttypes.h> +#include <errno.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <getopt.h> #include "drm.h" -#include "rendercopy.h" +#include "i915_drm.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" #define MSEC_PER_SEC 1000L #define USEC_PER_MSEC 1000L diff --git a/tests/kms_fbc_crc.c b/tests/kms_fbc_crc.c index 2f1b90d2..bb06bc49 100644 --- a/tests/kms_fbc_crc.c +++ b/tests/kms_fbc_crc.c @@ -32,7 +32,7 @@ #include "drmtest.h" #include "igt_debugfs.h" #include "igt_kms.h" -#include "rendercopy.h" +#include "intel_batchbuffer.h" enum test_mode { TEST_PAGE_FLIP, diff --git a/tests/kms_flip.c b/tests/kms_flip.c index 09dc20bd..5ef5afa2 100644 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -39,7 +39,7 @@ #include "i915_drm.h" #include "drmtest.h" #include "testdisplay.h" -#include "rendercopy.h" +#include "intel_batchbuffer.h" #include "igt_kms.h" #define TEST_DPMS (1 << 0) |