- Kaunas, Lithuania
- https://aras-p.info/
- Joined on
2022-01-20
Block a user
Fix #126394: ffmpeg on win64 is built without SIMD optimizations
Added a test! And as expected, it fails on windows:
ffmpeg_cpu_flags.cc(18): error: Value of: (flags & AV_CPU_FLAG_SSE2) != 0
ffmpeg_cpu_flags.cc(19): error: Value of: (flags & AV_CPU_FLAG_S…
a2c9ed36fd
Tests: add gtest for whether ffmpeg is built with correct CPU flags
fcc9295796
Fix: Tests: gtests in the very first linked library were not discovered
d9fd20fa2b
Fix #126394: ffmpeg on win64 is built without SIMD optimizations
0a4666dee2
Fix: IMB_scale Box filter for 2px images
852b3dbff3
Refactor: Sculpt: Split sculpt_intern.hh into separate header files
6e73e8c0f9
Tests: add gtest for whether ffmpeg is built with correct CPU flags
7d66ff2b41
Fix: Tests: gtests in the very first linked library were not discovered
ba646f6b12
Fix #126394: ffmpeg on win64 is built without SIMD optimizations
0d4e2ea40d
Fix #126434: Boid particle fight rule crash involving non-boid psys
6d93bf6b44
IMB: Speedups, fixes and cleanups to various image scaling functions
Aras Pranckevicius
deleted branch imb_scaling_cleanup from aras_p/blender
2024-08-19 16:50:54 +02:00
IMB: Speedups, fixes and cleanups to various image scaling functions
0459c834cf
IMB_scale: Box learned threading
f778a4e447
IMB_scale: Nearest learned threading, Bilinear learned no-threading
422f36d692
Cleanup: remove IMB_scaleImBuf* variants, leave only IMB_scale
aa9db90c7f
Cleanup: update usages of IMB_scaleImBuf* to IMB_scale
9e6ad16f1c
Tests: extend perf test to include two steps of scaling up
f654cd5575
IMB_scale: Box learned threading
5a4a1edae3
IMB_scale: Nearest learned threading, Bilinear learned no-threading
cbfa98226e
Cleanup: remove IMB_scaleImBuf* variants, leave only IMB_scale
d9546a7df3
Cleanup: update usages of IMB_scaleImBuf* to IMB_scale
99c2cfdabc
Tests: extend perf test to include two steps of scaling up
OBJ export always exports 2-vertex line segments, instead of connected strips
@Michael-382 just to clarify: the issue is not that OBJ "does not export lines", but rather that it exports lines as two-vertex segments, but you'd want lines that are "connected" to be exported…
Fix #126108: Crash when EXR image is loaded in image list
FYI the fix caused a slight performance regression in using IMB_scalefastImBuf
on float images, due to more complex per-pixel work with the channels loop. I'm fixing it as part of #126390 rabbit…