Removed the unneeded PPC And Altivec elements, and removed the LOCBUILD flag

This commit is contained in:
Areloch 2017-04-09 23:26:35 -05:00
parent 7f735cae2e
commit 87283640b7
6 changed files with 1 additions and 119 deletions

View file

@ -27,10 +27,6 @@
# // x86 CPU family implementations
extern void zero_vert_normal_bulk_SSE(const dsize_t count, U8 * __restrict const outPtr, const dsize_t outStride);
#
#elif defined(TORQUE_CPU_PPC)
# // PPC CPU family implementations
extern void zero_vert_normal_bulk_gccvec(const dsize_t count, U8 * __restrict const outPtr, const dsize_t outStride);
#
#else
# // Other CPU types go here...
#endif

View file

@ -66,12 +66,6 @@ MODULE_BEGIN( TSMeshIntrinsics )
zero_vert_normal_bulk = zero_vert_normal_bulk_SSE;
#endif
}
else if(Platform::SystemInfo.processor.properties & CPU_PROP_ALTIVEC)
{
#if defined(TORQUE_CPU_PPC)
zero_vert_normal_bulk = zero_vert_normal_bulk_gccvec;
#endif
}
}
MODULE_END;