]> git.tdb.fi Git - libs/gl.git/log
libs/gl.git
11 years agoAdd 3x3 and 2x2 uniform matrices
Mikko Rasa [Mon, 3 Sep 2012 10:18:30 +0000 (13:18 +0300)]
Add 3x3 and 2x2 uniform matrices

11 years agoRenderer no longer needs to track vertex array changes
Mikko Rasa [Mon, 3 Sep 2012 09:14:49 +0000 (12:14 +0300)]
Renderer no longer needs to track vertex array changes

11 years agoRework vertex array application
Mikko Rasa [Mon, 3 Sep 2012 09:04:21 +0000 (12:04 +0300)]
Rework vertex array application

VertexArray now tracks the currently applied array, and works out the
necessary changes as the difference from the previous one.

11 years agoStandard vertex components for tangent and binormal vectors
Mikko Rasa [Sun, 2 Sep 2012 18:11:56 +0000 (21:11 +0300)]
Standard vertex components for tangent and binormal vectors

This simplifies using normalmapped standard shaders, as the shader is
ready to use without the need to declare tangent and binormal attribute
indices.

11 years agoRearrange exporter controls and add the omitted export_uv property
Mikko Rasa [Sun, 2 Sep 2012 17:18:14 +0000 (20:18 +0300)]
Rearrange exporter controls and add the omitted export_uv property

11 years agoLoad VertexFormat for Mesh as an array of VertexComponents
Mikko Rasa [Sun, 2 Sep 2012 17:14:20 +0000 (20:14 +0300)]
Load VertexFormat for Mesh as an array of VertexComponents

The single-token approach made indexed attributes rather ugly.  Loading
each component separately also gives better diagnostics in case of
erroneous tokens.

11 years agoRearrange vertex components
Mikko Rasa [Sun, 2 Sep 2012 14:50:48 +0000 (17:50 +0300)]
Rearrange vertex components

The first 16 component types are now reserved for the library.  This
leaves room for adding standard generic attributes, such as TBN vectors.
To make further room, texcoords were limited to four indices.

Generic attributes are limited to 24.  Current implementations seem to
only support 16 (the minimum allowed by the spec), so this is not a huge
problem.  There's also exactly enough room for another set of 24 generic
integer attributes.

11 years agoAdd a helper function for making indexed vertex components
Mikko Rasa [Sun, 2 Sep 2012 14:32:19 +0000 (17:32 +0300)]
Add a helper function for making indexed vertex components

This puts the logic for checking the allowable index ranges in one place.

The base for an indexed component must now be one with a zero index.  It
didn't make much sense to add an index to an already indexed component.

VertexFormat::offset no longer takes an index, since the helper function
can be used.

11 years agoMemory allocation changes
Mikko Rasa [Sun, 2 Sep 2012 14:30:54 +0000 (17:30 +0300)]
Memory allocation changes

Use std::copy instead of memcpy
Call operator= from copy constructor
Allocate memory only when needed, not one byte before

11 years agoTurn VertexFormat into a class and hide the data member
Mikko Rasa [Sun, 2 Sep 2012 14:29:02 +0000 (17:29 +0300)]
Turn VertexFormat into a class and hide the data member

Outsiders have no need to access it directly

11 years agoHelper functions for extracting vertex component type and size
Mikko Rasa [Sun, 2 Sep 2012 09:16:12 +0000 (12:16 +0300)]
Helper functions for extracting vertex component type and size

Magic numbers are bad.  This makes the code more robust against future
changes.

11 years agoShuffle the members of VertexArray into a sensible order
Mikko Rasa [Thu, 30 Aug 2012 21:45:21 +0000 (00:45 +0300)]
Shuffle the members of VertexArray into a sensible order

11 years agoFix a type mismatch in the standard shader source
Mikko Rasa [Fri, 31 Aug 2012 07:06:54 +0000 (10:06 +0300)]
Fix a type mismatch in the standard shader source

11 years agoOnly call update_offset() once per append operation
Mikko Rasa [Thu, 30 Aug 2012 19:54:34 +0000 (22:54 +0300)]
Only call update_offset() once per append operation

11 years agoFix logic with appending Batches
Mikko Rasa [Thu, 30 Aug 2012 19:48:48 +0000 (22:48 +0300)]
Fix logic with appending Batches

Allow combining Batches of any primitive type with NV_primitive_restart,
and don't use it if not necessary.

11 years agoMake use of Bufferable in Batch
Mikko Rasa [Thu, 30 Aug 2012 19:42:52 +0000 (22:42 +0300)]
Make use of Bufferable in Batch

11 years agoMove Batch members around
Mikko Rasa [Thu, 30 Aug 2012 19:35:55 +0000 (22:35 +0300)]
Move Batch members around

The helper functions for changing data type don't really need to be
members, so put them in a private namespace.  Other functions rearranged
in a more sensible way.

11 years agoShader optimization
Mikko Rasa [Thu, 30 Aug 2012 19:01:55 +0000 (22:01 +0300)]
Shader optimization

ProgramBuilder can now collapse variables with only one reference into the
expression using it.  Fragment color expressions were tuned as well.

11 years agoException fixes
Mikko Rasa [Thu, 30 Aug 2012 08:41:15 +0000 (11:41 +0300)]
Exception fixes

Use out_of_range only when accessing arrays or array-like things, not for
general numeric arguments.

Armature::get_link functions now throw key_error since they behave like
map access externally.

11 years agoImprovements for shadow mapping
Mikko Rasa [Thu, 30 Aug 2012 06:03:39 +0000 (09:03 +0300)]
Improvements for shadow mapping

Depth bias is now configurable, and a darkness parameter was added.

11 years agoEntirely new system for building standard shaders
Mikko Rasa [Wed, 29 Aug 2012 21:48:58 +0000 (00:48 +0300)]
Entirely new system for building standard shaders

The old one was becoming such a huge mess that I had to spend two minutes
doing boolean analysis to figure out the conditions for a multiplication
operator.  The logic parser was also insufficient for expressing
sophisticated relationships between variables.

The new one operates with expression, starting from a target variable and
pulling in others to compute its value.  The logic parser is still there,
buts its burden is greatly reduced, as most of the work is done by the
dependency resolver.

Reflections are missing at the moment, but will be added back soon.  They
were pretty broken in the old system anyway, with the assumption that the
environment map is in eye space.

The generated shader code is rather verbose, containing a lot more local
variables than are needed.  An optimizer will be implemented in the near
future.

11 years agoDon't expose the shader type enum
Mikko Rasa [Tue, 28 Aug 2012 10:34:09 +0000 (13:34 +0300)]
Don't expose the shader type enum

Instead take an object oriented approach.

11 years agoRoute rendering calls through Renderer and add an exclusion system
Mikko Rasa [Tue, 28 Aug 2012 10:18:41 +0000 (13:18 +0300)]
Route rendering calls through Renderer and add an exclusion system

This is necessary for generating environment maps for an object, since
the object itself should not be included in the map.  The alternative is
to create a separate Scene, but that's rather clumsy.

11 years agoFix an uninitialized variable
Mikko Rasa [Tue, 28 Aug 2012 10:08:16 +0000 (13:08 +0300)]
Fix an uninitialized variable

11 years agoMore efficient stack management
Mikko Rasa [Tue, 28 Aug 2012 09:10:38 +0000 (12:10 +0300)]
More efficient stack management

Vectors are better than lists, since they don't need to allocate new
memory for every element.  A suitably sized reserve() does away with any
initial reallocations in most cases.

ProgramData in Renderer can be stored in a semi-independent stack as
well, since it can only be removed with a pop.  State is now devoid of
dynamically allocated memory, making the stack operations even faster.

11 years agoFix color equations in the standard shaders
Mikko Rasa [Tue, 28 Aug 2012 08:30:30 +0000 (11:30 +0300)]
Fix color equations in the standard shaders

The generated shader code assigned a scalar to a vec3 if lighting was
enabled without texture or material.  An unnecessary multiplication in
the alpha equation with texture but no material was removed.

Also fix texturing in the shader demo (Mesa does funny things with
uniforms).

11 years agoProvide the necessary uniforms from ShadowMap
Mikko Rasa [Tue, 28 Aug 2012 07:50:17 +0000 (10:50 +0300)]
Provide the necessary uniforms from ShadowMap

With the recent changes to the Effect and Renderer, it's finally possible
to avoid the need to specify the shadow map texture unit everywhere, and
get rid of the hardcoded gl_EyePlane* indices.

11 years agoTweak the shader functions in Renderer
Mikko Rasa [Tue, 28 Aug 2012 07:39:19 +0000 (10:39 +0300)]
Tweak the shader functions in Renderer

Since ProgramData is no longer tied to a single Program, we can retain it
over program changes.  This opens up some new possibilities, in
particular for Effects.

Also rename set_shader to set_shader_program.

11 years agoCheck the relevant extensions when using pixel formats
Mikko Rasa [Mon, 27 Aug 2012 21:05:08 +0000 (00:05 +0300)]
Check the relevant extensions when using pixel formats

11 years agoComplete rewrite of extension handling
Mikko Rasa [Mon, 27 Aug 2012 20:22:10 +0000 (23:22 +0300)]
Complete rewrite of extension handling

Prefer the promoted versions of extensions.  This improves compatibility
with OpenGL 3.0 and OpenGL ES 2.0.

Extension availability is now checked through global identifiers rather
than strings.  This eliminates the possibility of typos.

11 years agoRemove the global drawing functions
Mikko Rasa [Mon, 27 Aug 2012 20:15:23 +0000 (23:15 +0300)]
Remove the global drawing functions

11 years agoPull glDrawRangeElements from version_1_2.h
Mikko Rasa [Sun, 26 Aug 2012 21:46:25 +0000 (00:46 +0300)]
Pull glDrawRangeElements from version_1_2.h

11 years agoPass the Renderer to ObjectInstance::get_level_of_detail
Mikko Rasa [Sun, 26 Aug 2012 21:38:08 +0000 (00:38 +0300)]
Pass the Renderer to ObjectInstance::get_level_of_detail

As I recall, the camera was put in renderer to allow view-dependent
rendering without the need to pass data outside the rendering pipeline.
This is one of the cases where it is needed.

11 years agoRemove alignment where it doesn't belong
Mikko Rasa [Sun, 26 Aug 2012 21:37:01 +0000 (00:37 +0300)]
Remove alignment where it doesn't belong

11 years agoFix an incorrect extension name
Mikko Rasa [Sun, 26 Aug 2012 21:31:35 +0000 (00:31 +0300)]
Fix an incorrect extension name

11 years agoUse DerivedObjectLoader in Texture2D
Mikko Rasa [Sun, 26 Aug 2012 21:30:54 +0000 (00:30 +0300)]
Use DerivedObjectLoader in Texture2D

11 years agoBuffer fixes in ProgramData
Mikko Rasa [Sun, 26 Aug 2012 21:29:46 +0000 (00:29 +0300)]
Buffer fixes in ProgramData

Set proper usage hint, and delete the buffer in the destructor.

11 years agoLots of comment updates
Mikko Rasa [Sun, 26 Aug 2012 21:27:03 +0000 (00:27 +0300)]
Lots of comment updates

11 years agoImprovements to Bufferable
Mikko Rasa [Sun, 26 Aug 2012 19:20:16 +0000 (22:20 +0300)]
Improvements to Bufferable

Most members are now private, with read-only accessors, since the derived
classes should not modify them.  Some names were changed.

Add documentation to the class and all public/protected methods.

11 years agoDrop support for Renderables that don't accept a Renderer
Mikko Rasa [Sun, 26 Aug 2012 17:32:02 +0000 (20:32 +0300)]
Drop support for Renderables that don't accept a Renderer

The Renderer class is the way of the future and should be used whenever
possible.

11 years agoAvoid creating blocks for which there are no uniforms
Mikko Rasa [Sun, 26 Aug 2012 13:13:36 +0000 (16:13 +0300)]
Avoid creating blocks for which there are no uniforms

Since this requires finding the relevant uniforms before the block is
created, might as well store the list with the block for faster updates.

11 years agoAlign uniform blocks properly
Mikko Rasa [Sun, 26 Aug 2012 12:06:15 +0000 (15:06 +0300)]
Align uniform blocks properly

11 years agoImprove performance of Bufferable::update_buffer_data
Mikko Rasa [Sun, 26 Aug 2012 12:03:21 +0000 (15:03 +0300)]
Improve performance of Bufferable::update_buffer_data

... by avoiding the walk through the entire chain every time it is
called.  It's not necessary to add up all the sizes either, since we can
just get the end of the last Bufferable.

11 years agoGet all blocks for the program before applying them
Mikko Rasa [Sun, 26 Aug 2012 10:09:44 +0000 (13:09 +0300)]
Get all blocks for the program before applying them

This way, the correct size for the buffer can be determined right away,
rather than each block resizing it in turn.  Binding the buffer before
applying the blocks also avoids some thrashing.

11 years agoPass the UniformBlockInfo to get_block to avoid an unnecessary lookup
Mikko Rasa [Sun, 26 Aug 2012 09:42:14 +0000 (12:42 +0300)]
Pass the UniformBlockInfo to get_block to avoid an unnecessary lookup

11 years agoSort the uniforms in Program::UniformBlockInfo by offset
Mikko Rasa [Sun, 26 Aug 2012 08:01:12 +0000 (11:01 +0300)]
Sort the uniforms in Program::UniformBlockInfo by offset

11 years agoAlter the working logic of Bufferable to avoid some problems
Mikko Rasa [Sun, 26 Aug 2012 07:53:56 +0000 (10:53 +0300)]
Alter the working logic of Bufferable to avoid some problems

It was possible for the buffer data to be updated without going through
the dirty check in UniformBlock::apply, leaving the UniformBlock with a
null buf_range and resulting in a segfault.

11 years agoInitialize buf_range as null
Mikko Rasa [Sat, 25 Aug 2012 19:28:54 +0000 (22:28 +0300)]
Initialize buf_range as null

11 years agoDon't query array/matrix stride for uniforms which are not arrays/matrices
Mikko Rasa [Sat, 25 Aug 2012 19:28:05 +0000 (22:28 +0300)]
Don't query array/matrix stride for uniforms which are not arrays/matrices

11 years agoConstruct uniform buffers for named uniform blocks
Mikko Rasa [Fri, 24 Aug 2012 21:55:06 +0000 (00:55 +0300)]
Construct uniform buffers for named uniform blocks

11 years agoAdd a class to negotiate the storage of multiple objects in a buffer
Mikko Rasa [Fri, 24 Aug 2012 21:50:00 +0000 (00:50 +0300)]
Add a class to negotiate the storage of multiple objects in a buffer

11 years agoUniform handling fixes
Mikko Rasa [Fri, 24 Aug 2012 21:47:01 +0000 (00:47 +0300)]
Uniform handling fixes

Initialize strides to zero, and return a location of -1 for uniforms in
blocks.

11 years agoStore block pointer in uniform info
Mikko Rasa [Fri, 24 Aug 2012 21:46:24 +0000 (00:46 +0300)]
Store block pointer in uniform info

It greatly simplifies figuring out which uniforms are not in blocks.

11 years agoQuery information about uniform blocks when linking a Program
Mikko Rasa [Fri, 24 Aug 2012 16:05:43 +0000 (19:05 +0300)]
Query information about uniform blocks when linking a Program

11 years agoMove Program::bind to its proper place
Mikko Rasa [Fri, 24 Aug 2012 07:48:32 +0000 (10:48 +0300)]
Move Program::bind to its proper place

11 years agoUse typedefs in Program
Mikko Rasa [Fri, 24 Aug 2012 07:43:25 +0000 (10:43 +0300)]
Use typedefs in Program

11 years agoAdd the uniform buffer type
Mikko Rasa [Fri, 24 Aug 2012 07:29:08 +0000 (10:29 +0300)]
Add the uniform buffer type

11 years agoImprove binding of buffers
Mikko Rasa [Fri, 24 Aug 2012 07:25:52 +0000 (10:25 +0300)]
Improve binding of buffers

Add a set_current function, as seen in some other classes.

Buffer type support is now also checked in bind_to.

11 years agoAdd glBindBufferBase/Range functions to ARB_uniform_buffer_object
Mikko Rasa [Fri, 24 Aug 2012 07:16:36 +0000 (10:16 +0300)]
Add glBindBufferBase/Range functions to ARB_uniform_buffer_object

For some reason those functions are not tagged for the extension in
gl.spec.

11 years agoKeep track of buffer size
Mikko Rasa [Thu, 23 Aug 2012 09:32:30 +0000 (12:32 +0300)]
Keep track of buffer size

11 years agoMove some declarations around a bit
Mikko Rasa [Thu, 23 Aug 2012 06:30:20 +0000 (09:30 +0300)]
Move some declarations around a bit

11 years agoRemove the specialized setters from UniformBlock
Mikko Rasa [Wed, 22 Aug 2012 13:17:34 +0000 (16:17 +0300)]
Remove the specialized setters from UniformBlock

They were not very useful and were also getting in the way of uniform
buffer support.  UniformBlock also no longer clones the uniforms for
itself, reducing overhead.

11 years agoAdd definitions for the GL_ARB_uniform_buffer_object extension
Mikko Rasa [Wed, 22 Aug 2012 13:08:50 +0000 (16:08 +0300)]
Add definitions for the GL_ARB_uniform_buffer_object extension

11 years agoUpdate gl.spec to latest version
Mikko Rasa [Wed, 22 Aug 2012 13:06:54 +0000 (16:06 +0300)]
Update gl.spec to latest version

11 years agoMake RenderPass shprog and shdata settable from code
Mikko Rasa [Wed, 22 Aug 2012 12:28:40 +0000 (15:28 +0300)]
Make RenderPass shprog and shdata settable from code

For consistency with other similar interfaces, the pointers are now
const.  As a consequence, a uniforms statement in a datafile overrides
any previous uniforms.

11 years agoAdd a shortcut constructor to Object
Mikko Rasa [Wed, 22 Aug 2012 11:22:36 +0000 (14:22 +0300)]
Add a shortcut constructor to Object

11 years agoAvoid re-applying shader data unnecessarily
Mikko Rasa [Tue, 21 Aug 2012 23:02:26 +0000 (02:02 +0300)]
Avoid re-applying shader data unnecessarily

11 years agoPlug a memory leak
Mikko Rasa [Tue, 21 Aug 2012 23:01:15 +0000 (02:01 +0300)]
Plug a memory leak

11 years agoUse uniform arrays in Bloom and AnimatedObject
Mikko Rasa [Tue, 21 Aug 2012 22:56:37 +0000 (01:56 +0300)]
Use uniform arrays in Bloom and AnimatedObject

11 years agoImplement uniform arrays
Mikko Rasa [Tue, 21 Aug 2012 10:12:03 +0000 (13:12 +0300)]
Implement uniform arrays

11 years agoRewrite the Uniform classes as templates
Mikko Rasa [Tue, 21 Aug 2012 09:58:36 +0000 (12:58 +0300)]
Rewrite the Uniform classes as templates

This makes adding new uniform types easier, especially arrays.

11 years agoConvert existing post-processors to use the provided common resources
Mikko Rasa [Mon, 20 Aug 2012 21:05:41 +0000 (00:05 +0300)]
Convert existing post-processors to use the provided common resources

11 years agoUse two FBOs in Pipeline when necessary
Mikko Rasa [Mon, 20 Aug 2012 20:55:59 +0000 (23:55 +0300)]
Use two FBOs in Pipeline when necessary

11 years agoAdd a color curve post-processor
Mikko Rasa [Mon, 20 Aug 2012 20:30:51 +0000 (23:30 +0300)]
Add a color curve post-processor

11 years agoHelper functions for post-processors
Mikko Rasa [Mon, 20 Aug 2012 20:27:28 +0000 (23:27 +0300)]
Helper functions for post-processors

Most post-processors render fullscreen quads and use a very basic vertex
shader, so it makes sense to provide these as common resources.

11 years agoSimplify Pipeline pass management
Mikko Rasa [Mon, 20 Aug 2012 13:13:46 +0000 (16:13 +0300)]
Simplify Pipeline pass management

Originally I planned to use Pipelines to bundle objects with effects like
environmentally mapped reflection.  However, that task was delegated to
effects themselves recently, so there's no longer need for passthrough
rendering in Pipeline.  The render_all function was also a nuisance, as
it required Pipelines to be treated differently from other Renderables.

Passes are now stored in a list instead of a map.  This allows multiple
passes with the same tag (think multipass lighting), and avoids the need
to store the pass order separately.

11 years agoMove PipelinePass inside Pipeline and make the data members private
Mikko Rasa [Mon, 20 Aug 2012 12:39:26 +0000 (15:39 +0300)]
Move PipelinePass inside Pipeline and make the data members private

It's really simple and specific to Pipeline, so it doesn't make much
sense to have it as a separate class.  Encapsulation is necessary for
some future plans, and also more consistent with other public interfaces.

11 years agoUse the hash function from mspcore
Mikko Rasa [Sun, 19 Aug 2012 23:46:45 +0000 (02:46 +0300)]
Use the hash function from mspcore

Constructing tags mostly happens when loading datafiles or otherwise
outside the rendering loop, so the small extra overhead from a
cross-library function call is not significant.  Renderables that wish to
compare the Tag against a fixed value should avoid constructing the
reference Tag on every render call anyway.

11 years agoDelete multisample resources in Pipeline destructor
Mikko Rasa [Sun, 19 Aug 2012 11:16:20 +0000 (14:16 +0300)]
Delete multisample resources in Pipeline destructor

11 years agoLighting affecting the alpha value of a surface makes no sense
Mikko Rasa [Sun, 19 Aug 2012 00:34:22 +0000 (03:34 +0300)]
Lighting affecting the alpha value of a surface makes no sense

Use lighting only for RGB components, and take alpha directly from color
or material.  This should prevent problems caused by alpha>1.

11 years agoUse the TexGen wrapper in ShadowMap
Mikko Rasa [Thu, 16 Aug 2012 19:21:09 +0000 (22:21 +0300)]
Use the TexGen wrapper in ShadowMap

11 years agoAdd TexGen wrapper class
Mikko Rasa [Thu, 16 Aug 2012 19:19:28 +0000 (22:19 +0300)]
Add TexGen wrapper class

11 years agoTurn Effect into a Renderable
Mikko Rasa [Thu, 16 Aug 2012 16:46:12 +0000 (19:46 +0300)]
Turn Effect into a Renderable

They were really intended to be used this way.  This also makes it much
easier to apply an Effect to only a part of a scene.  Previously it would
have been necessary to wrap the Effect in a Pipeline, which doesn't
really support passthrough.

11 years agoRestructure ProgramData to support sharing between Programs
Mikko Rasa [Wed, 15 Aug 2012 19:36:33 +0000 (22:36 +0300)]
Restructure ProgramData to support sharing between Programs

This removes a major annoyance when dealing with ObjectInstances and
shaders.  It also paves way for Effects being able to provide uniforms,
and support for GL_ARB_uniform_buffer_object.

11 years agoGenerate a hash describing the layout of uniforms in a Program
Mikko Rasa [Wed, 15 Aug 2012 19:32:28 +0000 (22:32 +0300)]
Generate a hash describing the layout of uniforms in a Program

This allows easy recognition of whether two Programs have compatible
uniform layouts and could use shared data.

11 years agoAdd a function to query if a Technique has any shaders
Mikko Rasa [Wed, 15 Aug 2012 19:31:03 +0000 (22:31 +0300)]
Add a function to query if a Technique has any shaders

Also make PassMap public since it's exposed through get_passes

11 years agoFor a few lingering whitespace issues
Mikko Rasa [Wed, 15 Aug 2012 19:18:09 +0000 (22:18 +0300)]
For a few lingering whitespace issues

The scripts had been ignored entirely in the previous conversion.  As a
result, a few newly generated extensions didn't have proper whitespace.
Pure virtual functions in headers had also slipped through.

11 years agoMake the cubemap demo more interesting
Mikko Rasa [Mon, 13 Aug 2012 21:26:40 +0000 (00:26 +0300)]
Make the cubemap demo more interesting

It now displays two different shapes, which have reflections through an
environment map.  The same environment map is used to render a skybox.

Also uses the new direction lookup functions to create the contents for
the cube map texture.

11 years agoTangent and binormal vectors should use custom transform as well
Mikko Rasa [Mon, 13 Aug 2012 21:26:21 +0000 (00:26 +0300)]
Tangent and binormal vectors should use custom transform as well

11 years agoAdd a standard program feature for environment-mapped reflections
Mikko Rasa [Mon, 13 Aug 2012 21:21:05 +0000 (00:21 +0300)]
Add a standard program feature for environment-mapped reflections

11 years agoLookup functions to determine the orientation of cube map faces
Mikko Rasa [Mon, 13 Aug 2012 17:47:53 +0000 (20:47 +0300)]
Lookup functions to determine the orientation of cube map faces

The orientations are somewhat arbitary and not deducible with a simple
algorithm.  Writing the necessary conditional ladders everywhere would
be annoying.

11 years agoFix several bugs in the animation system
Mikko Rasa [Mon, 13 Aug 2012 12:25:54 +0000 (15:25 +0300)]
Fix several bugs in the animation system

Make the identity fallback matrix static so the pointers in interpolations
stay valid.

Don't crash when getting pose matrices from the first keyframe.

Matrix multiplication order for base point shift compensation was wrong.

Re-compensate for base point shift after interpolation.

Use correct comparison operator for max_index in AnimationPlayer.

Pass collection to keyframe loader to make loading poses possible.

Use Pose::set_armature rather than loading the pointer directly to get the
matrix array resized.

11 years agoSupport for exporting armatures and vertex groups
Mikko Rasa [Mon, 13 Aug 2012 10:18:43 +0000 (13:18 +0300)]
Support for exporting armatures and vertex groups

11 years agoRestructure the exporter to make room for new stuff
Mikko Rasa [Sun, 12 Aug 2012 16:06:29 +0000 (19:06 +0300)]
Restructure the exporter to make room for new stuff

11 years agoFix bugs that crept in with refactoring
Mikko Rasa [Sun, 12 Aug 2012 15:53:52 +0000 (18:53 +0300)]
Fix bugs that crept in with refactoring

Also add an additional safeguard against an infinite loop

11 years agoSupport for armature-based animation
Mikko Rasa [Sun, 12 Aug 2012 09:21:05 +0000 (12:21 +0300)]
Support for armature-based animation

11 years agoAllow setting keyframe matrix from the outside
Mikko Rasa [Sun, 12 Aug 2012 09:13:17 +0000 (12:13 +0300)]
Allow setting keyframe matrix from the outside

11 years agoFix uniform array element lookup
Mikko Rasa [Sun, 12 Aug 2012 09:07:38 +0000 (12:07 +0300)]
Fix uniform array element lookup

11 years agoAdd classes for armature-based deformation
Mikko Rasa [Sun, 12 Aug 2012 08:25:55 +0000 (11:25 +0300)]
Add classes for armature-based deformation

For now, link rotations in a pose must be specified in hierarchial order,
or the matrices will be wrong.

11 years agoExpose the build(Mesh &) shortcut in classes derived from GeometryBuilder
Mikko Rasa [Sat, 11 Aug 2012 18:43:18 +0000 (21:43 +0300)]
Expose the build(Mesh &) shortcut in classes derived from GeometryBuilder