mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 21:55:53 +02:00
Fixed coding standard and build error
This commit is contained in:
parent
84cd200617
commit
4e699c0f84
1 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ class QOpenGLFramebufferObject;
|
|||
class ApplicationOverlay {
|
||||
public:
|
||||
|
||||
static enum UITYPES { HEMISPHERE, SEMICIRCLE, CURVED_SEMICIRCLE };
|
||||
enum UIType { HEMISPHERE, SEMICIRCLE, CURVED_SEMICIRCLE };
|
||||
|
||||
ApplicationOverlay();
|
||||
~ApplicationOverlay();
|
||||
|
@ -34,7 +34,7 @@ public:
|
|||
|
||||
// Setters
|
||||
void setOculusAngle(float oculusAngle) { _oculusAngle = oculusAngle; }
|
||||
void setUiType(UITYPES uiType) { _uiType = uiType; }
|
||||
void setUIType(UIType uiType) { _uiType = uiType; }
|
||||
|
||||
private:
|
||||
// Interleaved vertex data
|
||||
|
@ -51,7 +51,7 @@ private:
|
|||
float _trailingAudioLoudness;
|
||||
float _oculusAngle;
|
||||
float _distance;
|
||||
int _uiType;
|
||||
UIType _uiType;
|
||||
};
|
||||
|
||||
#endif // hifi_ApplicationOverlay_h
|
Loading…
Reference in a new issue