Vladimír Vondruš
c2949d6b59
More Xlib workarounds...
14 years ago
Vladimír Vondruš
ae28de197b
Classes for handling version and extension information.
14 years ago
Vladimír Vondruš
a5ab6253b7
Contexts refactoring.
...
Contexts attached to window are now *WindowContext, pure contexts are
just *Context.
14 years ago
Vladimír Vondruš
bd665cb280
More texture and renderbuffer internal formats supported in OpenGL ES 3.0.
14 years ago
Vladimír Vondruš
f15906b28b
Fixed linking errors when only OpenGL ES 2 is available.
...
This is currently toggled with TARGET_OPENGLES2 option, which is enabled
by default when TARGET_OPENGLES is enabled.
14 years ago
Vladimír Vondruš
7a066672cd
Queries (except for timing ones) are available in OpenGL ES 3.0.
14 years ago
Vladimír Vondruš
ac3a8b55d6
New Compute shader stage in OpenGL 4.3.
14 years ago
Vladimír Vondruš
1c8bda59b2
Unsigned uniforms and retrievable hint supported in OpenGL ES 3.0.
14 years ago
Vladimír Vondruš
6c244eb703
CubeMapTexture is always seamless on OpenGL ES 3.0.
14 years ago
Vladimír Vondruš
b067a6d1dc
Several new buffer targets and usages are available on OpenGL ES 3.0.
...
In turn also BufferedImage is now available on OpenGL ES 3.0.
14 years ago
Vladimír Vondruš
3271896b15
Deprecated uniformLocation() in favor of GL 4.3 explicit uniform location.
14 years ago
Vladimír Vondruš
5310326e69
Enabled RGB565 and BPTC textures, as they are now in headers.
14 years ago
Vladimír Vondruš
e378195d20
Added headers for OpenGL 4.3 and OpenGL ES 3.0.
14 years ago
Vladimír Vondruš
e213979559
Fixed compilation on OpenGL ES.
14 years ago
Vladimír Vondruš
d88171aaae
Simplified linking step.
14 years ago
Vladimír Vondruš
23f93cd65e
Mention @fn_gl and @def_gl in Coding Style manual.
14 years ago
Vladimír Vondruš
035bd4d376
Links to documentation of related gl*() function.
...
Each function touching OpenGL now has list of all related functions
touching OpenGL.
14 years ago
Vladimír Vondruš
f3a07f82f4
Method chaining for textures.
14 years ago
Vladimír Vondruš
0bf1b62080
Framebuffer: ability to specify which polygon facing to cull
14 years ago
Vladimír Vondruš
dfb4e0f807
Mesh: ability to specify which polygons are front facing.
14 years ago
Vladimír Vondruš
d5614a2f2c
Mesh: added support for polygon offset.
14 years ago
Vladimír Vondruš
fd1ae3f775
Mesh: added support for provoking vertex selection.
14 years ago
Vladimír Vondruš
092d2fc897
Doc++
...
* Workarounds for unsupported features in OpenGL ES.
* Initial values for some states.
14 years ago
Vladimír Vondruš
7d3435f483
SceneGraph: method chaining also for Camera.
...
Mention it also in documentation to hint users to use it.
14 years ago
Vladimír Vondruš
6b5c20bc83
Grouped global mesh settings together.
14 years ago
Vladimír Vondruš
b8d18d01ec
Using initializer lists in Primitives tests.
14 years ago
Vladimír Vondruš
b7d6a7e67d
De-inlined MeshTools::CompressIndices.
...
The class doesn't export anything templated in its API, so it's a waste
to have everything in the header.
14 years ago
Vladimír Vondruš
08c8696978
Doc++, added missing inline.
14 years ago
Vladimír Vondruš
fe62f547de
Reduced #includes in headers.
...
Magnum.h now doesn't include anything except OpenGL headers, thus
changes in Math library don't trigger recompilation of everything, but
only of things really depending on it.
Math constants moved to separate file for similar reasons, de-inlined
some functions to remove the need for some #includes.
14 years ago
Vladimír Vondruš
c78cc95284
Physics: Moved Point constructor to source file.
...
Point has virtual functions, this avoids creating vtable for it in every
compilation unit.
14 years ago
Vladimír Vondruš
7fbf28f4a1
Added Cylinder primitive.
14 years ago
Vladimír Vondruš
e17835e3b6
Primitives: Ability to specify number of cylinder rings on Capsule.
14 years ago
Vladimír Vondruš
de2b1b77d5
Using Compare::Containers in primitive unit tests.
14 years ago
Vladimír Vondruš
d12ce5b2b4
Fixed copy-pasta documentation.
14 years ago
Vladimír Vondruš
30032a5971
Don't confuse vertices and vertex positions.
...
Mesh consists of vertices, each vertex has position, texture coordinate,
color, normal, etc.
14 years ago
Vladimír Vondruš
6882cd9447
Fixed example (strongly typed enums) in AbstractShaderProgram.
14 years ago
Vladimír Vondruš
b9ed4159e0
Framebuffer: don't allow invalid bits to be present in *Mask enum sets.
...
Now ~Framebuffer::Clear::Color is equal to
Framebuffer::Clear::Depth|Framebuffer::Clear::Stencil, which wasn't the
case before, the same for BlitMask.
14 years ago
Vladimír Vondruš
685be07a8f
Removed parameter-less clear() from Framebuffer.
...
Automatic behavior could cause harm, as the stencil/depth test could be
temporarily disabled for some parts of the scene (but enabled for the
rest), causing clear() to leave stencil/depth buffer untouched.
14 years ago
Vladimír Vondruš
aeda5009df
Inlined simple function.
14 years ago
Vladimír Vondruš
268f678221
SceneGraph: Camera aspect ratio was not fixed after changing policy.
...
Also added test for projectionSize(), which couldn't be added before
because of gl*() calls.
14 years ago
Vladimír Vondruš
e1c22b9ca2
Don't do anything OpenGL-related inside Camera itself.
...
* The user might not want to call Framebuffer::clear(), because there
could be something already rendered with another camera.
* The user might not want to call Framebuffer::setViewport(), because
there could be different framebuffer attached.
14 years ago
Vladimír Vondruš
37b6049a62
Initial version of Profiler class.
14 years ago
Vladimír Vondruš
8ca083691a
SceneGraph: compute projection size from aspectratio-corrected matrix.
...
It isn't tested anywhere, because Camera is calling glViewport().
14 years ago
Vladimír Vondruš
08f26a7e3a
Oops, premature refactoring.
...
RectangularMatrix doesn't have ones on diagonal by default.
14 years ago
Vladimír Vondruš
1727357cc5
Gauss-Jordan elimination.
14 years ago
Vladimír Vondruš
742a75277d
Moved unary operator- from Vector to RectangularMatrix.
14 years ago
Vladimír Vondruš
166afd5248
Documented missing features in Mesh in OpenGL ES.
14 years ago
Vladimír Vondruš
e21c9ca3a5
Function for computing trace of square matrix.
14 years ago
Vladimír Vondruš
3558859cc6
Utility function for clamping value in given limits.
14 years ago
Vladimír Vondruš
fb61c22e07
Fixed matrix multiplication in RectangularMatrix subclasses.
...
Now all possible cases are properly handled (row vector * column vector,
column vector * row vector, ...). All operators taking arbitrary type as
argument (element-wise multiplication) now have std::enable_if only for
numerical types.
14 years ago