Adam
Adam
Is it done or stiil waits for the implementation ?
To compile ( -Wall gives a warning) : gcc png-text-append.c crc.c -o png-text-append // without png library gcc png-text-dump.c -L/usr/local/lib -lpng -o png-text-dump // with png library to use :...
@Danack Is [this png file](https://user-images.githubusercontent.com/1731329/209805122-3bf441e1-c454-49fd-a3db-9363c00182bc.png) not the source image ?
 Here is an image made with your code ``` short color = x; uint16_t actual_color = (65535 * color) / 1000; *row++ = (png_byte)((actual_color & 0xFF00) >> 8); //...
I have tried also create png16 in IM 6 using ``` convert gradient: -define png:color-type=0 -define png:bit-depth=16 -size 1000x1000 gray16.png ``` but it is now good command
Ok. I tried. It works, but timu is not compiled. How can I compile ?
``` sudo apt-get install clang xorg-dev libxinerama-dev libxcursor-dev libgles2-mesa-dev libegl1-mesa-dev libglfw3-dev libglew-dev libstdc++-12-dev git clone [email protected]:facebook/igl.git cd igl python3 deploy_content.py python3 deploy_deps.py cd build cmake .. -G "Unix Makefiles" cmake...
is vulkaninfo enough ? ``` vulkaninfo ========== VULKANINFO ========== Vulkan Instance Version: 1.3.204 Instance Extensions: count = 19 =============================== VK_EXT_acquire_drm_display : extension revision 1 VK_EXT_acquire_xlib_display : extension revision 1 VK_EXT_debug_report...
``` echo $XDG_SESSION_TYPE x11 ```
I have found only one ``` const igl::vulkan::VulkanContextConfig cfg{ .maxTextures = 8, .maxSamplers = 8, .terminateOnValidationError = true, .swapChainColorSpace = igl::ColorSpace::SRGB_LINEAR, }; ``` but cfg is used 4 times. Should...