Merge branch 'master' into feature/NewAtmosphere

This commit is contained in:
Jonathas Costa
2017-12-18 12:21:08 -05:00
4 changed files with 6 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ return {
Renderable = {
Type = "RenderableStars",
File = "speck/stars.speck",
-- File = "speck/stars_new.speck",
Texture = "textures/halo.png",
ColorMap = "colorbv.cmap"
},

View File

@@ -65,9 +65,9 @@ class TouchMarker : public properties::PropertyOwner {
std::unique_ptr<ghoul::opengl::ProgramObject> _shader;
GLuint _quad;
GLuint _vertexPositionBuffer;
int _numFingers;
GLuint _quad = 0;
GLuint _vertexPositionBuffer = 0;
int _numFingers = 0;
};
} // openspace namespace

View File

@@ -290,7 +290,7 @@ function generateSettings(arg)
local refresh = ""
if arg["refreshRate"] then
refresh = "refreshRate=" .. arg["refreshRate"] .. " "
refresh = "refreshRate=\"" .. arg["refreshRate"] .. "\" "
end