diff --git a/modules/digitaluniverse/rendering/renderablepointssprite.cpp b/modules/digitaluniverse/rendering/renderablepointssprite.cpp deleted file mode 100644 index 176e0a9ac0..0000000000 --- a/modules/digitaluniverse/rendering/renderablepointssprite.cpp +++ /dev/null @@ -1,76 +0,0 @@ -/***************************************************************************************** - * * - * OpenSpace * - * * - * Copyright (c) 2014-2017 * - * * - * Permission is hereby granted, free of charge, to any person obtaining a copy of this * - * software and associated documentation files (the "Software"), to deal in the Software * - * without restriction, including without limitation the rights to use, copy, modify, * - * merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * - * permit persons to whom the Software is furnished to do so, subject to the following * - * conditions: * - * * - * The above copyright notice and this permission notice shall be included in all copies * - * or substantial portions of the Software. * - * * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * - * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * - * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * - * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * - * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * - * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * - ****************************************************************************************/ - -#include - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -namespace { - enum BlendMode { - BlendModeNormal = 0, - BlendModeAdditive - }; - - static const openspace::properties::Property::PropertyInfo TextureInfo = { - "Texture", - "Texture", - "This value specifies an image that is loaded from disk and is used as a texture " - "that is applied to this plane. This image has to be square." - }; - - static const openspace::properties::Property::PropertyInfo BillboardInfo = { - "Billboard", - "Billboard mode", - "This value specifies whether the plane is a billboard, which means that it is " - "always facing the camera. If this is false, it can be oriented using other " - "transformations." - }; - - static const openspace::properties::Property::PropertyInfo SizeInfo = { - "Size", - "Size (in meters)", - "This value specifies the size of the plane in meters." - }; - - static const openspace::properties::Property::PropertyInfo BlendModeInfo = { - "BlendMode", - "Blending Mode", - "This determines the blending mode that is applied to this plane." - }; -} // namespace - -namespace openspace { - -} // namespace openspace diff --git a/modules/digitaluniverse/rendering/renderablepointssprite.h b/modules/digitaluniverse/rendering/renderablepointssprite.h deleted file mode 100644 index 18b810d43d..0000000000 --- a/modules/digitaluniverse/rendering/renderablepointssprite.h +++ /dev/null @@ -1,45 +0,0 @@ -/***************************************************************************************** -* * -* OpenSpace * -* * -* Copyright (c) 2014-2017 * -* * -* Permission is hereby granted, free of charge, to any person obtaining a copy of this * -* software and associated documentation files (the "Software"), to deal in the Software * -* without restriction, including without limitation the rights to use, copy, modify, * -* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * -* permit persons to whom the Software is furnished to do so, subject to the following * -* conditions: * -* * -* The above copyright notice and this permission notice shall be included in all copies * -* or substantial portions of the Software. * -* * -* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * -* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * -* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * -* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * -* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE * -* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * -****************************************************************************************/ - -#ifndef __OPENSPACE_MODULE_DIGITALUNIVERSE___RENDERABLEPOINTSSPRITE___H__ -#define __OPENSPACE_MODULE_DIGITALUNIVERSE___RENDERABLEPOINTSSPRITE___H__ - -#include - -#include -#include -#include -#include - -#include - -namespace ghoul::filesystem { class File; } - -namespace ghoul::opengl { - class ProgramObject; - class Texture; -} // namespace ghoul::opengl - - -#endif // __OPENSPACE_MODULE_DIGITALUNIVERSE___RENDERABLEPOINTSSPRITE___H__