MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / stbi__cpuid3

Function stbi__cpuid3

include/stb/stb_image.h:732–737  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

730#if _MSC_VER >= 1400 // not VC6
731#include <intrin.h> // __cpuid
732static int stbi__cpuid3(void)
733{
734 int info[4];
735 __cpuid(info,1);
736 return info[3];
737}
738#else
739static int stbi__cpuid3(void)
740{

Callers 1

stbi__sse2_availableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected