Ronan

Results 30 comments of Ronan

I implemented the decoder (which I will move to a util library / core module), but I had some issue in extending the `ShortString` type: some functions are not inlined...

As mentionned in my commit message, my encoding test does not pass in dx12, and I haven't figured why yet. The outputed values are incorrect. I compiled the shader to...

So I looked more into the issue with the encoding test failing in dx12. I suspect fxc is causing the problem. (I am not familiar with the dx12 tools) When...

I think you meant `ShortString t = "文字列"`, but it not a valid construct, since the utf8 length is 9. I prefer to use `let s = "文字列"`. For now...

About string hashing: It is currently mostly unavailable in C++ because it requires the type inlining pass, but it could be computed at runtime. Then we should either provide in...

I understand. I will just use `uint8_t` rather than `uint`, it will make things easier. What device does not support `uint8_t` anyway nowadays. About your example: ``` struct Params {...

> I will just use `uint8_t` rather than `uint`, it will make things easier. What device does not support `uint8_t` anyway nowadays. I wrote to fast, `uint8_t` is not available...

Everything seem to be working on my side. Can I get some tests running? If everything is ok, there are two things left to do: - [x] Documentation - [x]...

Some pointer related tests are failing right now. I think I found the issue, but it is not directly related to this PR, so I will propose a fix in...

The tests failling due to pointer related issues should be fixed now.