GraphicsImpl.h 436 B

123456789101112131415
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. // Note: GraphicsImpl class is purposefully API-specific. It should not be used by Urho3D client applications,
  5. // unless required for e.g. integration of 3rd party libraries that interface directly with the graphics device.
  6. #ifdef URHO3D_OPENGL
  7. #include "OpenGL/OGLGraphicsImpl.h"
  8. #endif
  9. #ifdef URHO3D_D3D11
  10. #include "Direct3D11/D3D11GraphicsImpl.h"
  11. #endif