Skip to content

Commit

Permalink
Enable SSE for all Apple devices
Browse files Browse the repository at this point in the history
  • Loading branch information
wader authored and andoma committed Apr 6, 2011
1 parent ad8ab2f commit 8fe8dce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/glw/glw.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ LIST_HEAD(glw_video_list, glw_video);

// ------------------- Math mode -----------------

#ifdef __x86_64
// all supported apple devices should support SSE
#if defined(__x86_64) || defined(__APPLE__)
#define ENABLE_GLW_MATH_SSE 1
#else
#define ENABLE_GLW_MATH_SSE 0
Expand Down

0 comments on commit 8fe8dce

Please sign in to comment.