dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH libdrm 00/11] Random assortment of fixes and enhancements
@ 2015-01-23 16:08 Thierry Reding
  2015-01-23 16:08 ` [PATCH libdrm 01/11] libdrm: valgrind-clear a few more IOCTL arguments Thierry Reding
                   ` (11 more replies)
  0 siblings, 12 replies; 29+ messages in thread
From: Thierry Reding @ 2015-01-23 16:08 UTC (permalink / raw)
  To: dri-devel; +Cc: Laurent Pinchart

From: Thierry Reding <treding@nvidia.com>

This is a stash of commits that I've been carrying for a couple months.
Laurent really wanted to have the connector name patch for modetest so
I thought I'd send them all out for review.

Thierry

Thierry Reding (11):
  libdrm: valgrind-clear a few more IOCTL arguments
  libdrm: Remove gratuitous blank lines
  libdrm: Make indentation consistent
  tests: Split helpers into library
  tests: Move name tables to libutil
  xf86drmMode.h: Use consistent padding
  xf86drmMode.h: Add DisplayPort MST encoder type
  tests: modetest: Accept connector names
  tests: Add libkms-test library
  tests: kms: Implement CRTC stealing test
  tests: kms: Implement universal planes test

 configure.ac                        |   2 +
 tests/Makefile.am                   |   2 +-
 tests/kms/Makefile.am               |  35 ++
 tests/kms/kms-steal-crtc.c          | 161 ++++++
 tests/kms/kms-universal-planes.c    | 358 ++++++++++++++
 tests/kms/libkms-test-crtc.c        |  47 ++
 tests/kms/libkms-test-device.c      | 218 ++++++++
 tests/kms/libkms-test-framebuffer.c | 157 ++++++
 tests/kms/libkms-test-plane.c       | 139 ++++++
 tests/kms/libkms-test-screen.c      |  92 ++++
 tests/kms/libkms-test.h             | 120 +++++
 tests/modeprint/Makefile.am         |   1 +
 tests/modeprint/modeprint.c         |   2 +-
 tests/modetest/Makefile.am          |   2 +
 tests/modetest/buffers.c            | 956 +-----------------------------------
 tests/modetest/buffers.h            |  12 +-
 tests/modetest/cursor.c             |   4 +-
 tests/modetest/modetest.c           | 207 +++++---
 tests/proptest/Makefile.am          |   4 +-
 tests/proptest/proptest.c           |  43 +-
 tests/util/Makefile.am              |  21 +
 tests/util/common.h                 |  33 ++
 tests/util/format.c                 | 119 +++++
 tests/util/format.h                 |  65 +++
 tests/util/kms.c                    | 122 +++++
 tests/util/kms.h                    |  33 ++
 tests/util/pattern.c                | 870 ++++++++++++++++++++++++++++++++
 tests/util/pattern.h                |  39 ++
 tests/vbltest/Makefile.am           |   1 +
 tests/vbltest/vbltest.c             |   2 +-
 xf86drmMode.c                       |  17 +-
 xf86drmMode.h                       |  17 +-
 32 files changed, 2805 insertions(+), 1096 deletions(-)
 create mode 100644 tests/kms/Makefile.am
 create mode 100644 tests/kms/kms-steal-crtc.c
 create mode 100644 tests/kms/kms-universal-planes.c
 create mode 100644 tests/kms/libkms-test-crtc.c
 create mode 100644 tests/kms/libkms-test-device.c
 create mode 100644 tests/kms/libkms-test-framebuffer.c
 create mode 100644 tests/kms/libkms-test-plane.c
 create mode 100644 tests/kms/libkms-test-screen.c
 create mode 100644 tests/kms/libkms-test.h
 create mode 100644 tests/util/Makefile.am
 create mode 100644 tests/util/common.h
 create mode 100644 tests/util/format.c
 create mode 100644 tests/util/format.h
 create mode 100644 tests/util/kms.c
 create mode 100644 tests/util/kms.h
 create mode 100644 tests/util/pattern.c
 create mode 100644 tests/util/pattern.h

-- 
2.1.3

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2015-01-29 15:36 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-23 16:08 [PATCH libdrm 00/11] Random assortment of fixes and enhancements Thierry Reding
2015-01-23 16:08 ` [PATCH libdrm 01/11] libdrm: valgrind-clear a few more IOCTL arguments Thierry Reding
2015-01-24 23:19   ` Laurent Pinchart
2015-01-23 16:08 ` [PATCH libdrm 02/11] libdrm: Remove gratuitous blank lines Thierry Reding
2015-01-24 23:19   ` Laurent Pinchart
2015-01-23 16:08 ` [PATCH libdrm 03/11] libdrm: Make indentation consistent Thierry Reding
2015-01-24 23:20   ` Laurent Pinchart
2015-01-23 16:08 ` [PATCH libdrm 04/11] tests: Split helpers into library Thierry Reding
2015-01-24 23:24   ` Laurent Pinchart
2015-01-29 15:27   ` [PATCH 04.1/11] SQUASH: tests: misc cleanups Emil Velikov
2015-01-29 15:27   ` [PATCH 04.2/11] SQUASH: util: add android build Emil Velikov
2015-01-23 16:08 ` [PATCH libdrm 05/11] tests: Move name tables to libutil Thierry Reding
2015-01-24 23:24   ` Laurent Pinchart
2015-01-29 15:28   ` [PATCH 05.1/11] SQUASH: util: add the kms.[ch] to makefile.sources Emil Velikov
2015-01-23 16:08 ` [PATCH libdrm 06/11] xf86drmMode.h: Use consistent padding Thierry Reding
2015-01-24 23:26   ` Laurent Pinchart
2015-01-23 16:08 ` [PATCH libdrm 07/11] xf86drmMode.h: Add DisplayPort MST encoder type Thierry Reding
2015-01-24 23:40   ` Laurent Pinchart
2015-01-23 16:08 ` [PATCH libdrm 08/11] tests: modetest: Accept connector names Thierry Reding
2015-01-24 23:56   ` Laurent Pinchart
2015-01-26 10:14     ` Thierry Reding
2015-01-26 10:24       ` Laurent Pinchart
2015-01-23 16:08 ` [PATCH libdrm 09/11] tests: Add libkms-test library Thierry Reding
2015-01-29 15:30   ` [PATCH 09.1/11] SQUASH: libkms-test: add missing header to the distribution Emil Velikov
2015-01-23 16:08 ` [PATCH libdrm 10/11] tests: kms: Implement CRTC stealing test Thierry Reding
2015-01-29 15:30   ` [PATCH 10.1/11] SQUASH: kms-steal-crtc: link against cairo Emil Velikov
2015-01-23 16:08 ` [PATCH libdrm 11/11] tests: kms: Implement universal planes test Thierry Reding
2015-01-29 15:31   ` [PATCH 11.1/11] SQUASH: kms-universal-planes: link against cairo Emil Velikov
2015-01-29 15:36 ` [PATCH libdrm 00/11] Random assortment of fixes and enhancements Emil Velikov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox