sdlHasLsx function

bool sdlHasLsx()

Determine whether the CPU has LSX (LOONGARCH SIMD) features.

This always returns false on CPUs that aren't using LOONGARCH instruction sets.

\returns true if the CPU has LOONGARCH LSX features or false if not.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL 3.1.3.

extern SDL_DECLSPEC bool SDLCALL SDL_HasLSX(void)

Implementation

bool sdlHasLsx() {
  final sdlHasLsxLookupFunction =
      libSdl3.lookupFunction<Uint8 Function(), int Function()>('SDL_HasLSX');
  return sdlHasLsxLookupFunction() == 1;
}