Home
last modified time | relevance | path

Searched refs:CGL14Device (Results 1 – 3 of 3) sorted by relevance

/dports/games/colobot/colobot-colobot-gold-0.2.0-alpha/src/graphics/opengl/
H A Dgl14device.cpp46 CGL14Device::CGL14Device(const DeviceConfig &config) in CGL14Device() function in Gfx::CGL14Device
50 CGL14Device::~CGL14Device() in ~CGL14Device()
54 void CGL14Device::DebugHook() in DebugHook()
61 void CGL14Device::DebugLights() in DebugLights()
161 std::string CGL14Device::GetName() in GetName()
166 bool CGL14Device::Create() in Create()
400 void CGL14Device::Destroy() in Destroy()
441 void CGL14Device::BeginScene() in BeginScene()
451 void CGL14Device::EndScene() in EndScene()
461 void CGL14Device::Clear() in Clear()
[all …]
H A Dgl14device.h64 class CGL14Device : public CDevice
67 CGL14Device(const DeviceConfig &config);
68 virtual ~CGL14Device();
H A Dglutil.cpp74 if (name == "default") return MakeUnique<CGL14Device>(config); in CreateDevice()
75 else if (name == "opengl") return MakeUnique<CGL14Device>(config); in CreateDevice()
76 else if (name == "gl14") return MakeUnique<CGL14Device>(config); in CreateDevice()
85 else return MakeUnique<CGL14Device>(config); in CreateDevice()