summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2018-08-24 14:05:59 +0100
committerEmil Velikov <[email protected]>2018-10-03 13:38:05 +0100
commit80b62e2d6d2559a2c3f76e4ac06b9386a576d0e3 (patch)
tree9067f8b61d2858918b6fca0847ae3ff56cb4017d /src/gallium
parent89c2c386c02ef7bc56a11769b0d617261d6a37ea (diff)
st/dri: inline dri2_buffer.h within dri2.c
The header was used only by dri2.c, containing a two-member struct and cast wrapper. Just inline it where it's used/needed. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/state_trackers/dri/Makefile.sources3
-rw-r--r--src/gallium/state_trackers/dri/dri2.c15
-rw-r--r--src/gallium/state_trackers/dri/dri2_buffer.h22
-rw-r--r--src/gallium/state_trackers/dri/meson.build2
4 files changed, 16 insertions, 26 deletions
diff --git a/src/gallium/state_trackers/dri/Makefile.sources b/src/gallium/state_trackers/dri/Makefile.sources
index 36d5d47bb33..a610293bb11 100644
--- a/src/gallium/state_trackers/dri/Makefile.sources
+++ b/src/gallium/state_trackers/dri/Makefile.sources
@@ -11,8 +11,7 @@ common_SOURCES := \
dri_screen.h
dri2_SOURCES := \
- dri2.c \
- dri2_buffer.h
+ dri2.c
drisw_SOURCES := \
drisw.c
diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c
index 2411a369c5d..20540e39881 100644
--- a/src/gallium/state_trackers/dri/dri2.c
+++ b/src/gallium/state_trackers/dri/dri2.c
@@ -45,15 +45,28 @@
#include "main/bufferobj.h"
#include "main/texobj.h"
+#include "dri_util.h"
+
#include "dri_helpers.h"
#include "dri_drawable.h"
#include "dri_query_renderer.h"
-#include "dri2_buffer.h"
#ifndef DRM_FORMAT_MOD_INVALID
#define DRM_FORMAT_MOD_INVALID ((1ULL<<56) - 1)
#endif
+struct dri2_buffer
+{
+ __DRIbuffer base;
+ struct pipe_resource *resource;
+};
+
+static inline struct dri2_buffer *
+dri2_buffer(__DRIbuffer * driBufferPriv)
+{
+ return (struct dri2_buffer *) driBufferPriv;
+}
+
static const int fourcc_formats[] = {
__DRI_IMAGE_FOURCC_ARGB2101010,
__DRI_IMAGE_FOURCC_XRGB2101010,
diff --git a/src/gallium/state_trackers/dri/dri2_buffer.h b/src/gallium/state_trackers/dri/dri2_buffer.h
deleted file mode 100644
index 0cee4e906e6..00000000000
--- a/src/gallium/state_trackers/dri/dri2_buffer.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef DRI2_BUFFER_H
-#define DRI2_BUFFER_H
-
-#include "dri_util.h"
-
-struct pipe_surface;
-
-struct dri2_buffer
-{
- __DRIbuffer base;
- struct pipe_resource *resource;
-};
-
-static inline struct dri2_buffer *
-dri2_buffer(__DRIbuffer * driBufferPriv)
-{
- return (struct dri2_buffer *) driBufferPriv;
-}
-
-#endif
-
-/* vim: set sw=3 ts=8 sts=3 expandtab: */
diff --git a/src/gallium/state_trackers/dri/meson.build b/src/gallium/state_trackers/dri/meson.build
index dfc37fcd81c..4bb41157e42 100644
--- a/src/gallium/state_trackers/dri/meson.build
+++ b/src/gallium/state_trackers/dri/meson.build
@@ -38,7 +38,7 @@ if with_dri
endif
if with_dri2
- files_libdri += files('dri2.c', 'dri2_buffer.h')
+ files_libdri += files('dri2.c')
endif
libdri_c_args = []