minetest/games/devtest/mods/testnodes/textures
HybridDog cda112493a
Faster blit_with_alpha() (#14448)
* Add test nodes for alpha compositing and the fill texture modifier

Texture test nodes can be helpful to test if `blit_with_alpha` works correctly.

The alpha compositing test node covers different cases where pixel colors are mixed with each other.
The test currently fails because `blitPixel` does not work correctly if a semi-transparent color
is drawn on top of another semi-transparent color.
The test nodes for the fill texture modifier show if the size and position arguments of the modifier work correctly.
They do not cover special cases such as very large or negative position or size values.

* Faster blit_with_alpha()

The `blit_with_alpha` function has a noticeable effect on the time it takes to join a game.

To reduce the join times, I replace the `blit_with_alpha` function with a new one:
* It does not uses floating-point numbers.
* It directly operates on the raw pixel data instead of using the comparatively
  slow `setPixel` and `getPixel` functions from Irrlicht.
  Only ECF_A8R8G8B8 base images are supported now.
  If the top image does not have the ECF_A8R8G8B8 color format, it is converted;
  I assume that this happens rarely.
* There are case distinctions for fully opaque, fully transparent and semi-transparent pixels.
  This empirically increases the performance since the mixing between two semi-transparent happens rarely.
* The new function no longer has the `src_pos` argument since it was always the zero vector.
* The function is only documented once where it is declared.

For backwards compatibility, `blit_with_alpha` still mixes colors without gamma correction.
`blit_with_alpha` nonetheless behaves slightly different than before:
If a semi-transparent pixel is drawn on top of another semi-transparent pixel,
the color is mixed in a way which we can consider to be more correct now.
2024-03-19 19:56:47 +01:00
..
testnodes_1.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_1f.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_1fg.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_1g.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_1w.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_1wg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_2f.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_2fg.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_2g.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_2w.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_2wg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_3.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_3f.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_3fg.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_3g.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_3w.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_3wg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_4.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_4f.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_4fg.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_4g.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_4w.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_4wg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_5.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_5f.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_5fg.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_5g.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_5w.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_5wg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_6.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_6f.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_6fg.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_6g.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_6w.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_6wg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_airlike.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_allfaces.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_allfaces_optional.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_alpha.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_alpha64.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_alpha128.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_alpha191.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_alpha_compositing_bottom.png Faster blit_with_alpha() (#14448) 2024-03-19 19:56:47 +01:00
testnodes_alpha_compositing_top.png Faster blit_with_alpha() (#14448) 2024-03-19 19:56:47 +01:00
testnodes_anim.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attached4_bottom.png Add support for attached facedir/4dir nodes (#11432) 2022-11-24 17:56:07 -05:00
testnodes_attached4_side.png Add support for attached facedir/4dir nodes (#11432) 2022-11-24 17:56:07 -05:00
testnodes_attached4_top.png Add support for attached facedir/4dir nodes (#11432) 2022-11-24 17:56:07 -05:00
testnodes_attached_bottom.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attached_side.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attached_top.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attachedf_bottom.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_attachedf_side.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_attachedf_top.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_attachedfr_bottom.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_attachedfr_side.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_attachedfr_top.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_attachedw_bottom.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attachedw_side.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attachedw_top.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_attachedwr_bottom.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_attachedwr_side.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_attachedwr_top.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_blocking_pointable.png Tool specific pointing and blocking pointable type (#13992) 2024-01-22 18:27:08 +01:00
testnodes_bouncy.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_buildable_to.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_climbable_noclimb_side.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_climbable_noclimb_top.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_climbable_nodescend_side.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_climbable_nodescend_top.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_climbable_nojump_side.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_climbable_nojump_top.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_climbable_resistance_side.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_climbable_side.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_climbable_top.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_damage.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_damage_neg.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_drowning.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_fall_damage_minus.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_fall_damage_plus.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_fencelike.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_fill_positioning_reference.png Faster blit_with_alpha() (#14448) 2024-03-19 19:56:47 +01:00
testnodes_firelike.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_glasslike.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_glasslike_detail.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_glasslike_framed.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_glasslike_framed2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_glasslike_framed_optional.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_glasslikeliquid.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_1.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_3.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_4.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_5.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_6.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_7.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_8.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_9.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_10.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_11.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_12.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_13.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_light_14.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_line_crossing.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_line_curved.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_line_straight.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_line_t_junction.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquid.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r0.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r1.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r3.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r4.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r5.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r6.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r7.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidflowing_r8.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r0.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r1.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r3.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r4.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r5.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r6.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r7.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_liquidsource_r8.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_marble_glass.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_marble_metal.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_marble_metal_overlay.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_mesh_stripes.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_mesh_stripes2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_mesh_stripes3.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_mesh_stripes4.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_mesh_stripes5.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_mesh_stripes6.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_mesh_stripes7.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_mesh_stripes8.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_mesh_stripes9.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_mesh_stripes10.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_move_resistance.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_node.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_node_falling.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_node_falling_1.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_node_falling_2.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_node_falling_3.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_node_falling_4.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_node_falling_5.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_node_falling_6.png DevTest: More node textures to tell them apart 2022-10-23 21:58:56 +02:00
testnodes_nodebox.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_nojump_side.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_nojump_top.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal1.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal2.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal3.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal4.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal5.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_normal6.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_not_pointable.png Tool specific pointing and blocking pointable type (#13992) 2024-01-22 18:27:08 +01:00
testnodes_overlay.png DevTest: Add nodes and items for testing overlays (#12304) 2022-05-27 21:39:36 +02:00
testnodes_overlayable.png DevTest: Add nodes and items for testing overlays (#12304) 2022-05-27 21:39:36 +02:00
testnodes_palette_4dir.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_palette_facedir.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_palette_full.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_palette_metal.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_palette_wallmounted.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_degrotate.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_leveled.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_meshoptions.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_base.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_base_side_degrotate.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_base_side_leveled.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_base_side_meshoptions.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_base_side_wallmounted.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_plantlike_rooted_base_side_waving.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_degrotate.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_leveled.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_meshoptions.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_rooted_wallmounted.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_plantlike_rooted_waving.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_plantlike_wallmounted.png Optimize PNG files (#13509) 2023-10-09 17:13:44 +02:00
testnodes_plantlike_waving.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_pointable.png Tool specific pointing and blocking pointable type (#13992) 2024-01-22 18:27:08 +01:00
testnodes_post_effect_color_shaded_false.png Allow nodes to have their post_effect_color affected by lighting (#13637) 2023-08-24 20:16:36 +02:00
testnodes_post_effect_color_shaded_true.png Allow nodes to have their post_effect_color affected by lighting (#13637) 2023-08-24 20:16:36 +02:00
testnodes_rail2_crossing.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail2_curved.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail2_straight.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail2_t_junction.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail_crossing.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail_curved.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail_straight.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_rail_t_junction.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_sign3d.png Add rotation support for wallmounted nodes in 'ceiling' or 'floor' mode (#11073) 2024-01-17 17:47:06 +01:00
testnodes_signlike.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_slippery.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_street_crossing.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_street_curved.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_street_straight.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_street_t_junction.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_sunlight_filter.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_tga_type1_24bpp_bt.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type1_24bpp_tb.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type2_16bpp_bt.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type2_16bpp_tb.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type2_32bpp_bt.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type2_32bpp_tb.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type3_16bpp_bt.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type3_16bpp_tb.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type10_32bpp_bt.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_tga_type10_32bpp_tb.tga Add TGA test nodes to devtest (#11978) 2022-02-22 19:17:40 +01:00
testnodes_torchlike_ceiling.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_torchlike_floor.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00
testnodes_torchlike_wall.png Rename “Minimal development test” to “Development Test” (#9928) 2020-05-26 00:17:52 +02:00