mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
Call virtual functions by explicit class in constructor
This commit is contained in:
@@ -130,8 +130,8 @@ public:
|
||||
m_Replay(NULL),
|
||||
m_RemoteServer(false)
|
||||
{
|
||||
GetAPIProperties();
|
||||
FetchStructuredFile();
|
||||
ReplayProxy::GetAPIProperties();
|
||||
ReplayProxy::FetchStructuredFile();
|
||||
}
|
||||
|
||||
ReplayProxy(ReadSerialiser &reader, WriteSerialiser &writer, IRemoteDriver *remoteDriver,
|
||||
|
||||
@@ -34,7 +34,10 @@ class Matrix4f;
|
||||
class Camera : public ICamera
|
||||
{
|
||||
public:
|
||||
Camera(CameraType t) : type(t), dirty(true), pos(), dist(0.0f), angles() { ResetArcball(); }
|
||||
Camera(CameraType t) : type(t), dirty(true), pos(), dist(0.0f), angles()
|
||||
{
|
||||
Camera::ResetArcball();
|
||||
}
|
||||
virtual ~Camera() {}
|
||||
void Shutdown() { delete this; }
|
||||
void SetPosition(float x, float y, float z)
|
||||
|
||||
Reference in New Issue
Block a user