Merge pull request #92045 from RandomShaper/context_getter

Add context getter to RenderingDevice
This commit is contained in:
Rémi Verschelde
2024-05-18 17:41:38 +02:00

View File

@ -797,6 +797,8 @@ private:
#endif
public:
RenderingContextDriver *get_context_driver() const { return context; }
const RDD::Capabilities &get_device_capabilities() const { return driver->get_capabilities(); }
bool has_feature(const Features p_feature) const;