Package Details: python-texture2ddecoder 1.0.4-1

Git Clone URL: https://aur.archlinux.org/python-texture2ddecoder.git (read-only, click to copy)
Package Base: python-texture2ddecoder
Description: a python wrapper for Perfare's Texture2DDecoder
Upstream URL: https://github.com/K0lb3/texture2ddecoder
Licenses: MIT
Submitter: jose1711
Maintainer: jose1711
Last Packager: jose1711
Votes: 1
Popularity: 0.169946
First Submitted: 2020-12-31 11:34 (UTC)
Last Updated: 2022-03-15 20:43 (UTC)

Latest Comments

Neko_Rikka commented on 2024-12-17 05:27 (UTC)

I get errors about cast from ‘void*’ to ‘crnd::uint32’ {aka ‘unsigned int’} loses precision [-fpermissive] when building.My solution is to change CRND_ASSERT(((uint32)p_new & (CRND_MIN_ALLOC_ALIGNMENT - 1)) == 0); to CRND_ASSERT(((uintptr_t)p_new & (CRND_MIN_ALLOC_ALIGNMENT - 1)) == 0);