Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Mapblock mesh: Allow to use VBO | RealBadAngel | 2016-02-26 |
| | |||
* | Dont make fastface if tile is not seamless | RealBadAngel | 2016-02-21 |
| | | | | | Fixes #3378 Closes #3751 | ||
* | Mapblock mesh: Eliminate meshgen lags | RealBadAngel | 2016-02-16 |
| | |||
* | Use vertices with tangents only when its needed. | RealBadAngel | 2016-02-15 |
| | |||
* | Cleanup selection mesh code, add shaders for halo and selection boxes | RealBadAngel | 2016-02-08 |
| | |||
* | Use tangent space meshes only when shaders are enabled | RealBadAngel | 2016-02-07 |
| | |||
* | Change i++ to ++i | David Jones | 2015-08-25 |
| | |||
* | Fixed minimap memory leak | Břetislav Štec | 2015-07-27 |
| | |||
* | Fix relief mapping issues | RealBadAngel | 2015-07-16 |
| | |||
* | Clean-up Minimap code | kwolekr | 2015-07-08 |
| | | | | | | | | | | | - Fixed race conditions - Fixed null dereference - Fixed out-of-bounds array access - MinimapMapblock is now allocated and added to update queue only when enabled - Removed dependency on LocalPlayer - Fixed code style - Simplified expressions and program logic - Cleaned minimap object interfaces | ||
* | Add minimap feature | RealBadAngel | 2015-06-27 |
| | |||
* | Automated whitespace error fix for last commit | est31 | 2015-06-14 |
| | |||
* | Improved parallax mapping. Generate heightmaps on the fly. | RealBadAngel | 2015-06-14 |
| | |||
* | Move globals from main.cpp to more sane locations | Craig Robbins | 2015-04-01 |
| | | | | | | | | | | | | Move debug streams to log.cpp|h Move GUI-related globals to clientlauncher Move g_settings and g_settings_path to settings.cpp|h Move g_menuclouds to clouds.cpp|h Move g_profiler to profiler.cpp|h | ||
* | Move texture_min_size even further down the pipe. Now, textures are ↵ | Aaron Suen | 2015-03-31 |
| | | | | JIT-upscaled using an image transformation, right at the time they're added to a mesh or particle; images used in 2D elements are left unscaled. This should fix any remaining issues with HUD elements. | ||
* | Optimise MapBlockMesh related functions | gregorycu | 2015-02-23 |
| | | | | | | | | | Directely or indirectly optimises the following functions: * MapBlockMesh::MapBlockMesh * MapBlockMesh::getTileInfo * MapBlockMesh::makeFastFace * MapBlockMesh::getSmoothLightCombined | ||
* | Remove workaround in itemdef.cpp to enable/disable/enable "enable_shaders" ↵ | Craig Robbins | 2015-02-11 |
| | | | | | | | setting * Increase performance (client) * Avoid changing a global value to solve a local problem | ||
* | Revert "Remove workaround in itemdef.cpp to enable/disable/enable ↵ | Craig Robbins | 2015-02-11 |
| | | | | | | "enable_shaders" setting" This reverts commit d25ff8fd2592f457b91e8a61240694af3902d23f. | ||
* | Remove workaround in itemdef.cpp to enable/disable/enable "enable_shaders" ↵ | Craig Robbins | 2015-02-11 |
| | | | | | | | setting * Increase performance (client) * Avoid changing a global value to solve a local problem | ||
* | Fix potential out-of-bounds array index | Craig Robbins | 2015-01-16 |
| | |||
* | Added configurable ambient_occlusion_gamma. Default is 2.2 (same as previous ↵ | TriBlade9 | 2015-01-14 |
| | | | | hardcoded values). | ||
* | Removed superfluous facedir check in mapblock_mesh.cpp | Craig Robbins | 2015-01-10 |
| | |||
* | Change TileSpec::frames to be std::vector not std::map | unknown | 2014-12-21 |
| | | | | Signed-off-by: Craig Robbins <kde.psych@gmail.com> | ||
* | Increase performance of getLight() by at least 2x | Craig Robbins | 2014-12-10 |
| | | | | | | | Leads to the following increases: getSmoothLight() approx. 40% increase getTileInfo() approx. 25% increase MapBlockMesh::MapBlockMesh() 25-30% | ||
* | Restore finalColorBlend implementation in shaders. | RealBadAngel | 2014-12-07 |
| | |||
* | Fix smooth lighting (ambient occlusion) | Craig Robbins | 2014-11-22 |
| | | | | Signed-off-by: Craig Robbins <kde.psych@gmail.com> | ||
* | Optimise functions from CNodeDefManager and VoxelManipulator | Craig Robbins | 2014-11-21 |
| | | | | | CNodeDefManager::get() VoxelManipulator::addArea() | ||
* | Optimise getTileInfo() | Craig Robbins | 2014-11-21 |
| | | | | | getTileInfo() ~1.5x faster getSmoothLight ~2.0x faster | ||
* | Implement WieldMeshSceneNode which improves wield mesh rendering | Kahrl | 2014-11-08 |
| | | | | | | | | | | | | | - Don't create and cache an extruded mesh for every (non-node) item. Instead use a single one per image resolution. - For cubic nodes reuse a single wield mesh too - Improve lighting of the wielded item - Increase far value of wield mesh scene camera, fixes #1770 - Also includes some minor refactorings of Camera and GenericCAO. | ||
* | Various uninitialised variable fixes | Craig Robbins | 2014-10-19 |
| | | | | | | sky.cpp: m_bgcolor.getAlpha() was being used before initialised mesh related: m_highlight_mesh_color was being used uninitialised | ||
* | Add meshnode drawtype. | RealBadAngel | 2014-10-18 |
| | |||
* | Node highlighting. | RealBadAngel | 2014-09-17 |
| | |||
* | Pass light sources in blue channel of vertex color instead of decoded light ↵ | RealBadAngel | 2014-08-21 |
| | | | | | | for all special drawtypes. Plus some style fixes and optimizations. | ||
* | Let lighting be done only CPU side. Remove finalColorBlend implementation ↵ | RealBadAngel | 2014-08-16 |
| | | | | from shaders. | ||
* | Make faces shading correct for all possible modes. | RealBadAngel | 2014-08-14 |
| | | | | | Skip shading for lightsources and top of the nodes. Fixes liquid sources and flowing surfaces having different brightness. | ||
* | Speedup mapblock_mesh | RealBadAngel | 2014-07-17 |
| | |||
* | Faces shading fixes | RealBadAngel | 2014-07-07 |
| | |||
* | Fix non-smooth non-shader node shading (Fixes #1436, regression by commit ↵ | Perttu Ahola | 2014-07-06 |
| | | | | a0f78659f31abd) | ||
* | Fix regression in light calculation | sapier | 2014-06-30 |
| | |||
* | Minor fix in check order | sapier | 2014-06-23 |
| | |||
* | Speedup getTileInfo by up to 30% | sapier | 2014-06-23 |
| | |||
* | Improved faces shading with and without shaders. | RealBadAngel | 2014-06-17 |
| | |||
* | Unite nodes shaders. | RealBadAngel | 2014-06-15 |
| | | | | | | | Pass drawtype and material type to shaders. Move shaders generation to startup only. Allow assign shaders per tile. Initial code to support water surface shader. | ||
* | Fixed wrong node texture rotation for facedirs 5 and 7 | MetaDucky | 2014-04-23 |
| | |||
* | Pass pointer to nodedef directly to avoid recalculation in quite often ↵ | sapier | 2014-04-06 |
| | | | | called function | ||
* | Normal maps generation on the fly. | RealBadAngel | 2014-03-21 |
| | | | | | Parallax mapping with slope information. Overriding normal maps. | ||
* | Fix rendering glitches when far from the center of the map | Novatux | 2014-03-04 |
| | |||
* | Optimize shaders code. Add settings at compile time. | RealBadAngel | 2013-12-09 |
| | |||
* | Shaders rework. | RealBadAngel | 2013-12-03 |
| | |||
* | Prevent shaders from being created when disabled | kwolekr | 2013-11-17 |
| |