diff options
author | David Walter Seikel | 2016-03-07 19:57:23 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-03-07 19:57:23 +1000 |
commit | 8601d737bf4575e0c1e9742d7783e1a3c9247d5f (patch) | |
tree | 3ebb85f99d23a4268e00c80481955269d64832f9 /docs/common | |
parent | Document black bug. (diff) | |
download | SledjHamr-8601d737bf4575e0c1e9742d7783e1a3c9247d5f.zip SledjHamr-8601d737bf4575e0c1e9742d7783e1a3c9247d5f.tar.gz SledjHamr-8601d737bf4575e0c1e9742d7783e1a3c9247d5f.tar.bz2 SledjHamr-8601d737bf4575e0c1e9742d7783e1a3c9247d5f.tar.xz |
Document pick bug.
Diffstat (limited to 'docs/common')
-rw-r--r-- | docs/common/objects.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/common/objects.txt b/docs/common/objects.txt index 236a035..cf91f19 100644 --- a/docs/common/objects.txt +++ b/docs/common/objects.txt | |||
@@ -554,3 +554,10 @@ evas_canvas3d_mesh_frame_vertex_data_copy_set() calls evas_canvas3d_mesh_aabb_ | |||
554 | evas_canvas3d_mesh_frame_vertex_data_set() doesn't, but does the same thing manually. | 554 | evas_canvas3d_mesh_frame_vertex_data_set() doesn't, but does the same thing manually. |
555 | uses the buffer passed in, with no copy | 555 | uses the buffer passed in, with no copy |
556 | 556 | ||
557 | While picking DOES use the aabb, getting things to actually HAVE an aabb is hard. | ||
558 | coz the _data_set() variation doesn't work, though that's the one we want. | ||
559 | Ah, it only works if you pass in EVAS_CANVAS3D_VERTEX_ATTRIB_POSITION, instead of _NORMAL, _TANGENT, _COLOR, or _TEXCOORD | ||
560 | Except it still doesn't! | ||
561 | |||
562 | So stick with the copy variation for now. | ||
563 | |||