Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Join us on Thursday, June 8, for a Q&A with Unity's Content Pipeline group here on the forum, and on the Unity Discord, and discuss topics around Content Build, Import Workflows, Asset Database, and Addressables!
    Dismiss Notice

Feedback Wanted: Mesh scripting API improvements

Discussion in 'Graphics Experimental Previews' started by Aras, May 26, 2019.

  1. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    Hi! We are thinking of making some improvements to the Mesh C# API (finally, eh). Here's a google doc with current API outline and status: https://docs.google.com/document/d/1I225X6jAxWN0cheDz_3gnhje3hWNMxTZq3FZQs5KqPc/edit?usp=sharing

    Feedback on that is welcome!

    TL;DR of the improvements outlined above:

    - Index buffers: ability to manually specify whole index buffer size, set full or partial data from a NativeArray, setup submesh information (topology, index count etc.) manually.
    - Vertex buffers: ability to manually specify vertex buffer layout (attribute data formats, streams split), set full or partial data from a NativeArray.
    - Slice-like ("int start, int length") overloads added to existing SetFoobar mesh APIs.
    - ushort overloads added to existing mesh index APIs, to avoid 32bit<->16bit conversions for index data.
     
    NotaNaN, Dinamytes, Nexer8 and 35 others like this.
  2. AurelWu

    AurelWu

    Joined:
    Oct 11, 2013
    Posts:
    26
    Do you plan to add utility function like SharedToUnique Vertices, UniqueToShared, Extrude, Quad based Mesh construction, Constructing meshes from parametric curves, stitching meshes together or similar things? Over time I wrote lots of these things myself but having a foundation of a bit more high-level tools to create procedural meshes would be appreciated by a lot of users I think.
     
  3. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    To me that that sounds like it should be some "mesh/geometry tools library" above Mesh class or even engine itself, perhaps like a package somewhere etc. Since there's nothing in the engine itself that it needs, it's all code that is built on top of the base API.
     
  4. AurelWu

    AurelWu

    Joined:
    Oct 11, 2013
    Posts:
    26
    ya you are right, would make sense to have that as separate package, I think probuilder actually already has some of these things but the documentation there is rather thin.
     
    tigerleapgorge likes this.
  5. Kichang-Kim

    Kichang-Kim

    Joined:
    Oct 19, 2010
    Posts:
    953
    Hi, Do you have a plan to improve Mesh.CombineMeshes() method? In my case, I manually combined meshes into single mesh for UV adjusting, bone index modification and so on. This is commonly need for Texture Atlasing and combining skinned mesh.

    It will be very helpful if CombineMeshes have UV offset (+scaling) and bone index remapping features.
     
  6. richardmatthias

    richardmatthias

    Joined:
    Feb 18, 2018
    Posts:
    1
    The proposed changes all look good. But I can't help returning to an old bugbear of mine with mesh drawing in Unity. Please add the ability to have meshes with no index buffer and a property for specifying the topology for the draw command. It's frustrating that you can do everything you want with DrawProcedural, but that it requires binding ComputeBuffers which aren't available on all targets.
     
    tigerleapgorge likes this.
  7. jbooth

    jbooth

    Joined:
    Jan 6, 2014
    Posts:
    5,408
    This looks like a major step forward.

    One thing I'd wonder about is having multiple streams as a replacement for additionalVertexStreams. I used that in my vertex painter, and while it works it has a number of annoying bugs and limitations (always need to set position even if your not overriding it, breaks batching, needs to be reset in some cases). Something that can be serialized in the scene would be ideal, as right now you have to have a component which stores it and copies it to the object at runtime (which prevents the mesh from being read only, breaking batching, and then requiring a separate baking pass). Ideally the data gets intertwined at some point automatically and everything 'just works'.

    There's also the question of if it makes sense to get away from additional UV sets as a way to say "additional user data". While every engine seems to use this terminology, it seems a little silly.
     
  8. eizenhorn

    eizenhorn

    Joined:
    Oct 17, 2016
    Posts:
    2,611
    It’s should be reposted to DOTS thread :)
     
    tigerleapgorge, Nothke and Antypodish like this.
  9. Jes28

    Jes28

    Joined:
    Sep 3, 2012
    Posts:
    995
    We also need a way to specify one submesh to render instead of entire mesh with all submeshes.
    I thinks it must be part of MeshFilter component in old system and all draw api must support to draw exact submesh instead of entire mesh.

    Unity already have this inside static batching but it is not exposed to us.

    This is like mesh atlasing that allow to have one mesh and effectively draw different parts of it.
     
  10. Jes28

    Jes28

    Joined:
    Sep 3, 2012
    Posts:
    995
    Am I right that I can declare position as byte2 (not 2 bytes per component but 2 bytes for entire position ) with this api?
     
    tigerleapgorge likes this.
  11. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    Not quite, since many graphics APIs (e.g. Metal, GLES etc.) require vertex components to be multiple of 4 bytes in size. But you could declare position as two FP16 numbers, or four bytes, etc.
     
    Bodkin and Jes28 like this.
  12. guycalledfrank

    guycalledfrank

    Joined:
    May 13, 2013
    Posts:
    1,606
    Yay, custom vertex layouts would be great! Right now I have to awkwardly pack everything to UVs.
    jbooth also made a good point about additionalVertexStreams.
     
    mahdi_jeddi and hippocoder like this.
  13. jbooth

    jbooth

    Joined:
    Jan 6, 2014
    Posts:
    5,408
    Another tangential thing is physics; a project I’m working on now uses jobs to generate lots of mesh data, copying the native arrays to arrays via unsafe code. It works well, but the fundamental bottleneck is by far updating physics representations. I can process dozens of times more meshes than I can update physics on, which causes a lot of complexity in amortizing that work.
     
    NotaNaN, Prodigga, crysicle and 5 others like this.
  14. davenirline

    davenirline

    Joined:
    Jul 7, 2010
    Posts:
    897
    I'd be happy with properties that accept NativeArray instead of managed array. We're making procedural meshes using ECS but the problem right now is only managed arrays are allowed. We need to do an extra step of copying the contents of the NativeArray into a managed array.

    Code (CSharp):
    1. mesh.nativeVertices = ...;
    2. mesh.nativeUvs = ...;
    3. mesh.nativeColors = ...;
     
  15. merpheus

    merpheus

    Joined:
    Mar 5, 2013
    Posts:
    196
    I am personally interested with Mesh Buffers usability over computer shaders. I'd love to use it. I just have a question. Does this changes will require us to use Entities ?
     
    hippocoder likes this.
  16. Zuntatos

    Zuntatos

    Joined:
    Nov 18, 2012
    Posts:
    611
    >VertexAttributeDescriptor[] GetVertexAttributes();
    Can we get a non-allocating alternative for this? Like a "VertexAttributesCount" and "GetVertexAttribute(int index)", or something filling a List<>

    >void SetVertexBufferParams(int vertexCount, params VertexAttributeDescriptor[] attributes);
    Can this have the slice-like overloads as well?

    These may be planned already, but they're not mentioned in the doc.

    P.S: Current use case time: I'm creating mesh data on a dedicated .net thread, writing into a static allochglobal buffer. Then when the size is known, I Marshal.AllocHGlobal() a new buffer that's used to temp hold the data while sending it to the main thread. There I copy the data to a static List<> as that's the only one I can reasonably use with the current API. This copying is fun in itself, as I'm pinning the internal array of the List<> gotten with reflection, getting the pointer, and doing a memcpy from said malloc'd buffer into the List<>'s backing array. Then I got to set the List<>'s count as well with reflection. This turned out to be noticably quicker then simply copying data over using List<>.Clear() and List<>Add(). And I pack 2 int16 values into the color channel.

    So I may be a happy guy when I can scratch all that for a burst job generating a few NativeArray<>'s and calling this new API :)
     
    a436t4ataf likes this.
  17. MediaGiant

    MediaGiant

    Joined:
    Sep 14, 2013
    Posts:
    304
    Please add a replacement or fix for Unwrapping.GenerateSecondaryUVSet since this is broken for 32bit indexing. And I may be mistaken but I believe we need serialization of the mesh object to allow for undo/redo functionality. I would also suggest moving towards a format that contains adjacency information like a winged edge data structure or similar.
     
    guycalledfrank likes this.
  18. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    On which version do you see that? I seem to recall someone fixing exactly that, but I forgot how many years or months ago that was.
     
  19. MediaGiant

    MediaGiant

    Joined:
    Sep 14, 2013
    Posts:
    304
    It does work in 2019.1.0f2 but I get an IndexOutOfRangeException when using Unwrapping.GenerateSecondaryUVSet in the LTS version 2017.4.25f1. This is caused by the triangle indices into the vertex array having been changed to random values like 1048591 for a mesh with only 60 vertices for example.
     
    Last edited: May 26, 2019
  20. a436t4ataf

    a436t4ataf

    Joined:
    May 19, 2013
    Posts:
    1,804
    "It primarily has issues with performance, too much extra memory copying, memory allocation"​

    I'm running into the exact same problems (copying data for no reason, because the API demands it ... and having to jump through hoops to prevent GC allocations that should never have happened in the first place) with the 2D Mesh manipulation APIs (i.e. VertexHelper - which is (correct me if I'm wrong) currently required to create meshes for UnityUI?).

    Will this update also fix/replace the VertexHelper class with the same type of improvements? (VH is almost a great class, but the fact it forces you to copy data to/from low-performance List's on every frame is painful).
     
    bj004u and (deleted member) like this.
  21. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    The fix reached 2017 LTS release in 2017.4.27: https://unity3d.com/unity/whats-new/2017.4.27
     
    Lahcene and guycalledfrank like this.
  22. MediaGiant

    MediaGiant

    Joined:
    Sep 14, 2013
    Posts:
    304
    On the 10th of May, my timing is either very good or very bad. Thanks, glad to hear it is now rectified.
     
    Lahcene likes this.
  23. Vanamerax

    Vanamerax

    Joined:
    Jan 12, 2012
    Posts:
    937
    I like the proposed changes so far. Especially overloads for NativeArrays is very much welcome at the moment.

    Something which isn't made very clear in the document however, is whether this will allow us to reference the Mesh object directly from within jobs? From peeking in the source code with a decompiler, the mesh class appears to be a thin wrapper around the native object. Will the Mesh class be turned into a blittable struct such that it can be used in jobs, or do we still need to post-process our calculations in the main thread in order to apply them to the mesh?

    My current approach to this, due to the lacking API is as follows:
    Create a MeshData struct that contains NativeLists for vertices, indices, uvs, normals etc.
    Create jobs that generate the mesh data. The Job has a field of type MeshData and modifies its NativeLists.
    On the mainthread, check and wait for the job to complete (polling IsCompleted and/or calling Complete() on the last job in the dependency chain). After job completion, copy the NativeList contents into a managed array and passing that to the Mesh API.

    With the changes described in the document, the last step (copy contents from NativeList to managed array) won't be necessary anymore. But what about the other steps? For me, especially having to synchronize with the mainthread by calling Complete() is a bottleneck I would be glad to see removed.
     
  24. RV1

    RV1

    Joined:
    Nov 18, 2012
    Posts:
    68
    A core problem with the mesh API is that modifying a mesh at run time is a blocking operation. Vertex data can be built on either seperate threads or the job system, but ultimately you are bottlenecked by the part where you have to assign the data to the mesh to update it since this has to be done on the main thread. The workaround I use is time slicing where I allocate time per frame to process a queue of meshes that need updating.

    What I have always wanted is for the entire process of updating a mesh to be completely non-blocking. Either allow us to do it all on the job system or alternatively introduce a thread safe variant of the Mesh class where you can lock/unlock it for writing.
     
  25. LennartJohansen

    LennartJohansen

    Joined:
    Dec 1, 2014
    Posts:
    2,394
    from the document

    "Direct NativeArray access to mesh vertex/index buffers, without a memcpy incurred by SetVertexBufferData/SetIndexBufferData. That would probably work similar to how NativeArray Texture2D.GetRawTextureData works."

    You can with this pre create the mesh (if you know the size) and manipulate the content memory direct in a job.
    But I guess you still need to flag the mesh to be uploaded to the GPU again on the main thread.
     
    tigerleapgorge likes this.
  26. RV1

    RV1

    Joined:
    Nov 18, 2012
    Posts:
    68
    Yep, I meant to say "A core problem with the current mesh API". NativeArray access to the mesh buffers would allow us to take more of the task off the main thread which is great. I am hoping for the entire task of updating a mesh to be completely non-blocking so that theres no requirement to do any sort of main thread operation (such as flagging the mesh for upload).
     
    mgear likes this.
  27. fredrikpedram

    fredrikpedram

    Joined:
    Oct 8, 2017
    Posts:
    3
    It would be nice if we could directly manipulate the mesh data (including adding and removing vertices) in separate thread/job, and then mark the mesh to be updated on the main thread. Right now we have to make copy of the vertex buffer and assign it back to the mesh in order to manipulate the mesh on a different thread.
     
  28. siggigg

    siggigg

    Joined:
    Apr 11, 2018
    Posts:
    247
    Is GPU submission in Unity still all on the main thread? Wasn't there graphics jobs already?
     
    Opeth001 likes this.
  29. hungrybelome

    hungrybelome

    Joined:
    Dec 31, 2014
    Posts:
    334
    Please add a method for extracting a submesh, that works properly with skinned meshes!
     
  30. BakeMyCake

    BakeMyCake

    Joined:
    May 8, 2017
    Posts:
    175
    Can we get an option to specify mesh colours(https://docs.unity3d.com/ScriptReference/Mesh-colors.html) without normalization? For... nefarious data encoding purposes.

    Currently it clamps input if it exceeds 1. I work around it by using Color32 instead, but that's just because fortunately I can get by with the 0-255 range.

    Never? Maybe?
     
  31. jbooth

    jbooth

    Joined:
    Jan 6, 2014
    Posts:
    5,408
    You can use UVs instead, and there are currently 8 sets of UVs which are up to float4, so quite a bit of data to play with.
     
  32. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    I'm not sure which part would do the clamping, since in shaders both Color and Color32 should look the same and be interpreted as 0..1 values, especially the Color32 part. Color values outside of 0..1 range should be visible in the shaders just fine.

    Are you talking about reading the colors back into C# after setting them, or what?
     
  33. BakeMyCake

    BakeMyCake

    Joined:
    May 8, 2017
    Posts:
    175
    That doesn't seem to be the case. What I do in C#:
    Code (CSharp):
    1. Mesh msh = new Mesh();
    2. Color[] clr_test = new Color[vertexCount];
    3. clr_test[0].a = 2f;
    4. msh.colors = clr_test;
    What I do in the shader:
    Code (CSharp):
    1. float instanceID = v.color.w; // clamped
    2. //float instanceID = v.color.w * 255.0; // what I use for color32
    Based on visual shader debugging I can see that with regular colors any value above 1 arrives to the shader clamped. I'm not sure why that happens, I just assumed Unity does that somewhere along the way and I just rolled with it. But I would be greateful if you managed to pull an explanation of how to get above 1.
     
  34. alexzzzz

    alexzzzz

    Joined:
    Nov 20, 2010
    Posts:
    1,447
    In the google doc Jonas Bötel mentions adding NativeSlice overloads. How about just replacing all NativeArrays in parameters with NativeSlices? They are basically the same and NativeArray implicitely converts to NativeSlice.

    Span<T> is even more universal type. If it were supported, it could replace both native and managed arrays and also their slices.
     
    Last edited: May 29, 2019
  35. tteneder

    tteneder

    Unity Technologies

    Joined:
    Feb 22, 2011
    Posts:
    160
    Thanks for taking on this topic and thanks everyone for asking or answering most of my questions already. Some things I still don't understand fully:

    Right now, dispatching Mesh (changes) to GPU is done semi-automatically (at next render or explicitely via Mesh.UploadMeshData on the main-thread ).
    Is it going to stay like this or explicit only? And again: will we be able to do this off the main thread?

    For users of MeshCollider/Physics:
    Just like with GPU dispatching: will we be able to explicitely create the physics representation of the Mesh?
    Will it be the same for Physx, Unity Physics and Havok?
    Automatic convex decompositions is point on the roadmap. How does it integrate into this new Mesh API workflow?

    My background #1:
    At work I develop and use a native library that creates procedural meshes. Right now the library allocates memory, fills it with mesh data and provides data desciption and raw pointers to the data. In Unity I allocate memory again (right now Vector3/Vector2/int arrays) and do a memcpy+UploadMeshData. Physx also seems to take a lot of time within the same cycle when I do this. Looking forward to speed this up!

    My background #2:
    I work on a run-time glTF import library for Unity with focus on speed called glTFast ( https://github.com/atteneder/glTFast ).
    It is super intersting to just load the glTF binary buffers once and directly dispatch meshes from them without having to re-organize it in memory. After a quick look I think this is totally doable for straight buffer layouts (struct of arrays).
    Now glTF also allows all kinds of interleaved buffers and ideally I'd like to just use them as they are.
    Will this be achievable?
    I guess at run-time we have to check if the given layout is compatible and if not...bite the bullet and copy stuff around, right?
    See the glTF spec here: https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#data-alignment
    glTF also supports mesh-compression (namely Draco). From the standpoint of a mesh-decompression library it would be interesting how to get the best/fastest result. Probably invoves data layout negotiation between Mesh API and decompression lib and good thread-ability of both.

    Thanks for considering my points!
     
    crysicle and jasperstocker like this.
  36. MartinMittring

    MartinMittring

    Joined:
    Dec 13, 2018
    Posts:
    2
    This is great! Thanks for tackling this.
    I don't see instancing support and consider this important.
    I want to make sure all multiple stream things can be done like the hardware can do it.
    The API should not try to abstract too much, I rather have different layouts for different platforms than a system that tries to guess a good layout for me.

    I wonder if this all happens on the main thread and the thread talking to the API (render thread) makes it needed to add a copy. I hope this can be avoided.

    As mentioned by someone else - it would be best to consider this use case: one large indexbuffer, one large vertex buffer, all game objects that was to render have a pointer/reference to those and access ranges in there. CPU updates to the buffers don't require a wait until API GPU is finished reading it (the client app has to ensure it does not cause those race conditions). If this is difficult we can consider a intermediate buffer that allows to upload to and then do a GPU copy from that to the large buffer. Imagine we want to update vertex buffers each frame and we want to bound the performance impact, doing it async and distributing over multiple frames is acceptable - in many cases you can have existing data being used until the new data arrives. I would be happy to stay in contact to try an easy version of the new API.
     
    Jes28 likes this.
  37. vx4

    vx4

    Joined:
    Dec 11, 2012
    Posts:
    176
    Please adds functionality to generate SDF from mesh and mesh from SDF.
     
    landonth and rsodre like this.
  38. TheZombieKiller

    TheZombieKiller

    Joined:
    Feb 8, 2013
    Posts:
    240
    Definitely agreed on this. Currently the list of overloads seems to be:
    Code (CSharp):
    1. SetFoo(T[])
    2. SetFoo(T[], int start, int length)
    3. SetFoo(NativeArray<T>, int start, int length)
    4. SetFoo(List<T>, int start, int length)
    Although ideally we'd only need the following:
    Code (CSharp):
    1. SetFoo(List<T>, int start, int length)
    2. SetFoo(ReadOnlySpan<T>)
    With NativeSlice<T> and NativeArray<T> given implicit conversions to Span<T> and ReadOnlySpan<T> once .NET Standard 2.1 drops.
    On that note, would there be value in an ArraySegment<T> overload over the T[] with start and length version? Probably not, but I figured I'd throw it out there.
     
  39. TDCreationStudios

    TDCreationStudios

    Joined:
    May 16, 2018
    Posts:
    18
    @Aras hello! There are two main things I'd actually like to suggest - one of which may not be suited here.

    Firstly: Unity seems to be going forwards with using proper Microsoft guideline naming conventions (PascalCase everywhere, vs Unity's old camelCase naming) - this would be really nice. Having to switch between casing can be a little jarring and annoying for those who are somewhat OCD like myself. If you'd like sources I'm happy to quote :)

    Secondly(might not belong here): Better compatibility with ECS. Now, I see you've got some general ideas layed out, but having a MeshComponent that we could use directly in the Job System would be... amazing. I've been developing a Voxel based video game lately, and of course, world generation needed to be multithreaded. However, passing in a NativeArray<Vector3> NativeArray<int> etc was very jarring. However, an IJobParallelFor<MeshComponent> would be a whole ballpark nicer.

    Thanks for asking for feedback here :)
     
    rsodre likes this.
  40. Kronnect

    Kronnect

    Joined:
    Nov 16, 2014
    Posts:
    2,856
    Nice.
    A couple of requests:
    - A set of APIs that enqueue mesh data being uploaded and work in a non-blocking way using internal jobs/manager and allow us to control CPU budget per frame if necessary including any NavMesh/Physics update tasks. Commands like Flush(), SetCPUBudget(Max ms), etc.
    - Ability to obtain original mesh when batching applies.
    Thanks
     
    Vanamerax likes this.
  41. crysicle

    crysicle

    Joined:
    Oct 24, 2018
    Posts:
    94
    Am i correct in assuming that the mesh recalculations immediately apply to the updated part of the collider? No mention of this in the document. If so, would be also nice to see these optimizations ported into the Terrain collider.

    Though with the:
    Code (CSharp):
    1. SetFoo(List<T>, int start, int length)
    linear methods it wouldn't be enough. If possible, it'd be nice if the methods were extented to follow SetHeights(int xBase, int yBase, float[,] heights) functionality where only the changed patch of it would be updated.
     
    Last edited: Jun 4, 2019
  42. caioc2

    caioc2

    Joined:
    May 11, 2018
    Posts:
    8
    Amazing to hear that.

    I've been doing some procedural animated meshes and the need of copying/setting the entire mesh data every frame kills the performance. From tests with my case scenario, it's completely memory access(copy) bounded. Having such "low-level" access would be a "game changing" pun intended.
     
    DavidSWu likes this.
  43. Invertex

    Invertex

    Joined:
    Nov 7, 2013
    Posts:
    1,454
    Not sure what the use case for generating a mesh from an SDF on the scripting side would be, as an SDF is usually something generated from geometry you already had. Generally you simply render the SDF in shader in a way that makes it look like a geometric object, without having to process any significant geometry. The only thing I could see it being useful for on the scripting side is if you wanted to generate a collider from it at runtime, but that's a complicated feature to develop for very niche utility. What would be cool is if PhysX or Unity's DOTS based physics they're working on could utilize SDFs as collider data itself to do physics operations on...
     
  44. Mr-Mechanical

    Mr-Mechanical

    Joined:
    May 31, 2015
    Posts:
    507
    I want it to be easy to modify meshes on the GPU with Compute Shaders without unnecessary memory transfer to the CPU. It's very critical that this is possible.
    I haven't looked into it but I think this might be already possible with Graphics.DrawProcedural. If not that definitely should be in there.
     
  45. rz_0lento

    rz_0lento

    Joined:
    Oct 8, 2013
    Posts:
    2,357
    from 2019.3.0a7 release notes:
    • Graphics: Ability to specify custom Mesh vertex data formats, and set vertex buffer data from NativeArrays. See VertexAttributeFormat, VertexAttributeDescriptor, Mesh.SetVertexBufferParams, Mesh.SetVertexBufferData.

    • Graphics: Ability to specify Mesh submesh information directly, and set index buffer data from NativeArrays. See SubMeshDescriptor, Mesh.SetIndexBufferParams, Mesh.SetIndexBufferData.
     
  46. Quatum1000

    Quatum1000

    Joined:
    Oct 5, 2014
    Posts:
    887
    Not sure if its possible.
    • I would like to have a static custom data chunk in a mesh. Then able to read/write from a vertex function of a shader. These data chunks should independent from the current vertex or uv index as a global info.
     
  47. LightStriker

    LightStriker

    Joined:
    Aug 3, 2013
    Posts:
    2,716
    1) Dumping MeshFilter.
    2) Creating a Skeleton file when importing a SkinnedMeshRenderer to prevent bones ordering F***up.
    3) Kill the LOD system and redo it. It's rotten, not multithreaded and scale very poorly.
     
    DavidSWu likes this.
  48. DavidSWu

    DavidSWu

    Joined:
    Jun 20, 2016
    Posts:
    183
    This sounds great!
    • The most important thing for me is performance. I am not interested in naming conventions or high-level apis with hidden costs. Just give us low-level stuff to let us write better games.
    • Ideally, we can write directly to vertex streams in uncached/write combined/video memory/whatever using an appropriate platform format from another thread (I don't care if we can or have to use DOTS or whatever).
    • Same for indexes
    • Any existing API's that could be made thread safe would be nice.
    • Bonus points if there were a way to blit vertex/index streams to readable memory asynchronously on write-only meshes for those rare cases in which you might need access to vertex information from one mesh (but not the entire FBX) and you can afford to wait for it. Like when your artists have 300 meshes within an FBX and there are rare cases that you want vertex information from one of them for some UI stuff but you don't know which ahead of time and your target platform doesn't always support compute shaders. We could do the translation from platform formats like F16 to CPU friendly formats and deinterleave data to pick what we want.
     
  49. KillHour

    KillHour

    Joined:
    Oct 25, 2015
    Posts:
    46
    This is possible with DrawProceduralIndirect, which is how I'm handling it currently, but you have to use a custom vertex shader to read the data back out, which means you can't combine it with the HDRP shaders or shader graph. You used to be able to with custom master nodes, but you can't any more. The ability to assign a buffer to a mesh or otherwise tell the standard shaders "this is where your vertex data is" without sending the data back to the GPU would be a godsend.
     
    landonth, cecarlsen and Mr-Mechanical like this.
  50. Mr-Mechanical

    Mr-Mechanical

    Joined:
    May 31, 2015
    Posts:
    507
    If you can do this easily.. especially with HDRP it would epic. Efficient GPU mesh modification with compute shaders is where it's at.
     
    landonth, ahmet_unity826 and KillHour like this.