mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
pps: Add support for v3d ds
Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com> Acked-by: Iago Toral Quiroga <itoral@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31751>
This commit is contained in:
parent
3d2d3b2c10
commit
27771b4d55
1 changed files with 8 additions and 0 deletions
|
|
@ -25,6 +25,10 @@
|
|||
#include "panfrost/ds/pan_pps_driver.h"
|
||||
#endif // PPS_PANFROST
|
||||
|
||||
#ifdef PPS_V3D
|
||||
#include "broadcom/ds/v3d_pps_driver.h"
|
||||
#endif
|
||||
|
||||
#include "pps.h"
|
||||
#include "pps_algorithm.h"
|
||||
|
||||
|
|
@ -47,6 +51,10 @@ std::unordered_map<std::string, std::unique_ptr<Driver>> create_supported_driver
|
|||
map.emplace("panfrost", std::make_unique<PanfrostDriver>());
|
||||
#endif // PPS_PANFROST
|
||||
|
||||
#ifdef PPS_V3D
|
||||
map.emplace("v3d", std::make_unique<V3DDriver>());
|
||||
#endif
|
||||
|
||||
return map;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue