Replies: 1 comment
|
I think what you want here is the new CustomStringType documentation is a bit lacking at the moment but we're trying to get that sorted for the upcoming release. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Here is the HLIL:
This is the source code:
Here is the preload data location
I was able to get the datarenderer to make it look nicer (still some polish needed with regards to indentation and not having it swallow the padding at the end. to get this to work, i needed to make a struct like this:
But then the IL changes to show
&preloadwhich is not ideal:So then I tried a typedef, thinking that it would be treated the same as the type, but that works out the same as the struct above with the change in the IL:
And finally I tried to scope the datarenderer to just that symbol, but that doesn't work either.
Here is the one that worked mostly except that it requires a struct that causes IL problems separately from the datarenderer.
All reactions