termux-packages/x11-packages/mesa-demos/src-tests-texdown.c.patch

12 lines
315 B
Diff

--- a/src/tests/texdown.c
+++ b/src/tests/texdown.c
@@ -175,7 +175,7 @@
#ifdef _WIN32
texImage = (GLubyte *) _aligned_malloc(bytes, ALIGN);
#else
- texImage = (GLubyte *) aligned_alloc(ALIGN, bytes);
+ texImage = (GLubyte *) memalign(ALIGN, bytes);
#endif
if (!texImage) {
DownloadRate = 0.0;