benchmarks: Fix build errors on Android M-Dessert

Android M-Dessert treats implicit declaration of function warnings
as errors resulting in igt failing to build.

This patch fixes the errors by including missing header files as
required. Mostly this involved including igt.h in the benchmarks.

Signed-off-by: Derek Morton <derek.j.morton@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Derek Morton 2015-10-01 16:09:02 +01:00 committed by Daniel Vetter
parent 983dfe5b68
commit 1b492e311c
5 changed files with 5 additions and 27 deletions

View File

@ -44,6 +44,7 @@
* The current workload doing this path is pixmap upload for non-KMS.
*/
#include "igt.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@ -57,12 +58,6 @@
#include <drm.h>
#include <i915_drm.h>
#include "drmtest.h"
#include "intel_bufmgr.h"
#include "intel_batchbuffer.h"
#include "intel_io.h"
#include "intel_chipset.h"
#define OBJECT_WIDTH 1280
#define OBJECT_HEIGHT 720

View File

@ -44,6 +44,7 @@
* The current workload doing this path is pixmap upload in 2D with KMS.
*/
#include "igt.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@ -53,13 +54,6 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "drm.h"
#include "i915_drm.h"
#include "drmtest.h"
#include "intel_bufmgr.h"
#include "intel_batchbuffer.h"
#include "intel_io.h"
#include "intel_chipset.h"
#define OBJECT_WIDTH 1280
#define OBJECT_HEIGHT 720

View File

@ -47,6 +47,7 @@
* suitable)
*/
#include "igt.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@ -56,13 +57,6 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "drm.h"
#include "i915_drm.h"
#include "drmtest.h"
#include "intel_bufmgr.h"
#include "intel_batchbuffer.h"
#include "intel_io.h"
#include "intel_chipset.h"
#define OBJECT_WIDTH 1280
#define OBJECT_HEIGHT 720

View File

@ -40,6 +40,7 @@
* frame.
*/
#include "igt.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@ -49,13 +50,6 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "drm.h"
#include "i915_drm.h"
#include "drmtest.h"
#include "intel_bufmgr.h"
#include "intel_batchbuffer.h"
#include "intel_io.h"
#include "intel_chipset.h"
/* Happens to be 128k, the size of the VBOs used by i965's Mesa driver. */
#define OBJECT_WIDTH 256

View File

@ -31,6 +31,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "intel_chipset.h"
#include "intel_reg.h"