Files
OpenSpace/src/scripting/systemcapabilitiesbinding.cpp
Alexander Bock 3844df20c9 Feature/codegen lua (#1906)
Adapting Lua functions to new codegen functionality
Improve the documentation itself
Add some styling to generated documentation
Have parameter names for Lua-defined Lua function documentation

Co-authored-by: Emma Broman <emma.broman@liu.se>
2022-03-21 09:05:37 +01:00

75 lines
3.6 KiB
C++

/*****************************************************************************************
* *
* OpenSpace *
* *
* Copyright (c) 2014-2022 *
* *
* 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 <openspace/scripting/systemcapabilitiesbinding.h>
#include <openspace/scripting/lualibrary.h>
#include <ghoul/logging/logmanager.h>
#include <ghoul/misc/misc.h>
#include <ghoul/systemcapabilities/generalcapabilitiescomponent.h>
#include <ghoul/systemcapabilities/openglcapabilitiescomponent.h>
#include <cctype>
#include "systemcapabilitiesbinding_lua.inl"
namespace openspace::scripting {
LuaLibrary generalSystemCapabilities() {
return {
"systemCapabilities",
{
codegen::lua::OperatingSystem,
codegen::lua::FullOperatingSystem,
codegen::lua::InstalledMainMemory,
codegen::lua::Cores,
codegen::lua::CacheLineSize,
codegen::lua::L2Associativity,
codegen::lua::CacheSize,
codegen::lua::CpuExtensions
}
};
}
LuaLibrary openglSystemCapabilities() {
return {
"openglCapabilities",
{
codegen::lua::HasOpenGLVersion,
codegen::lua::OpenGLVersion,
codegen::lua::GlslCompiler,
codegen::lua::GpuVendor,
codegen::lua::GpuExtensions,
codegen::lua::IsExtensionSupported,
codegen::lua::MaxTextureUnits,
codegen::lua::Max2DTextureSize,
codegen::lua::Max3DTextureSize,
codegen::lua::MaxAtomicCounterBufferBindings,
codegen::lua::MaxShaderStorageBufferBindings,
codegen::lua::MaxUniformBufferBindings
}
};
}
} // namespace openspace::scripting