Merge "EGL: make x86/64 wrappers resistant to -fno-omit-frame-pointer flag"
This commit is contained in:
commit
7b3fd29037
@ -78,7 +78,7 @@ namespace android {
|
||||
|
||||
#elif defined(__i386__)
|
||||
|
||||
#define API_ENTRY(_api) __attribute__((noinline)) _api
|
||||
#define API_ENTRY(_api) __attribute__((noinline,optimize("omit-frame-pointer"))) _api
|
||||
|
||||
#define CALL_GL_EXTENSION_API(_api) \
|
||||
register void** fn; \
|
||||
@ -100,7 +100,7 @@ namespace android {
|
||||
|
||||
#elif defined(__x86_64__)
|
||||
|
||||
#define API_ENTRY(_api) __attribute__((noinline)) _api
|
||||
#define API_ENTRY(_api) __attribute__((noinline,optimize("omit-frame-pointer"))) _api
|
||||
|
||||
#define CALL_GL_EXTENSION_API(_api) \
|
||||
register void** fn; \
|
||||
|
@ -82,7 +82,7 @@ using namespace android;
|
||||
|
||||
#elif defined(__i386__)
|
||||
|
||||
#define API_ENTRY(_api) __attribute__((noinline)) _api
|
||||
#define API_ENTRY(_api) __attribute__((noinline,optimize("omit-frame-pointer"))) _api
|
||||
|
||||
#define CALL_GL_API(_api, ...) \
|
||||
register void** fn; \
|
||||
@ -101,7 +101,7 @@ using namespace android;
|
||||
|
||||
#elif defined(__x86_64__)
|
||||
|
||||
#define API_ENTRY(_api) __attribute__((noinline)) _api
|
||||
#define API_ENTRY(_api) __attribute__((noinline,optimize("omit-frame-pointer"))) _api
|
||||
|
||||
#define CALL_GL_API(_api, ...) \
|
||||
register void** fn; \
|
||||
|
@ -138,7 +138,7 @@ GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
|
||||
|
||||
#elif defined(__i386__)
|
||||
|
||||
#define API_ENTRY(_api) __attribute__((noinline)) _api
|
||||
#define API_ENTRY(_api) __attribute__((noinline,optimize("omit-frame-pointer"))) _api
|
||||
|
||||
#define CALL_GL_API(_api, ...) \
|
||||
register void* fn; \
|
||||
@ -157,7 +157,7 @@ GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
|
||||
|
||||
#elif defined(__x86_64__)
|
||||
|
||||
#define API_ENTRY(_api) __attribute__((noinline)) _api
|
||||
#define API_ENTRY(_api) __attribute__((noinline,optimize("omit-frame-pointer"))) _api
|
||||
|
||||
#define CALL_GL_API(_api, ...) \
|
||||
register void** fn; \
|
||||
|
Loading…
Reference in New Issue
Block a user