From 25a7afeeff7fabaf721cba732a1a3fb47b0b26cd Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 7 Oct 2012 12:36:08 +0000 Subject: Probe the maximal number of OpenGL lights. --- src/render/state.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/render/state.cc') diff --git a/src/render/state.cc b/src/render/state.cc index 06156a1..5f026f0 100644 --- a/src/render/state.cc +++ b/src/render/state.cc @@ -22,6 +22,7 @@ float State::state_aspect = 0; bool State::state_has_generate_mipmaps = false; bool State::state_has_vbo = false; GLuint State::state_vbo = 0; +int State::state_maxlights; math::Color State::state_color_primary; @@ -95,6 +96,10 @@ void State::init(int width, int height) else con_print << "disabled" << std::endl; + // probe maximal number of lights + glGetIntegerv(GL_MAX_LIGHTS, &state_maxlights); + con_debug << " maximum number of OpenGL lights is " << state_maxlights << std::endl; + // Generate VBO if (state_has_vbo) gl::genbuffers(1, &state_vbo); -- cgit v1.2.3