summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/igt-gpu-tools
Commit message (Collapse)AuthorAgeFilesLines
* igt-gpu-tools: removeAnuj Mittal2020-06-231-39/+0
| | | | | | The recipe is in oe-core now. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* igt-gpu-tools: upgrade 1.24 -> 1.25Anuj Mittal2020-05-081-6/+6
| | | | | | | | | aubdump has been removed upstream. Switch to using meson and force SECURITY_X_LDFLAGS to be used to switch to lazy binding instead of "now". This makes sure the symbols are resolved correctly and things don't segfault at runtime. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* Revert "igt-gpu-tools: upgrade 1.24 -> 1.25"Anuj Mittal2020-04-271-4/+6
| | | | | | | | | This reverts commit 77a0e289d5df928a5d5c9c659c850e7b46505711. The tests in 1.25 segfault. Revert the upgrade while we are trying to identify and fix the problem. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* igt-gpu-tools: upgrade 1.24 -> 1.25Anuj Mittal2020-04-201-6/+4
| | | | | | aubdump has been removed upstream. Switch to using meson. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* igt-gpu-tools: upgrade 1.23 -> 1.24Naveen Saini2019-07-012-52/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GCC9 build failures already fixed, patch is not required anymore. Below Copyright information is appended to COPYING Copyright (C) 1999-2007 Brian Paul All Rights Reserved. Copyright 2015 Philip Taylor <philip@zaynar.co.uk> Copyright 2018 Advanced Micro Devices, Inc. Shader debugger removed due to lack of use and accumulation of bitrot. (Arkadiusz Hiler) So removing --disable-shader-debugger configuration option. Added support for testing DP/HDMI audio with the Chamelium device, dropping the audio tests that required exotic custom hardware to execute. (Simon Ser) Removing audio configuration. Stack traces now contain source file names and line numbers, using libdw. (Maarten Lankhorst) Due to this faced build failure: | checking for libdw... no | configure: error: Package requirements (libdw) were not met: | | No package 'libdw' found To fix above added elfutils in DEPENDS. Dropped gtkdoc support. So no need to inherit gtkdoc More details can be found here: https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/22850c1906550fb97b405c019275dcfb34be8cf7 Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* igt-gpu-tools: fix build error with gcc9Anuj Mittal2019-06-012-1/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Backport from master to fix build error when building with gcc 9: | ../../igt-gpu-tools-1.23/lib/igt_fb.c: In function 'create_bo_for_fb': | ../../igt-gpu-tools-1.23/lib/igt_fb.c:413:16: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith] | 413 | memset(ptr + offsets[0], full_range ? 0x00 : 0x10, | | ^ | ../../igt-gpu-tools-1.23/lib/igt_fb.c:415:16: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith] | 415 | memset(ptr + offsets[1], 0x80, | | ^ | ../../igt-gpu-tools-1.23/lib/igt_fb.c: In function 'convert_rgb24_to_nv12': | ../../igt-gpu-tools-1.23/lib/igt_fb.c:1382:12: error: array subscript 2 is outside array bounds of 'struct igt_vec4[2]' [-Werror=array-bounds] | 1382 | rgb->d[0] = rgb24[2]; | | ~~~~~~~~~~^~~~~~~~~~ | ../../igt-gpu-tools-1.23/lib/igt_fb.c:1549:20: note: while referencing 'rgb' | 1549 | struct igt_vec4 rgb[2]; | | ^~~ | ../../igt-gpu-tools-1.23/lib/igt_fb.c:1383:12: error: array subscript 2 is outside array bounds of 'struct igt_vec4[2]' [-Werror=array-bounds] | 1383 | rgb->d[1] = rgb24[1]; | | ~~~~~~~~~~^~~~~~~~~~ | ../../igt-gpu-tools-1.23/lib/igt_fb.c:1549:20: note: while referencing 'rgb' | 1549 | struct igt_vec4 rgb[2]; | | ^~~ | ../../igt-gpu-tools-1.23/lib/igt_fb.c:1384:12: error: array subscript 2 is outside array bounds of 'struct igt_vec4[2]' [-Werror=array-bounds] Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* igt-gpu-tools: fix packagingAnuj Mittal2018-09-271-0/+42
Make sure new project name is used to ensure files are packaged correctly. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>