search for: 632c616b

Displaying 5 results from an estimated 5 matches for "632c616b".

2020 Mar 18
6
[PATCH i-g-t 0/4] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that) So, this series adds the relevant tests for it since nvidia's CRC
2020 Mar 18
0
[PATCH i-g-t 4/4] tests: Add nouveau-crc tests
...gt_require_intel(int fd) igt_require(is_i915_device(fd) && has_known_intel_chipset(fd)); } +void igt_require_nouveau(int fd) +{ + igt_require(is_nouveau_device(fd)); +} + void igt_require_vc4(int fd) { igt_require(is_vc4_device(fd)); diff --git a/lib/drmtest.h b/lib/drmtest.h index 632c616b..4937e9d2 100644 --- a/lib/drmtest.h +++ b/lib/drmtest.h @@ -97,10 +97,12 @@ void gem_quiescent_gpu(int fd); void igt_require_amdgpu(int fd); void igt_require_intel(int fd); +void igt_require_nouveau(int fd); void igt_require_vc4(int fd); bool is_amdgpu_device(int fd); bool is_i915_device(...
2020 Apr 17
0
[PATCH i-g-t v3 5/5] tests: Add nouveau-crc tests
...gt_require_intel(int fd) igt_require(is_i915_device(fd) && has_known_intel_chipset(fd)); } +void igt_require_nouveau(int fd) +{ + igt_require(is_nouveau_device(fd)); +} + void igt_require_vc4(int fd) { igt_require(is_vc4_device(fd)); diff --git a/lib/drmtest.h b/lib/drmtest.h index 632c616b..4937e9d2 100644 --- a/lib/drmtest.h +++ b/lib/drmtest.h @@ -97,10 +97,12 @@ void gem_quiescent_gpu(int fd); void igt_require_amdgpu(int fd); void igt_require_intel(int fd); +void igt_require_nouveau(int fd); void igt_require_vc4(int fd); bool is_amdgpu_device(int fd); bool is_i915_device(...
2020 Apr 17
5
[PATCH i-g-t v2 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> (Just forwarding this to nouveau's ml, since I completely forgot to before) Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that)
2020 Apr 17
10
[PATCH i-g-t v3 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that) So, this series adds the relevant tests for it since nvidia's CRC