sherief
sherief
I'm deploying Lua / Fennel in a setup where, after initialization, global environment / upvalues are made read only at the VM level, by preventing OP_SETTABUP instructions from executing (details...
I'm compiling Ozz Animation for AVX and I noticed in simd_math_sse-inl.h that with only OZZ_SHUFFLE_PS1() is specialized for AVX. I thought there might be opportunities to implement > SSE2 intrinsics...
The ozz animation format uses a float for duration, in contrast to the more deterministic `long long` used by FbxTime. Would you consider updating the format to use int64_t for...
Lite is a great editor and one of the rare programs that load super fast - would you consider statically linking SDL2 for the Windows build (and the CRT too,...
...since compilers like MSVC assume allocation functions return 16-bit alignment. This causes issues with messages that have fields aligned (via __declspec() or alignas()) to 16-bytes, since the compiler assumes allocated...
I'm trying to integrate mesh shapes into an existing code base and I ran into performance regressions with MeshShape, and I had a few thoughts about the interface. Right now...
When compressing a an RGBA16F cubemap, the resulting files has 36 faces for each mip level instead of 6. Input and output files attached: [grace_cross_mmp_ABGR16F.zip](https://github.com/GPUOpen-Tools/compressonator/files/7656201/grace_cross_mmp_ABGR16F.zip) Command line and output: ```compressonatorcli.exe...
I tried compressing the attached file to BC5, and while I can see its thumbnail in the GUI, the info pane fails to show the file dimensions and the CLI...
I'd like to create queues with an explicit upload heap provided that I allocate and control. I understand I'll be giving up the heap and its entire VA space to...