Renderer: RenderWindow now requires a RenderDevice
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
inline RenderDevice& Graphics::GetRenderDevice()
|
||||
inline const std::shared_ptr<RenderDevice>& Graphics::GetRenderDevice() const
|
||||
{
|
||||
return *m_renderDevice;
|
||||
return m_renderDevice;
|
||||
}
|
||||
|
||||
inline TextureSamplerCache& Graphics::GetSamplerCache()
|
||||
|
||||
Reference in New Issue
Block a user