]>
git.tdb.fi Git - libs/gl.git/log
Mikko Rasa [Wed, 5 Feb 2020 21:48:46 +0000 (23:48 +0200)]
Recognize an assignment to an out parameter as used
Mikko Rasa [Wed, 5 Feb 2020 21:35:42 +0000 (23:35 +0200)]
Add support for non-square matrix uniforms
Mikko Rasa [Wed, 5 Feb 2020 18:07:28 +0000 (20:07 +0200)]
Rewrite ProgramData update in a more efficient way
This method does not do any map lookups on the fast path.
Mikko Rasa [Mon, 4 Nov 2019 01:58:45 +0000 (03:58 +0200)]
Remove the EXT_draw_range_elements extension
Its main use is to allow the OpenGL implementation to optimize reads from
client memory, which is moot when storing vertices in VRAM.
Mikko Rasa [Mon, 4 Nov 2019 01:56:05 +0000 (03:56 +0200)]
Check for null camera in View::render
Mikko Rasa [Mon, 4 Nov 2019 01:55:41 +0000 (03:55 +0200)]
Allow system framebuffer to not have attachments
Mikko Rasa [Sun, 3 Nov 2019 17:41:37 +0000 (19:41 +0200)]
Use a persistent Renderer in View
Mikko Rasa [Sun, 3 Nov 2019 11:58:16 +0000 (13:58 +0200)]
Deprecated the Renderer constructor taking a Camera pointer
Mikko Rasa [Fri, 1 Nov 2019 08:25:22 +0000 (10:25 +0200)]
Remove one more render function without a Renderer I missed before
Mikko Rasa [Thu, 31 Oct 2019 11:47:22 +0000 (13:47 +0200)]
Support rendering View with an externally provided Renderer
This can be useful if an OffscreenView is used to render a sub-scene in
some renderable's setup_frame function.
Mikko Rasa [Thu, 31 Oct 2019 00:44:55 +0000 (02:44 +0200)]
Remove various old deprecated things
Mark remaining ones as deprecated with a compiler attribute.
Mikko Rasa [Tue, 29 Oct 2019 22:02:51 +0000 (00:02 +0200)]
Require vertex arrays to have a buffer when adding them to VertexSetup
Mikko Rasa [Tue, 29 Oct 2019 00:25:16 +0000 (02:25 +0200)]
Remove bind mechanics from Mesh and VertexArray
It's now handled through VertexSetup.
Mikko Rasa [Tue, 29 Oct 2019 00:19:43 +0000 (02:19 +0200)]
Remove last fragments of rendererless rendering
Mikko Rasa [Tue, 29 Oct 2019 00:04:37 +0000 (02:04 +0200)]
Add sanity checks to bind functions
Mikko Rasa [Mon, 28 Oct 2019 23:57:53 +0000 (01:57 +0200)]
Always use VertexSetup in Mesh
This means vertex array objects are now required. I don't think that's a
problem since they've been supported even on mobile hardware for a long
time.
Mikko Rasa [Mon, 28 Oct 2019 13:42:20 +0000 (15:42 +0200)]
Remove immediate mode emulation
It's not very useful anymore and starting to get in the way of other
things.
Mikko Rasa [Wed, 23 Oct 2019 11:25:46 +0000 (14:25 +0300)]
Always use buffers in Mesh
Mikko Rasa [Sun, 20 Oct 2019 17:20:57 +0000 (20:20 +0300)]
Remove support for legacy OpenGL features
This includes all fixed-point functionality as well as the
NV_primitive_restart and SGIS_generate_mipmap extensions, which have
better alternatives available in modern OpenGL.
Mikko Rasa [Mon, 30 Sep 2019 11:06:46 +0000 (14:06 +0300)]
Initialize members of Font::Glyph
It's not safe to assume that font files contain all of the values for
every glyph.
Mikko Rasa [Wed, 25 Sep 2019 16:33:11 +0000 (19:33 +0300)]
Require ARB_shader_objects in Shader constructor
Mikko Rasa [Wed, 18 Sep 2019 15:10:21 +0000 (18:10 +0300)]
Hide windows.h from public headers
OpenGL headers require a few #defines, so do those manually instead.
Mikko Rasa [Thu, 12 Sep 2019 19:34:15 +0000 (22:34 +0300)]
Appease the compiler with some extra copy-ctor's and operator='s
In C++11 if you manually define either a copy constructor or an
assignment operator, you must define the other as well.
Mikko Rasa [Mon, 26 Aug 2019 11:53:21 +0000 (14:53 +0300)]
Produce a linear animation curve if there's only one keyframe
This can be useful for setting a constant value for the duration of an
animation, without needing to specify the value twice.
Mikko Rasa [Wed, 7 Aug 2019 11:56:42 +0000 (14:56 +0300)]
Plug some memory leaks
Mikko Rasa [Tue, 6 Aug 2019 17:11:47 +0000 (20:11 +0300)]
Fix an uninitialized variable
Mikko Rasa [Sun, 28 Jul 2019 00:03:58 +0000 (03:03 +0300)]
Add a function to flush shader data in Renderer
Necessary if the same shader data object is used in successive draw
commands but the contained uniform values are changed.
Mikko Rasa [Sat, 27 Jul 2019 23:05:55 +0000 (02:05 +0300)]
Add an object LoD bias parameter to Renderer
This could be used by environment map and similar effects to render the
scene at lower detail.
Mikko Rasa [Sat, 27 Jul 2019 23:05:05 +0000 (02:05 +0300)]
Add an alpha channel flag to Pipeline
Mikko Rasa [Fri, 26 Jul 2019 17:02:58 +0000 (20:02 +0300)]
Don't add externally specified postprocessors as owned
Mikko Rasa [Tue, 23 Jul 2019 08:07:29 +0000 (11:07 +0300)]
Recognize the samplerCubeArray type in shaders
The actual extension will be added a bit later.
Mikko Rasa [Tue, 23 Jul 2019 07:07:40 +0000 (10:07 +0300)]
Support named postprocessor slots in pipeline templates
This can be useful if a postprocessor in the middle of the chain needs to
be created at runtime due to data dependencies.
Mikko Rasa [Tue, 23 Jul 2019 07:04:00 +0000 (10:04 +0300)]
Allow access to ShadowMap's texture and matrix from outside
This is necessary if a postprocessor wants to access the shadow map for
deferred shading.
Mikko Rasa [Thu, 11 Jul 2019 22:22:59 +0000 (01:22 +0300)]
Recognize #version directive in GLSL
This allows shaders to explicitly specify the required version in
case there's a feature which is not detected by the program compiler
framework.
Mikko Rasa [Thu, 11 Jul 2019 22:22:02 +0000 (01:22 +0300)]
Add feature check for array texture samplers
Mikko Rasa [Thu, 11 Jul 2019 12:34:30 +0000 (15:34 +0300)]
Translate cube map sampling function for old GLSL versions
Mikko Rasa [Tue, 9 Jul 2019 22:51:37 +0000 (01:51 +0300)]
Add functions for setting arrays of 2x2 and 3x3 matrix uniforms
Mikko Rasa [Mon, 8 Jul 2019 16:24:02 +0000 (19:24 +0300)]
Make explicit mipmap generation public
Also changed set_generate_mipmap to set_auto_generate_mipmap to clarify
that it concerns automatic mipmap generation.
Mikko Rasa [Wed, 3 Jul 2019 21:06:00 +0000 (00:06 +0300)]
Guard against sample points behind the camera in ambient occlusion
Mikko Rasa [Wed, 3 Jul 2019 17:26:03 +0000 (20:26 +0300)]
Sort things by name when exporting
This keeps them in deterministic order and produces cleaner diffs.
Mikko Rasa [Wed, 3 Jul 2019 17:04:33 +0000 (20:04 +0300)]
Remove a stray debug print
Mikko Rasa [Wed, 3 Jul 2019 17:01:03 +0000 (20:01 +0300)]
Add an option to skip existing resources when exporting a scene
This can be helpful when exporting multiple scenes, to avoid certain
auto-generated resources being exported multiple times.
Mikko Rasa [Wed, 3 Jul 2019 16:35:05 +0000 (19:35 +0300)]
Correctly process meshes with empty material slots
This may happen if materials are defined on the object rather than on
the mesh.
Mikko Rasa [Sun, 23 Jun 2019 21:25:26 +0000 (00:25 +0300)]
Change AnimationPlayer::stop to take a Placeable
Mikko Rasa [Sun, 23 Jun 2019 20:02:41 +0000 (23:02 +0300)]
Export the entire scene by default
Options have been added to export only selected object or limit the
export to active layers.
Mikko Rasa [Sun, 23 Jun 2019 19:38:23 +0000 (22:38 +0300)]
Use double for animation curves
Since the t value is raised to the third power, floats with their 24-bit
mantissa started to run out of precision around 30 seconds. Doubles
should be good for several hours. If that somehow turns out to not be
enough I'll invent some way to chain animations.
Mikko Rasa [Sun, 23 Jun 2019 19:37:22 +0000 (22:37 +0300)]
Add public functions for adding owned keyframes to Animation
This is useful when constructing animations in code, to avoid the need
of storing pointers to the keyframes.
Mikko Rasa [Fri, 21 Jun 2019 12:13:27 +0000 (15:13 +0300)]
Retain assignment location when moving out variables to global scope
Mikko Rasa [Fri, 21 Jun 2019 11:46:34 +0000 (14:46 +0300)]
Translate shader compile errors to actual source file names
Intel drivers appear to process the #line directives incorrectly and
produce off-by-one line numbers.
Mikko Rasa [Fri, 21 Jun 2019 11:27:32 +0000 (14:27 +0300)]
Record statement source lines and emit #line directives to output
Mikko Rasa [Fri, 21 Jun 2019 11:24:56 +0000 (14:24 +0300)]
Refactor ProgramCompiler::Formatter
This is necessary for keeping track of output lines and translating error
locations.
Mikko Rasa [Fri, 21 Jun 2019 10:25:33 +0000 (13:25 +0300)]
Require import module names to be identifiers
Mikko Rasa [Fri, 21 Jun 2019 10:24:01 +0000 (13:24 +0300)]
Consistently use the NodeList and NodeArray types
Mikko Rasa [Fri, 21 Jun 2019 10:19:47 +0000 (13:19 +0300)]
Add an intermediate node type for statements
Mikko Rasa [Fri, 21 Jun 2019 08:32:46 +0000 (11:32 +0300)]
Obtain the instance transform location from shader program
Mikko Rasa [Fri, 21 Jun 2019 08:23:21 +0000 (11:23 +0300)]
Merge variable declaration layouts
Mikko Rasa [Fri, 21 Jun 2019 08:22:08 +0000 (11:22 +0300)]
Consider extensions when checking GLSL features
Mikko Rasa [Thu, 20 Jun 2019 21:50:41 +0000 (00:50 +0300)]
Store information about attributes in Program
Mikko Rasa [Thu, 20 Jun 2019 08:38:11 +0000 (11:38 +0300)]
Split the interface queries from Program::link into separate functions
Mikko Rasa [Wed, 19 Jun 2019 23:22:12 +0000 (02:22 +0300)]
Initial support for instanced rendering
This is still a bit rough and does not support things like LoDs or custom
instance attributes.
Mikko Rasa [Wed, 19 Jun 2019 23:01:43 +0000 (02:01 +0300)]
Some refactoring of the draw code path
These changes make it easier to add instanced versions of the draw calls.
Mikko Rasa [Wed, 19 Jun 2019 22:55:27 +0000 (01:55 +0300)]
Expose world-to-eye matrix in Renderer's standard shdata
Mikko Rasa [Wed, 19 Jun 2019 22:54:57 +0000 (01:54 +0300)]
Add vertex setup state to Renderer
Mikko Rasa [Tue, 18 Jun 2019 10:34:01 +0000 (13:34 +0300)]
Use direct state access for updating VertexSetup
Mikko Rasa [Tue, 18 Jun 2019 10:28:04 +0000 (13:28 +0300)]
Only update the changed parts of VertexSetup
Besides being a minor optimization, this fixes a crash if update gets
called before both vertex array and index buffer are set.
Mikko Rasa [Tue, 18 Jun 2019 08:42:22 +0000 (11:42 +0300)]
Move vertex array object management out of Mesh
It's called VertexSetup because VertexArray was already in use. On the
other hand I don't want to tie VAOs with the VertexArray class because
instanced rendering will need two VertexArrays in a single VAO.
Mikko Rasa [Mon, 17 Jun 2019 22:12:35 +0000 (01:12 +0300)]
Change the return type of Renderable::get_instance_key to IntPtr
Mikko Rasa [Mon, 17 Jun 2019 20:29:59 +0000 (23:29 +0300)]
Make a const pointer to a Bufferable's buffer publicly accessible
Mikko Rasa [Mon, 17 Jun 2019 20:25:49 +0000 (23:25 +0300)]
Use linear filtering when rendering bloom
This postprocessor is often rendered at a reduced resolution, and nearest
filtering causes the output to appear blocky.
Mikko Rasa [Sun, 16 Jun 2019 10:15:32 +0000 (13:15 +0300)]
Better checking of the existence of image filepath
Apparently packed images can get funny filepaths like "//../../../../"
in autosaves. Best to check only the basename so there won't be empty
filenames in datafiles.
Mikko Rasa [Sun, 16 Jun 2019 10:14:55 +0000 (13:14 +0300)]
Check the result of open_raw
Mikko Rasa [Sun, 16 Jun 2019 08:54:18 +0000 (11:54 +0300)]
Add simple ligature support to Font
Currently only two-character ligatures are supported.
Mikko Rasa [Sun, 16 Jun 2019 08:52:27 +0000 (11:52 +0300)]
Add looping detection to animation exporter
Since Blender's actions do not have a looping property, detect looping by
comparing the first and last keyframes of each curve.
Mikko Rasa [Sun, 16 Jun 2019 08:48:52 +0000 (11:48 +0300)]
Set both min and mag filters when exporting textures
Mikko Rasa [Sun, 16 Jun 2019 08:48:32 +0000 (11:48 +0300)]
Import fixes for exporter
Mikko Rasa [Sat, 15 Jun 2019 12:23:02 +0000 (15:23 +0300)]
Make ambient occlusion edge detection threshold adjustable
This may be necessary to avoid artifacts when running the postprocessor
at a reduced resolution.
Mikko Rasa [Sat, 15 Jun 2019 12:20:44 +0000 (15:20 +0300)]
Use RED format for ambient occlusion render target
Mikko Rasa [Sat, 15 Jun 2019 12:18:09 +0000 (15:18 +0300)]
Improve ambient occlusion edge detection
The depth thresholds are now based on the distance of the sample from the
center, which works better in the presence of sloped flat surfaces.
Mikko Rasa [Wed, 12 Jun 2019 17:08:38 +0000 (20:08 +0300)]
Use mspdatatool to generate the builtin resources file
Mikko Rasa [Wed, 12 Jun 2019 17:07:00 +0000 (20:07 +0300)]
Use a type registry to manage postprocessor types for pipeline templates
Mikko Rasa [Tue, 11 Jun 2019 21:19:10 +0000 (00:19 +0300)]
Add overloads of keyframe uniform statements without size suffixes
Mikko Rasa [Tue, 11 Jun 2019 21:07:38 +0000 (00:07 +0300)]
Fix a data corruption issue in mesh exporter
Apparently mathutils.Vector can refer to external data, in this case the
mesh's UV coordinates, which gets deleted with the mesh. Copy the values
to make sure they are retained.
Mikko Rasa [Tue, 11 Jun 2019 21:06:28 +0000 (00:06 +0300)]
Remove an incorrect and unnecessary check in scene exporter
Technique was moved from Object to Material.
Mikko Rasa [Tue, 11 Jun 2019 16:50:14 +0000 (19:50 +0300)]
Add an option to export all animations for all selected objects
Mikko Rasa [Tue, 11 Jun 2019 16:49:01 +0000 (19:49 +0300)]
Adjust exported animation keyframes to start from zero time
Mikko Rasa [Tue, 11 Jun 2019 08:31:44 +0000 (11:31 +0300)]
Add exporter for animations
Mikko Rasa [Tue, 11 Jun 2019 08:15:09 +0000 (11:15 +0300)]
Animate only those components which are present in Transforms
This allows different components to have different keyframes, matching
the functionality of various animation software packages.
Mikko Rasa [Tue, 11 Jun 2019 08:03:24 +0000 (11:03 +0300)]
Keep track of which components have been set in Transform
Also allow individual vector elements to be specified in datafiles.
Mikko Rasa [Sat, 8 Jun 2019 18:08:00 +0000 (21:08 +0300)]
Fix a copypaste error in AnimationPlayer uniform setting code
Mikko Rasa [Sat, 8 Jun 2019 11:26:52 +0000 (14:26 +0300)]
Fix the keyword of the uniform scaling statement in Transform loader
Mikko Rasa [Sat, 8 Jun 2019 07:16:27 +0000 (10:16 +0300)]
Add getter for Animation::looping
Mikko Rasa [Sat, 8 Jun 2019 06:50:02 +0000 (09:50 +0300)]
Merge branch 'animation-rework'
Mikko Rasa [Sat, 8 Jun 2019 06:47:24 +0000 (09:47 +0300)]
Add compatibility support for slope-based animation interpolation
Mikko Rasa [Sat, 8 Jun 2019 06:47:00 +0000 (09:47 +0300)]
Add a setter for KeyFrame uniforms
Mikko Rasa [Sat, 8 Jun 2019 06:17:51 +0000 (09:17 +0300)]
Refactor KeyFrame ownership management in Animation
The public add_keyframe functions no longer provide a convenient single
place to set the RefPtr keep flag, so move it into the private function.
Mikko Rasa [Fri, 7 Jun 2019 23:17:43 +0000 (02:17 +0300)]
Use bezier splines in Animation
Control keyframes can now be added to affect the shape of curves. Zero,
one or two control keyframes can be present between any two regular
keyframes, resulting in a linear, quadratic or cubic segment.
Mikko Rasa [Fri, 7 Jun 2019 22:30:11 +0000 (01:30 +0300)]
Make animation curve creation more generic
Mikko Rasa [Fri, 7 Jun 2019 19:18:05 +0000 (22:18 +0300)]
Do not clear previous assignments on assignment to array subscript
It makes manual array impossible if the previous elements are thrown
away.
Mikko Rasa [Fri, 7 Jun 2019 17:27:57 +0000 (20:27 +0300)]
Visit the rest of an iteration statement in NodeRemover
Mikko Rasa [Thu, 6 Jun 2019 12:57:11 +0000 (15:57 +0300)]
Avoid some brain damage from Windows headers