Displaying 20 results from an estimated 20 matches for "xf86drmmode".
2010 Mar 12
1
[PATCH 3/3] libdrm: Move all noninstalled headers to noinst_HEADERS.
...nouveau/Makefile.am | 4 +++-
3 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index e434e1d..61da186 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -55,13 +55,13 @@ libdrm_la_SOURCES = \
xf86drmHash.c \
xf86drmRandom.c \
xf86drmSL.c \
- xf86drmMode.c \
- libdrm_lists.h
+ xf86drmMode.c
libdrmincludedir = ${includedir}
libdrminclude_HEADERS = xf86drm.h xf86drmMode.h
-noinst_HEADERS = xf86atomic.h
+noinst_HEADERS = xf86atomic.h \
+ libdrm_lists.h
EXTRA_DIST = libdrm.pc.in include/drm/*
diff --git a/intel/Makefile.am b/intel/Makefil...
2008 Jul 09
1
unable to compile xf86-video-nouveau
Greetings,
After the modesetting commit, I have been unable to compile
xf86-video-nouveau. The git site for drm given on the wiki page does not get
the proper xf86drmMode.h, etc. I noted that libdrm git has over 100 branches
and I really don't want to try all of them. Fedora 9 has a patch of the
libdrm source rpm that includes an earlier version of xf86drmMode.h but it's
now out of date. I would like to follow along in the development of nouveau
as I hav...
2015 Jun 29
0
[ANNOUNCE] libdrm 2.4.62
...(1):
Add blob property create/destroy ioctl wrappers
Emil Velikov (7):
modetest: explicitly zero the newly allocated memory
modetest: replace malloc + memset with calloc
xf86drm: simplify drmMalloc/drmFree
Revert "Add device enumeration interface (v4)"
xf86drmMode: remove unused valgrind(VG) macros
xf86drmMode: include config.h before anything else
configure.ac: bump version to 2.4.62 for release
Guillaume Desmottes (1):
drmPrime*: initialize output args to 0
Ilia Mirkin (1):
nouveau: add asserts to make sure krefs are there
Jammy...
2017 Jan 28
0
[ANNOUNCE] libdrm 2.4.75
...ce[s]2
Neil Armstrong (1):
tests/util: Add support for meson module
Seung-Woo Kim (1):
libkms/exynos: fix memory leak in error path
Taro Yamada (1):
xf86drm: fix null termination of string buffer
Thierry Reding (10):
xf86drm: Fix indentation
Add .editorconfig
xf86drmMode.h: Use consistent padding
xf86drmMode.h: Add DisplayPort MST and DPI encoders/connectors
xf86drm: Fix type-punned pointer build warning
xf86drm: Factor out drmDeviceAlloc()
xf86drm: Add USB support
xf86drm: Add platform and host1x bus support
tests/drmdevice: Add...
2014 Jul 30
2
[PATCH libdrm] configure: Support symbol visibility when available
...mode 100644 libdrm.h
>
> diff --git a/Makefile.am b/Makefile.am
> index 826c30d0c0d9..65680da963eb 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -69,6 +69,7 @@ libdrm_la_SOURCES = \
> xf86drmSL.c \
> xf86drmMode.c \
> xf86atomic.h \
> + libdrm.h \
> libdrm_lists.h
>
> libdrmincludedir = ${includedir}
> diff --git a/configure.ac b/configure.ac
> index 1c78c4520c49..f7c7177bfb2a 100...
2014 Jul 30
3
[PATCH] libdrm: hide all private symbols
On 30/07/14 11:16, Christian K?nig wrote:
> [CCing Emil as well]
>
> Am 30.07.2014 um 11:38 schrieb Maarten Lankhorst:
>> Using -export-symbols-regex all private symbols are hidden, resulting in the
>> following changes:
>
> Wasn't "-export-symbols-regex" exactly that stuff we are trying to avoid in mesa?
>
IMHO we should try to pick up Thierry
2015 Aug 14
0
[ANNOUNCE] libdrm 2.4.63
...: fix the ALIGN macro to avoid value clamp
tests/amdgpu: remove the duplicate IB allocation for VCE test
amdgpu: add flags parameter for amdgpu_va_range_alloc
amdgpu: add amdgpu_bo_va_op for va map/unmap support v3
amdgpu: expose the PCI revision ID
Jonathan Gray (3):
xf86drmMode: Implement drmCheckModesettingSupported() for OpenBSD
xf86drm: correct the OpenBSD DRM_MAJOR define
xf86drm: use the correct device minor names on OpenBSD
Joonyoung Shim (1):
Build vbltest irrespective of the presence of libudev.
Julien Cristau (1):
Fix headers inclusion i...
2023 Nov 20
0
[ANNOUNCE] libdrm 2.4.118
...etest: add support for big-endian XRGB1555/RGB565
Jonas Karlman (1):
modetest: add support for DRM_FORMAT_NV{15,20,30}
Neil Armstrong (1):
modetest: switch usage to proper options grammar
Simon Ser (4):
xf86drm: add drmGetNodeTypeFromDevId
Sync headers with drm-next
xf86drmMode: add drmModeCloseFB()
build: bump version to 2.4.118
git tag: libdrm-2.4.118
https://dri.freedesktop.org/libdrm/libdrm-2.4.118.tar.xz
SHA256: a777bd85f2b5fc9c57f886c82058300578317cafdbc77d0a769d7e9a9567ab88 libdrm-2.4.118.tar.xz
SHA512: 2740ec10dfe96b520345c3f6f0d99a30aac95b1f96656bd9cd112...
2014 Jun 21
0
[PATCH 2/2] present: build only when glamor is enabled
...b294bbe..38f2cac 100644
--- a/src/nouveau_present.c
+++ b/src/nouveau_present.c
@@ -23,7 +23,7 @@
*/
#include "nouveau_present.h"
-#ifdef DRI3
+#if defined(DRI3) && defined(HAVE_GLAMOR)
#include "nv_include.h"
#include "nouveau_glamor.h"
#include "xf86drmMode.h"
diff --git a/src/nouveau_present.h b/src/nouveau_present.h
index dea19ce..958c2f7 100644
--- a/src/nouveau_present.h
+++ b/src/nouveau_present.h
@@ -4,7 +4,11 @@
#include "xorg-server.h"
#include "scrnintstr.h"
-#ifdef DRI3
+#ifdef HAVE_CONFIG_H
+#include "confi...
2014 Jul 30
0
[PATCH libdrm] configure: Support symbol visibility when available
...+
libdrm.h | 34 ++++++++++++++++++++++++++++++++++
3 files changed, 55 insertions(+)
create mode 100644 libdrm.h
diff --git a/Makefile.am b/Makefile.am
index 826c30d0c0d9..65680da963eb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -69,6 +69,7 @@ libdrm_la_SOURCES = \
xf86drmSL.c \
xf86drmMode.c \
xf86atomic.h \
+ libdrm.h \
libdrm_lists.h
libdrmincludedir = ${includedir}
diff --git a/configure.ac b/configure.ac
index 1c78c4520c49..f7c7177bfb2a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -366,6 +366,26 @@ AC_ARG_WITH([kernel-source],
[kernel_source="$with_k...
2012 Apr 11
1
[error] xf86-video-nouveau on OpenBSD
Hi,
I'm trying to compile nouveau on OpenBSD, but I always get an error message.
I have already compiled libdrm like this :
echo "/usr/X11R6/share/aclocal" >> /usr/local/share/aclocal/dirlist
./configure --enable-nouveau-experimental-api
make
make install
There wasn't any problem.
Then, I try to compile xf86-video-nouveau with :
./configure
make
But I get this error
2018 May 09
0
[ANNOUNCE] libdrm 2.4.92
...configure: always define UDEV
meson: replace `if(compiles) have=true` with `have=compiles`
meson,configure: include config.h automatically
meson: drop unneeded dependency to libudev
meson: move line to allow using `config` earlier
meson: drop unnecessary variable
xf86drmMode: merge successive mutually-exclusive #ifs
Gowtham Tammana (1):
omap: add Android build support
Inki Dae (1):
tests: fix memory leak issue
James Zhu (1):
tests/amdgpu: add vce mv tests support and sets
John Stultz (3):
libdrm: intel/Android.mk: Filter libd...
2015 Sep 16
0
[ANNOUNCE] libdrm 2.4.65
...nnotate (most of) the vce templates as const data
tests/amdgpu: ensure tests work by using c99 initializers
nouveau: use designated initializers
intel: ignore missing-field-initializers warnings
configure: remove -Wno-missing-field-initializers
Hyungwon Hwang (2):
xf86drmMode: remove the trailing white spaces
modetest: remove the trailing white spaces
Jonathan Gray (1):
amdgpu: use EINVAL instead of EBADMSG in amdgpu_bo_cpu_unmap()
Jérôme Glisse (1):
drm: Add -lm to libdrm ldflags to fix build failure.
Mathias Tillman (1):
drm: fix...
2012 Apr 25
1
Question about NV18 and GBM library.
...river: nouveau
My question is:
Is this not supported by the driver?,
It's a GBM problem? or am I doing something wrong?
when I run the following code:
#include <errno.h>
#include <fcntl.h>
#include <gbm.h>
#include <stdlib.h>
#include <stdio.h>
#include <xf86drmMode.h>
#include <xf86drm.h>
#include <libdrm/drm.h>
int main(int argc, char* argv[])
{
int fd;
struct gbm_device *gbm = NULL;
fd = open("/dev/dri/card0", O_RDWR | O_CLOEXEC);
if (fd < 0) {
perror("====> open error /dev/dri/card0...");...
2014 Jul 30
0
[PATCH libdrm] configure: Support symbol visibility when available
...t;> diff --git a/Makefile.am b/Makefile.am
>> index 826c30d0c0d9..65680da963eb 100644
>> --- a/Makefile.am
>> +++ b/Makefile.am
>> @@ -69,6 +69,7 @@ libdrm_la_SOURCES = \
>> xf86drmSL.c \
>> xf86drmMode.c \
>> xf86atomic.h \
>> + libdrm.h \
>> libdrm_lists.h
>>
>> libdrmincludedir = ${includedir}
>> diff --git a/configure.ac b/configure.ac
>> index 1c...
2015 May 07
0
[ANNOUNCE] libdrm 2.4.61
...RELEASING: Fix releasing instructions to match the latest release.sh
RELEASING: Fix the step numbering
RELEASING: Fix annouce typo
Daniel Kurtz (3):
proptest: install it with --enable-install-test-programs
tests: add rockchip to modetest, kmstest, vbltest and proptest
xf86drmMode.h: inline -> __inline for use with gcc -std=c89 -pedantic
Emil Velikov (39):
android: correcly set LOCAL_EXPORT_C_INCLUDE_DIRS
android: simplify LOCAL_C_INCLUDES
android: remove ${srcdir} from the includes
android: remove LOCAL_COPY_HEADERS* variables
android: add...
2015 Mar 19
0
[ANNOUNCE] libdrm 2.4.60
...On Solaris, #include <sys/mkdev.h> in xf86drm.c
Chih-Wei Huang (1):
android: remove duplicate libdrm in LOCAL_SHARED_LIBRARIES
Damien Lespiau (1):
build: Bump version number to 2.4.60 before release
Daniel Vetter (7):
intel: Unconditionally clear ioctl structs
xf86drmMode: Unconditionally clear ioctl structs
drm: use drmIoctl everywhere
xf86drm: Unconditionally clear ioctl structs
tests: remove intel-specific tests
xf86drm: Fix ioctl struct clearing in drmGetVersion
Revert "intel: Fix documentation for drm_intel_gem_bo_wait()"...
2015 Dec 27
0
[ANNOUNCE] libdrm 2.4.66
...idawsky (2):
intel: Add SKL GT4 PCI IDs
intel: Cleanup SKL PCI ID definitions.
Chih-Wei Huang (1):
intel: add the missing <strings.h> include
Dave Airlie (1):
drm: add virtgpu_drm.h
Emil Velikov (17):
automake: set --enable-valgrind during make distcheck
xf86drmMode: smoke-test the atomic API
tests/drmdevice: add new 'test'
xf86drm: flex platform specifics into drmParsePciBusInfo
xf86drm: move platform details to drmParsePciDeviceInfo()
xf86drm: move the final linux specific bits out of drmGetDevices
xf86drm: rename drmSam...
2010 Aug 05
0
[PATCH] drmmode: Add backlight support
...+++++++++++++++++++++++++++-
1 files changed, 268 insertions(+), 1 deletions(-)
diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 9b5d52d..7c3c250 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -35,13 +35,30 @@
#include "nv_include.h"
#include "xf86drmMode.h"
-#include "X11/Xatom.h"
+#include <X11/Xatom.h>
+#include <fcntl.h>
#include <sys/ioctl.h>
#ifdef HAVE_LIBUDEV
#include "libudev.h"
#endif
+
+#define BACKLIGHT_NAME "Backlight"
+#define BACKLIGHT_DEPRECATED_NAME "BACK...
2012 Feb 15
11
[Patches][nouveau/ddx]: Improvements to bufferswap implementation and timestamping
Hi,
here a set of patches against the nouveau-ddx. This is an extended and
revised set, based on Francisco Jerez feedback from autumn last year.
[1/9] Makes pageflipping work again on X-Server 1.12rc. It apparently stopped
working somewhere around Xorg 1.11+.
[2/9] Implements handling of pageflip completion events from the kernel.
Francisco Jerez argument against including it was that the