godot/servers/visual
Juan Linietsky 33b5c57199 Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.

Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.

For Variant, the float datatype is always 64 bits, and exposed as `float`.

We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.

Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-25 12:55:53 +01:00
..
rasterizer_rd Fix MIMPAMPS typos in constants throughout the engine 2020-02-20 01:31:43 +02:00
rasterizer.cpp Rewrote large part of rendering, omni and spot shadows now work. 2020-02-11 12:01:18 +01:00
rasterizer.h Replace FALLTHROUGH macro by C++17 [[fallthrough]] 2020-02-23 00:52:50 +01:00
rendering_device.cpp PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
rendering_device.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
SCsub Custom material support seems complete. 2020-02-11 11:53:29 +01:00
shader_language.cpp Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT. 2020-02-25 12:55:53 +01:00
shader_language.h Fix bugs in shader swizzling 2020-02-13 18:11:21 +03:00
shader_types.cpp Base 3D engine done, still untested, though. 2020-02-11 11:59:25 +01:00
shader_types.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
visual_server_canvas.cpp PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
visual_server_canvas.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
visual_server_globals.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
visual_server_globals.h Custom material support seems complete. 2020-02-11 11:53:29 +01:00
visual_server_light_baker.cpp Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
visual_server_light_baker.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
visual_server_raster.cpp Reworked signal connection system, added support for Callable and Signal objects and made them default. 2020-02-20 08:24:50 +01:00
visual_server_raster.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
visual_server_scene.cpp PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00
visual_server_scene.h ObjectID converted to a structure, fixes many bugs where used incorrectly as 32 bits. 2020-02-12 14:24:54 -03:00
visual_server_viewport.cpp Re-implemented screen space ambient occlusion 2020-02-11 12:15:46 +01:00
visual_server_viewport.h Reflection probes working 2020-02-11 12:01:21 +01:00
visual_server_wrap_mt.cpp WIP CameraEffects implementation (bokeh not working for now) 2020-02-11 12:15:03 +01:00
visual_server_wrap_mt.h PoolVector is gone, replaced by Vector 2020-02-18 10:10:36 +01:00