summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libva/libva.inc
Commit message (Collapse)AuthorAgeFilesLines
* libva: upgrade 2.11.0 -> 2.12.0wangmy2021-06-261-1/+1
| | | | | | | | | | (From OE-Core rev: 4abdc18d37e7ac039e71c613b9bb7a4c19c67b7b) (From OE-Core rev: 5eb537767bb8d3e938b2c5f3cc740eae0cf96094) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libva: upgrade 2.10.0 -> 2.11.0zhengruoqin2021-04-181-1/+1
| | | | | | | (From OE-Core rev: 47360e2dacf0521260ef5883f4a741eb8c69a18e) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libva: upgrade 2.9.0 -> 2.10.0Alexander Kanavin2020-12-301-1/+1
| | | | | | | (From OE-Core rev: e4e3423891755a2601c127e138a713a79f1be61e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libva: upgrade 2.8.0 -> 2.9.0Alexander Kanavin2020-11-031-0/+2
| | | | | | | (From OE-Core rev: 69a25c4fa5fc8fb1d16622836a9b468398154ad7) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta: Don't inherit 'features_check' in recipes that don't utilize itJacob Kroon2020-06-121-1/+1
| | | | | | | (From OE-Core rev: e5591eb5165b1b7287a12928e2b179ae2b5ce5d6) Signed-off-by: Jacob Kroon <jacob.kroon@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libva-initial: New bootstrap recipeZoltan Boszormenyi2020-05-091-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Mesa needs libva.pc and libva headers to enable the VAAPI state tracker and drivers. This recipe is a variant of the full libva package build as in: * it only depends on libdrm to build so it doesn't introduce the circular dependency between mesa and libva, and * it doesn't include the libraries in the final package. However, there is another issue with build dependency handling in Yocto. libva depends on mesa and mesa depends on this package. Any package that depends on libva therefore would pull in libva and this package resulting in an error in the prepare-sysroot phase because they would install identical files into the per-recipe sysroot. Using the package name "*-initial" avoids this because of the interaction between sstate.bbclass and staging.bbclass: any package with the pattern "*-initial" in the name is excluded from the dependency list unless explicitly added to DEPENDS. (From OE-Core rev: b697f0446f9b016c6c229edda1bf20ca3a7c88ce) Signed-off-by: Böszörményi Zoltán <zboszor@pr.hu> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libva: Factor out base parts into an include fileZoltan Boszormenyi2020-05-091-0/+25
To enable the VAAPI state tracker and drivers in mesa, it needs libva.pc and the libva headers. To enable GLX support in libva, it needs mesa to be compiled first. At the recipe level, this would create a circular dependency between libva and mesa. This is a preparation step before introducing a new libva recipe variant to break the circular dependency. (From OE-Core rev: 3028a2194e9ade70840600867e38d8873f07a93f) Signed-off-by: Böszörményi Zoltán <zboszor@pr.hu> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>