Search Criteria
Package Details: python-texture2ddecoder 1.0.4-1
Package Actions
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) |
Dependencies (2)
- python (python37AUR, python311AUR, python310AUR)
- python-setuptools (make)
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 changeCRND_ASSERT(((uint32)p_new & (CRND_MIN_ALLOC_ALIGNMENT - 1)) == 0);
toCRND_ASSERT(((uintptr_t)p_new & (CRND_MIN_ALLOC_ALIGNMENT - 1)) == 0);