Daniel Collin
Daniel Collin
Hi, I would just like to report this when building with ISPC 1.25.1 ``` warning: [email protected]: (ISPC) Warning: The target avx512knl_x16 is deprecated and will be removed in the warning:...
So this function ```C void Clay_SetMeasureTextFunction(Clay_Dimensions (*measureTextFunction)(Clay_String *text, Clay_TextElementConfig *config)); ``` There is no `userData` being passed to compared to the callback to ```C void Clay_OnHover(void (*onHoverFunction)(Clay_ElementId elementId, Clay_PointerData pointerData,...
Here ```C Clay_ScrollContainerData Clay_GetScrollContainerData(Clay_ElementId id) { ... .config = *Clay__FindElementConfigWithType(scrollContainerData->layoutElement, CLAY__ELEMENT_CONFIG_TYPE_SCROLL).scrollElementConfig, ``` This call above can be NULL which causes a crash due to the de-ref. I have change so...
When compiling for arm using GCC it would complain about the following code because the argument wasn't correct for `vminq_u32` I have now added a cast (that just reinterprets the...
I simply don't have time to do any maintenance of this code anymore and @Darky-Lucera has been doing great work in the past years. I wonder if you would be...
Hi, I know it's stated in the readme that this isn't supported, but I wonder if it may be possible to implement it under a feature level (such as `device_enumeration`)...
Hi, I have the following code ```C unmasked void draw_rects( uniform float output[], uniform float rect_min_x[], uniform float rect_min_y[], uniform float rect_max_x[], uniform float rect_max_y[], uniform int count) { for...
Currently the API doesn't include link to the music (if present) in the JSON data even if the website shows the link. It would be great if this data could...
## Summary Add proper HighDPI support across all platforms (macOS, Windows, Linux) so the UI renders crisply on modern high-resolution displays. ## Current Behavior - **macOS:** Retina support explicitly disabled...