Sync SDL3 wiki -> header

[ci skip]
This commit is contained in:
SDL Wiki Bot
2024-12-22 07:09:56 +00:00
parent f0fad41f2c
commit 56cf8d8dc9
10 changed files with 165 additions and 128 deletions

View File

@@ -324,9 +324,9 @@ _m_prefetch(void *__P)
* #endif
* ```
*
* The application is, on a whole, built without SSE2 instructions, so it
* will run on Intel machines that don't support SSE2. But then at runtime,
* it checks if the system supports the instructions, and then calls into a
* The application is, on a whole, built without SSE2 instructions, so it will
* run on Intel machines that don't support SSE2. But then at runtime, it
* checks if the system supports the instructions, and then calls into a
* function that uses SSE2 opcodes. The ifdefs make sure that this code isn't
* used on platforms that don't have SSE2 at all.
*