]> git.tdb.fi Git - libs/gl.git/log
libs/gl.git
2 years agoCompute correct size for SPIR-V structs if the last member is an array
Mikko Rasa [Sun, 7 Nov 2021 17:15:14 +0000 (19:15 +0200)]
Compute correct size for SPIR-V structs if the last member is an array

2 years agoRemove support for array size specialization from the engine as well
Mikko Rasa [Sun, 7 Nov 2021 17:14:36 +0000 (19:14 +0200)]
Remove support for array size specialization from the engine as well

2 years agoAlways set uniform array size to at least one
Mikko Rasa [Sun, 7 Nov 2021 17:12:14 +0000 (19:12 +0200)]
Always set uniform array size to at least one

This makes it consistent between GLSL and SPIR-V.

2 years agoMove default uniform block sizing to OpenGL backend
Mikko Rasa [Sun, 7 Nov 2021 17:11:59 +0000 (19:11 +0200)]
Move default uniform block sizing to OpenGL backend

2 years agoBuild the list of glUniform* calls even for SPIR-V modules
Mikko Rasa [Sun, 7 Nov 2021 17:09:42 +0000 (19:09 +0200)]
Build the list of glUniform* calls even for SPIR-V modules

This is relevant since SPIR-V supports default block uniforms when
targeting OpenGL.

2 years agoRearrange shader reflection calls
Mikko Rasa [Sun, 7 Nov 2021 17:07:34 +0000 (19:07 +0200)]
Rearrange shader reflection calls

The OpenGL-specific query calls are now done from the OpenGL backend.

2 years agoFix reflection of vector and matrix types from SPIR-V
Mikko Rasa [Sun, 7 Nov 2021 16:56:07 +0000 (18:56 +0200)]
Fix reflection of vector and matrix types from SPIR-V

2 years agoFix GLSL matrix construction from individual elements
Mikko Rasa [Sun, 7 Nov 2021 14:12:11 +0000 (16:12 +0200)]
Fix GLSL matrix construction from individual elements

2 years agoGenerate correct OpPhi instructions for nested ternary expressions
Mikko Rasa [Sun, 7 Nov 2021 14:06:09 +0000 (16:06 +0200)]
Generate correct OpPhi instructions for nested ternary expressions

The parent blocks must be immediate predecessors of the block containing
the OpPhi instruction.

2 years agoDon't try to access parameters with a pointer access instructior
Mikko Rasa [Sun, 7 Nov 2021 14:01:06 +0000 (16:01 +0200)]
Don't try to access parameters with a pointer access instructior

2 years agoPadding is required at the end of certain SPIR-V struct members
Mikko Rasa [Sun, 7 Nov 2021 13:59:13 +0000 (15:59 +0200)]
Padding is required at the end of certain SPIR-V struct members

If the member is is itself a struct or an array, the next member must not
begin before the next alignment boundary.

2 years agoChange max_lights to a fixed constant
Mikko Rasa [Sun, 7 Nov 2021 12:38:49 +0000 (14:38 +0200)]
Change max_lights to a fixed constant

2 years agoDisallow specialization constants in certain contexts
Mikko Rasa [Sun, 7 Nov 2021 12:32:33 +0000 (14:32 +0200)]
Disallow specialization constants in certain contexts

The initialization of a specialization constant must not use other
specialization constants.

Arrays sized by a specialization constant inside structures are broken
by design because member offsets in SPIR-V are required to be literals.
Changing the size through specialization would at best leave empty space
in the struct and at worst overlap other members.

2 years agoFix size calculation for GLSL arrays
Mikko Rasa [Sun, 7 Nov 2021 12:31:38 +0000 (14:31 +0200)]
Fix size calculation for GLSL arrays

2 years agoApply implicit conversion to return expressions in GLSL functions
Mikko Rasa [Sun, 7 Nov 2021 10:46:29 +0000 (12:46 +0200)]
Apply implicit conversion to return expressions in GLSL functions

2 years agoAdd unsigned integer types to Program reflection and ProgramData
Mikko Rasa [Sun, 7 Nov 2021 09:54:01 +0000 (11:54 +0200)]
Add unsigned integer types to Program reflection and ProgramData

2 years agoDisallow bool variables in shader interface blocks
Mikko Rasa [Sun, 7 Nov 2021 09:21:35 +0000 (11:21 +0200)]
Disallow bool variables in shader interface blocks

Although OpenGL allows them in uniform blocks, SPIR-V says they can't be
used with externally visible storage classes.

2 years agoHide the allow_gl_calls member of Mesh::Loader
Mikko Rasa [Sun, 7 Nov 2021 09:04:36 +0000 (11:04 +0200)]
Hide the allow_gl_calls member of Mesh::Loader

2 years agoRemove the deprecated srgb_conversion flag from Resources
Mikko Rasa [Sun, 7 Nov 2021 08:36:42 +0000 (10:36 +0200)]
Remove the deprecated srgb_conversion flag from Resources

By now it didn't even have any effect anymore

2 years agoUse asynchronous resource loading in desertpillars
Mikko Rasa [Sun, 7 Nov 2021 08:23:56 +0000 (10:23 +0200)]
Use asynchronous resource loading in desertpillars

2 years agoRe-export desertpillars textures using external data storage
Mikko Rasa [Sun, 7 Nov 2021 08:23:07 +0000 (10:23 +0200)]
Re-export desertpillars textures using external data storage

2 years agoAvoid incorrect access to VertexSetup while async loading Mesh
Mikko Rasa [Tue, 2 Nov 2021 11:36:06 +0000 (13:36 +0200)]
Avoid incorrect access to VertexSetup while async loading Mesh

2 years agoDon't use resource manager for builtin data
Mikko Rasa [Tue, 2 Nov 2021 11:32:33 +0000 (13:32 +0200)]
Don't use resource manager for builtin data

Detecting them by the underscore at the beginning of the name feels a
little dodgy, but it will do for now.

2 years agoExplicitly cast regex match to boolean
Mikko Rasa [Tue, 2 Nov 2021 11:13:41 +0000 (13:13 +0200)]
Explicitly cast regex match to boolean

2 years agoExport texture's mipmap levels as 1 if mipmaps are not used
Mikko Rasa [Tue, 2 Nov 2021 11:11:03 +0000 (13:11 +0200)]
Export texture's mipmap levels as 1 if mipmaps are not used

2 years agoExport raw texture data to a separate file
Mikko Rasa [Tue, 2 Nov 2021 11:02:14 +0000 (13:02 +0200)]
Export raw texture data to a separate file

2 years agoSupport loading raw texture data from an external file
Mikko Rasa [Tue, 2 Nov 2021 10:17:24 +0000 (12:17 +0200)]
Support loading raw texture data from an external file

This enables async loading of pixel formats not supported by standard
image files.

2 years agoUse default member initializers in async loaders
Mikko Rasa [Tue, 2 Nov 2021 08:47:31 +0000 (10:47 +0200)]
Use default member initializers in async loaders

2 years agoMove the whole-texture image call and raw data loading to base class
Mikko Rasa [Mon, 1 Nov 2021 12:42:49 +0000 (14:42 +0200)]
Move the whole-texture image call and raw data loading to base class

This reduces duplication in the loading code and promotes uniform
behaviour across the different texture classes.

2 years agoCombine the external_image functions in Texture::Loader
Mikko Rasa [Mon, 1 Nov 2021 11:50:20 +0000 (13:50 +0200)]
Combine the external_image functions in Texture::Loader

Since DataFile::Loader now supports bound arguments, it can be used to
set the srgb flag.

2 years agoReorder functions in Sampler
Mikko Rasa [Sat, 30 Oct 2021 21:12:22 +0000 (00:12 +0300)]
Reorder functions in Sampler

2 years agoFix the type of a location variable
Mikko Rasa [Sat, 30 Oct 2021 21:11:30 +0000 (00:11 +0300)]
Fix the type of a location variable

2 years agoAdd some checks for invalid arguments
Mikko Rasa [Sat, 30 Oct 2021 20:32:18 +0000 (23:32 +0300)]
Add some checks for invalid arguments

2 years agoMake the Limits struct more robust
Mikko Rasa [Sat, 30 Oct 2021 20:29:48 +0000 (23:29 +0300)]
Make the Limits struct more robust

2 years agoAdd missing implementation of RenderMethod::set_image_based_lighting
Mikko Rasa [Sat, 30 Oct 2021 20:02:51 +0000 (23:02 +0300)]
Add missing implementation of RenderMethod::set_image_based_lighting

2 years agoImprove material handling in RenderMethod
Mikko Rasa [Sat, 30 Oct 2021 20:02:39 +0000 (23:02 +0300)]
Improve material handling in RenderMethod

2 years agoAdd uint vector types to DataType
Mikko Rasa [Sat, 30 Oct 2021 20:01:38 +0000 (23:01 +0300)]
Add uint vector types to DataType

2 years agoRename "renderable" to "content" in Effects and Scenes
Mikko Rasa [Sat, 30 Oct 2021 19:59:09 +0000 (22:59 +0300)]
Rename "renderable" to "content" in Effects and Scenes

This name better describes the relationship.

2 years agoClean up some more unused things
Mikko Rasa [Sat, 30 Oct 2021 19:54:00 +0000 (22:54 +0300)]
Clean up some more unused things

2 years agoUpdate and improve documentation
Mikko Rasa [Sat, 30 Oct 2021 19:51:30 +0000 (22:51 +0300)]
Update and improve documentation

2 years agoUse size_t to store sizes of buffers and such
Mikko Rasa [Sat, 30 Oct 2021 19:25:15 +0000 (22:25 +0300)]
Use size_t to store sizes of buffers and such

Shader reflection data can stick to 32-bit sizes, since SPIR-V's
decorations only take 32-bit operands.

2 years agoUse a sorted vector in place of set for small data
Mikko Rasa [Sat, 30 Oct 2021 19:07:48 +0000 (22:07 +0300)]
Use a sorted vector in place of set for small data

Despite having worse algorithmic performance, cache effects make the
vector faster for total data size of up to about 8 kB (YMMV).

The GLSL compiler can keep its sets for now, I'll create a proper class
for this at some point.

2 years agoRemove the exclusion mechanism from Renderer
Mikko Rasa [Sat, 30 Oct 2021 18:35:15 +0000 (21:35 +0300)]
Remove the exclusion mechanism from Renderer

It was only ever used by EnvironmentMap, which can do the filtering
itself.  Removing it makes the rendering process more straightforward,
with less function calls.

2 years agoMove sigc::trackable base from View to WindowView
Mikko Rasa [Fri, 29 Oct 2021 09:49:52 +0000 (12:49 +0300)]
Move sigc::trackable base from View to WindowView

2 years agoExplicitly specify enum values which are relied upon
Mikko Rasa [Fri, 29 Oct 2021 09:49:10 +0000 (12:49 +0300)]
Explicitly specify enum values which are relied upon

2 years agoUse default member initializers in some more classes
Mikko Rasa [Fri, 29 Oct 2021 09:48:39 +0000 (12:48 +0300)]
Use default member initializers in some more classes

2 years agoMove Bufferable::refresh_async's definition to the header
Mikko Rasa [Fri, 29 Oct 2021 09:23:32 +0000 (12:23 +0300)]
Move Bufferable::refresh_async's definition to the header

2 years agoRemove some unused and unnecessary things
Mikko Rasa [Fri, 29 Oct 2021 09:22:52 +0000 (12:22 +0300)]
Remove some unused and unnecessary things

2 years agoMake it an error to try to refresh a Bufferable without a buffer
Mikko Rasa [Fri, 29 Oct 2021 09:11:37 +0000 (12:11 +0300)]
Make it an error to try to refresh a Bufferable without a buffer

2 years agoAssign unneeded values to _ when unpacking
Mikko Rasa [Wed, 20 Oct 2021 13:06:22 +0000 (16:06 +0300)]
Assign unneeded values to _ when unpacking

2 years agoAdd an include path option to the command-line shader compiler
Mikko Rasa [Wed, 20 Oct 2021 13:05:01 +0000 (16:05 +0300)]
Add an include path option to the command-line shader compiler

2 years agoAdd debug names to things in viewer
Mikko Rasa [Wed, 20 Oct 2021 13:02:05 +0000 (16:02 +0300)]
Add debug names to things in viewer

2 years agoUpdate desertpillars to define more things in Blender
Mikko Rasa [Wed, 20 Oct 2021 12:33:36 +0000 (15:33 +0300)]
Update desertpillars to define more things in Blender

2 years agoAdd functions to retrieve steps and postprocessors from Sequence
Mikko Rasa [Wed, 20 Oct 2021 12:31:22 +0000 (15:31 +0300)]
Add functions to retrieve steps and postprocessors from Sequence

2 years agoMake it possible to set up and export some common effects in Blender
Mikko Rasa [Wed, 20 Oct 2021 12:04:44 +0000 (15:04 +0300)]
Make it possible to set up and export some common effects in Blender

A sky effect can now be enabled in world properties.  If sky is enabled
and any materials use IBL, en environment map effect is added.  If any
lights have shadows enabled, a shadow map effect is exported.

2 years agoStore prototype reference instead of just name in scene instances
Mikko Rasa [Wed, 20 Oct 2021 12:03:23 +0000 (15:03 +0300)]
Store prototype reference instead of just name in scene instances

2 years agoRefactor some parts of the Blender exporter to improve reusability
Mikko Rasa [Wed, 20 Oct 2021 11:59:42 +0000 (14:59 +0300)]
Refactor some parts of the Blender exporter to improve reusability

2 years agoSupport effects and subordinate sequences inside sequence templates
Mikko Rasa [Tue, 19 Oct 2021 13:02:57 +0000 (16:02 +0300)]
Support effects and subordinate sequences inside sequence templates

2 years agoRearrange postprocessor creation code in SequenceBuilder
Mikko Rasa [Tue, 19 Oct 2021 12:38:09 +0000 (15:38 +0300)]
Rearrange postprocessor creation code in SequenceBuilder

Previously it would have inadvertently deleted overridden postprocessors.

2 years agoRequire all renderables to be present when building a sequence
Mikko Rasa [Tue, 19 Oct 2021 12:00:38 +0000 (15:00 +0300)]
Require all renderables to be present when building a sequence

2 years agoUse shared actions in SequenceTemplate loaders
Mikko Rasa [Tue, 19 Oct 2021 09:46:39 +0000 (12:46 +0300)]
Use shared actions in SequenceTemplate loaders

2 years agoRefactor the structure of sequence template files
Mikko Rasa [Tue, 19 Oct 2021 09:36:53 +0000 (12:36 +0300)]
Refactor the structure of sequence template files

Renderables are now specified separately from steps.  Post-processors are
defined with a unified keyword, with the type determined by a statement
inside the block.

2 years agoAdd Renderable as base class for relevant types in Resources
Mikko Rasa [Tue, 19 Oct 2021 09:12:02 +0000 (12:12 +0300)]
Add Renderable as base class for relevant types in Resources

2 years agoRestore missing private access specifier
Mikko Rasa [Sun, 17 Oct 2021 20:18:36 +0000 (23:18 +0300)]
Restore missing private access specifier

It got accidentally removed in 9a63244.

2 years agoRefactor owned postprocessors in Sequence into a more generic mechanism
Mikko Rasa [Sun, 17 Oct 2021 08:26:13 +0000 (11:26 +0300)]
Refactor owned postprocessors in Sequence into a more generic mechanism

2 years agoSet a sane default value for ground albedo in Sky::Planet
Mikko Rasa [Sat, 16 Oct 2021 16:09:47 +0000 (19:09 +0300)]
Set a sane default value for ground albedo in Sky::Planet

2 years agoAdd a moving point light to the night phase of desertpillars
Mikko Rasa [Sat, 16 Oct 2021 16:01:44 +0000 (19:01 +0300)]
Add a moving point light to the night phase of desertpillars

2 years agoRe-export desertpillars data
Mikko Rasa [Sat, 16 Oct 2021 15:56:56 +0000 (18:56 +0300)]
Re-export desertpillars data

2 years agoAdd a day-night cycle to the desertpillars demo
Mikko Rasa [Sat, 16 Oct 2021 15:53:53 +0000 (18:53 +0300)]
Add a day-night cycle to the desertpillars demo

2 years agoTweak the logic in sky raymarching to avoid false shadowing
Mikko Rasa [Sat, 16 Oct 2021 15:34:15 +0000 (18:34 +0300)]
Tweak the logic in sky raymarching to avoid false shadowing

Ray_sphere_intersection now always returns the ingoing hit if radius is
positive or outgoing hit if radius is negative.  This avoids a ray
starting at ground level towards the sky immediately hitting the ground.

2 years agoAdjust function names in the GLSL compiler test runner
Mikko Rasa [Sat, 16 Oct 2021 13:55:38 +0000 (16:55 +0300)]
Adjust function names in the GLSL compiler test runner

Make them match the changes in d1e4737.

2 years agoDon't record references to null declarations
Mikko Rasa [Sat, 16 Oct 2021 13:53:21 +0000 (16:53 +0300)]
Don't record references to null declarations

2 years agoSave possible outer reference when entering subscript
Mikko Rasa [Sat, 16 Oct 2021 13:49:44 +0000 (16:49 +0300)]
Save possible outer reference when entering subscript

Otherwise it gets corrupted and the outer variable may be incorrectly
removed if nothing else refers to it.

2 years agoRecognize additional blend types in the Blender exporter
Mikko Rasa [Sat, 16 Oct 2021 12:54:11 +0000 (15:54 +0300)]
Recognize additional blend types in the Blender exporter

2 years agoAdd blend statement also with custom shaders
Mikko Rasa [Sat, 16 Oct 2021 12:51:11 +0000 (15:51 +0300)]
Add blend statement also with custom shaders

2 years agoRemove an unnecessary if
Mikko Rasa [Sat, 16 Oct 2021 12:43:38 +0000 (15:43 +0300)]
Remove an unnecessary if

The condition is already checked at the outer level

2 years agoRecognize transparent materials in Blender and export them accordingly
Mikko Rasa [Sat, 16 Oct 2021 10:11:49 +0000 (13:11 +0300)]
Recognize transparent materials in Blender and export them accordingly

Objects with transparency are exported into a separate, Z-sorted
sub-scene.

2 years agoRefactor scene export to use inline scenes instead of a wrapper scene
Mikko Rasa [Sat, 16 Oct 2021 09:29:32 +0000 (12:29 +0300)]
Refactor scene export to use inline scenes instead of a wrapper scene

2 years agoRemove the scene type property from Blender exporter
Mikko Rasa [Sat, 16 Oct 2021 09:10:20 +0000 (12:10 +0300)]
Remove the scene type property from Blender exporter

It's better managed automatically based on object transparency and other
factors.

2 years agoMove blend state from Sequence::Step to RenderMethod
Mikko Rasa [Sat, 16 Oct 2021 08:49:11 +0000 (11:49 +0300)]
Move blend state from Sequence::Step to RenderMethod

Even though all blended objects are typically rendered in a single step,
it may be desirable to use different blend modes for different objects.

2 years agoWrap material before passing it to create_technique_resource
Mikko Rasa [Sat, 16 Oct 2021 08:21:38 +0000 (11:21 +0300)]
Wrap material before passing it to create_technique_resource

2 years agoSimplify exporter creation
Mikko Rasa [Sat, 16 Oct 2021 08:12:29 +0000 (11:12 +0300)]
Simplify exporter creation

Since options are no longer set as instance variables, the helper
functions feel unnecessary.

2 years agoRecognize a node graph which gives transparency to unlit materials
Mikko Rasa [Fri, 15 Oct 2021 10:48:19 +0000 (13:48 +0300)]
Recognize a node graph which gives transparency to unlit materials

2 years agoSupport inline scenes within other scenes
Mikko Rasa [Thu, 14 Oct 2021 09:02:37 +0000 (12:02 +0300)]
Support inline scenes within other scenes

This is useful for creating scenes where transparent objects are rendered
after opaque ones, without the entire scene being Z-sorted.

2 years agoAdjust naming of instances in Scene loader
Mikko Rasa [Thu, 14 Oct 2021 09:00:27 +0000 (12:00 +0300)]
Adjust naming of instances in Scene loader

I'm going to add inline nested scenes so a per-loader counter would get
duplicates.

2 years agoReplace the instance variables of exporters by function parameters
Mikko Rasa [Wed, 13 Oct 2021 16:34:25 +0000 (19:34 +0300)]
Replace the instance variables of exporters by function parameters

This is more flexible when exporting a lot of data.  In almost all cases
the variables were only used by the export_to_file function anyway.

2 years agoRespect enabled_methods in the Sky effect
Mikko Rasa [Wed, 13 Oct 2021 09:28:10 +0000 (12:28 +0300)]
Respect enabled_methods in the Sky effect

2 years agoRename Effect::enabled_passes to enabled_methods
Mikko Rasa [Wed, 13 Oct 2021 09:26:36 +0000 (12:26 +0300)]
Rename Effect::enabled_passes to enabled_methods

2 years agoAdjust and re-export desertpillars data with new features
Mikko Rasa [Mon, 11 Oct 2021 13:52:11 +0000 (16:52 +0300)]
Adjust and re-export desertpillars data with new features

2 years agoChange default binding ranges to match lowest OpenGL standard
Mikko Rasa [Mon, 11 Oct 2021 13:45:10 +0000 (16:45 +0300)]
Change default binding ranges to match lowest OpenGL standard

2 years agoAdjust GLSL features factory function names
Mikko Rasa [Mon, 11 Oct 2021 13:27:46 +0000 (16:27 +0300)]
Adjust GLSL features factory function names

Make it clear these functions deal with OpenGL versions.

2 years agoFix incorrect exception messages
Mikko Rasa [Mon, 11 Oct 2021 13:25:41 +0000 (16:25 +0300)]
Fix incorrect exception messages

2 years agoFix export of the stub technique
Mikko Rasa [Mon, 11 Oct 2021 13:20:43 +0000 (16:20 +0300)]
Fix export of the stub technique

2 years agoMinor cleanups and tweaks
Mikko Rasa [Mon, 11 Oct 2021 13:20:11 +0000 (16:20 +0300)]
Minor cleanups and tweaks

2 years agoClear reflect data before adding shader stages
Mikko Rasa [Mon, 11 Oct 2021 13:17:27 +0000 (16:17 +0300)]
Clear reflect data before adding shader stages

Otherwise it prevents the number of clip distances from being recorded.

2 years agoAdd tetrahedron shadow maps for point lights
Mikko Rasa [Mon, 11 Oct 2021 13:14:00 +0000 (16:14 +0300)]
Add tetrahedron shadow maps for point lights

2 years agoApply shadow depth bias in a different way
Mikko Rasa [Mon, 11 Oct 2021 13:05:16 +0000 (16:05 +0300)]
Apply shadow depth bias in a different way

It cannot be properly applied through the matrix for perspective
projection.

2 years agoRefactor ShadowMap to allow different types of lights
Mikko Rasa [Mon, 11 Oct 2021 12:57:50 +0000 (15:57 +0300)]
Refactor ShadowMap to allow different types of lights

Omnidirectional lights will need more than one view per light.

2 years agoSuppoer per-light shadow casters in ShadowMap
Mikko Rasa [Mon, 11 Oct 2021 12:40:22 +0000 (15:40 +0300)]
Suppoer per-light shadow casters in ShadowMap

Different types of lights may require different shaders for rendering
shadow maps, or it may be desirable to use different occluder geometry
for far away lights than close ones.

2 years agoAllow suppressing clear in a sequence by passing in a special tag
Mikko Rasa [Mon, 11 Oct 2021 12:25:52 +0000 (15:25 +0300)]
Allow suppressing clear in a sequence by passing in a special tag

Sequence doesn't pass on the tag it receives, so it can be used to
control the sequence's own behaviour instead.