diff --git a/src/tool/pps/pps_driver.cc b/src/tool/pps/pps_driver.cc index 4d92d6e9d32..4eb3a17aa7c 100644 --- a/src/tool/pps/pps_driver.cc +++ b/src/tool/pps/pps_driver.cc @@ -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> create_supported_driver map.emplace("panfrost", std::make_unique()); #endif // PPS_PANFROST +#ifdef PPS_V3D + map.emplace("v3d", std::make_unique()); +#endif + return map; }