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:
Christian Gmeiner 2024-10-10 11:53:46 +02:00 committed by Marge Bot
parent 3d2d3b2c10
commit 27771b4d55

View file

@ -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;
}