Home | History | Annotate | Download | only in pps

Lines Matching defs:Driver

22 /// @brief Abstract Driver class
23 class Driver
26 /// @return A map of supported DRM device names and their relative pps driver
27 static const std::unordered_map<std::string, std::unique_ptr<Driver>> &get_supported_drivers();
32 /// @return A driver supporting a specific DRM device
33 static Driver *get_driver(DrmDevice &&drm_device);
35 /// @return The name of a default selected PPS driver
38 /// @return The name of a driver based on the request, otherwise the default driver name
41 Driver() = default;
42 virtual ~Driver() = default;
45 Driver(const Driver &) = delete;
46 Driver &operator=(const Driver &) = delete;
67 /// depending on the concrete driver. Some could just ask the GPU to dump counters to a
91 Driver(Driver &&) = default;
92 Driver &operator=(Driver &&) = default;