Fix indirect use of defined() directive

BUG=432391
R=bsalomon,bungeman1

Review URL: https://codereview.chromium.org/876933004
This commit is contained in:
tomhudson 2015-06-23 06:31:32 -07:00 committed by Commit bot
parent 702edbd4bc
commit 3fef728e16

View File

@ -177,8 +177,10 @@
* Hopefully we will understand this better and have a cleaner fix or get a
* OS/driver level fix.
*/
#define GR_GL_MAC_BUFFER_OBJECT_PERFOMANCE_WORKAROUND \
(defined(SK_BUILD_FOR_MAC) && \
!GR_GL_USE_BUFFER_DATA_NULL_HINT)
#if (defined(SK_BUILD_FOR_MAC) && !GR_GL_USE_BUFFER_DATA_NULL_HINT)
# define GR_GL_MAC_BUFFER_OBJECT_PERFOMANCE_WORKAROUND 1
#else
# define GR_GL_MAC_BUFFER_OBJECT_PERFOMANCE_WORKAROUND 0
#endif
#endif