With it on, which was always the case before this setting was added,
vanilla content and poorly-made mods will look acceptable, but well-made
mods will have alpha-tested meshes appear to grow and potentially gain a
weird outline as they get further away.
With it off, which replicates the 0.46 behaviour, well-made mods will
look really good, but vanilla content and poorly-made mods will have
alpha-tested meshes shrink as they get further away.
It's been bugging me that this was forced on since 0.47 released, and
I'd hoped to figure out a solution for automatic detection at some point
before 0.48 branched off, but I didn't, so now this is what we're
getting to have Tamriel Rebuilt look right.
Use nv_default shader prefix for unhandled types
See merge request OpenMW/openmw!2419
(cherry picked from commit 92680ab9cf)
63b51ead Use nv_default shader prefix for unhandled types
Initialize reserved names once to avoid race condition (#7008)
Closes#7008
See merge request OpenMW/openmw!2409
(cherry picked from commit 16fd01a765)
8068d015 Initialize reserved names once to avoid race condition
Fix incorrect scene lighting #6952
See merge request OpenMW/openmw!2335
(cherry picked from commit 1d177e2d71)
1f2d9f22 don't recycle statesets for light cullcallback for now
Get build working on Apple Silicon
See merge request OpenMW/openmw!2286
(cherry picked from commit 36fbef1048)
1d7d3d57 Get build working on Apple Silicon
808a2e58 Merge commit '5ee4ce1232b0f334f29dd702f811c58dccf5c00d' into apple-silicon-arm-build
a61237f2 Cleaned up macOS FFmpeg framework linking
[Multiview][Postprocessor] omw_GetWorldPosFromUV() should use omw_GetDepth()
See merge request OpenMW/openmw!2320
(cherry picked from commit 23e765954d)
70e1efdd omw_GetWorldPosFromUV() should use omw_GetDepth()
Shaders: Hot reload, togglable by lua debug command
See merge request OpenMW/openmw!2238
(cherry picked from commit 4078f19c74)
8d194a16 Shaders: rudimentary hot reloader on shaders
4e7c1c5b Added break when the operation failed
6b38d622 Added lua bindings to toggle hot reload (disabled by default) or to trigger a reload
31d41252 forgot memory include
f78fa989 fixed include, cleaned comments and indentation
fc8838c7 Renamed lua binding, and use action to avoid concurrency issue
aa51d6de Missing chrono include ?
68d06989 Fixed cyclical included check
b6d7293a Removed weird lines that I thought were necessary to please the compiler
9a475b0c fixed blank lines and missing breaks
cdd95f78 replaced empty function body by default
a1c8dc9d C++17 compat ?
7b78bf4b Fix files with different defines weren't added to the hot reload manager
cc9d4364 includes now work when the same shader has different defines
15751c57 Lua debug api doc
3ab0a991 Hot reload done only once every 200 ms, no point in beeing faster
df69fc76 Post processing shaders now use the same lua commands, no more launcher option...
c71f3508 changed overview.rst of post processing
603b30e1 Added some variable names to make it clearer what their function was
baadc06e Merge branch 'master' into 'SHADER_HOT_RELOAD'
decfbc53 Fix threading issues
b14cc673 adds missing decleration
16a4b571 adds missing include
166717d6 Makes sure threads are only stopped once ,and that they will be re-started
25c1f0ca Renamed variable to fix case issue
Font fixes
See merge request OpenMW/openmw!2297
(cherry picked from commit 7bb1856b74)
c3d3f314 Allow to change font settings in the launcher
2cd2b42e Improve handling of larger font size
2cae8bea Improve layout of Interface tab
3117a993 Fix documentation
Do not copy data when it is not needed
See merge request OpenMW/openmw!2277
(cherry picked from commit f42ab6a3e7)
e3ad30a5 Do not copy data when it is not needed
Cylinder collision shape should give the best consistency between physics
simulation and pathfinding. Rotating box is already used by some actors, so
add it to have the same collision shape type for all actors.
To show that there are no more inheritance levels and also help compiler to
better optimize virtual function calls. There is no need to access virtual table
when compiler calls a virtual function of a final type.