Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(814)

Unified Diff: ui/gl/gl_bindings_autogen_glx.cc

Issue 1545113002: Switch to standard integer types in ui/gl/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gl/gl_bindings_autogen_glx.h ('k') | ui/gl/gl_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_bindings_autogen_glx.cc
diff --git a/ui/gl/gl_bindings_autogen_glx.cc b/ui/gl/gl_bindings_autogen_glx.cc
index edd08f50a59b63520e04d72ffe7bae078cae0259..02aee398e4f8be57d8a9b8478c4d56b714190484 100644
--- a/ui/gl/gl_bindings_autogen_glx.cc
+++ b/ui/gl/gl_bindings_autogen_glx.cc
@@ -502,8 +502,8 @@ static GLXFBConfig* GL_BINDING_CALL Debug_glXGetFBConfigs(Display* dpy,
static bool GL_BINDING_CALL Debug_glXGetMscRateOML(Display* dpy,
GLXDrawable drawable,
- int32* numerator,
- int32* denominator) {
+ int32_t* numerator,
+ int32_t* denominator) {
GL_SERVICE_LOG("glXGetMscRateOML"
<< "(" << static_cast<const void*>(dpy) << ", " << drawable
<< ", " << static_cast<const void*>(numerator) << ", "
@@ -525,9 +525,9 @@ static void GL_BINDING_CALL Debug_glXGetSelectedEvent(Display* dpy,
static bool GL_BINDING_CALL Debug_glXGetSyncValuesOML(Display* dpy,
GLXDrawable drawable,
- int64* ust,
- int64* msc,
- int64* sbc) {
+ int64_t* ust,
+ int64_t* msc,
+ int64_t* sbc) {
GL_SERVICE_LOG("glXGetSyncValuesOML"
<< "(" << static_cast<const void*>(dpy) << ", " << drawable
<< ", " << static_cast<const void*>(ust) << ", "
@@ -1087,8 +1087,8 @@ GLXFBConfig* GLXApiBase::glXGetFBConfigsFn(Display* dpy,
bool GLXApiBase::glXGetMscRateOMLFn(Display* dpy,
GLXDrawable drawable,
- int32* numerator,
- int32* denominator) {
+ int32_t* numerator,
+ int32_t* denominator) {
return driver_->fn.glXGetMscRateOMLFn(dpy, drawable, numerator, denominator);
}
@@ -1100,9 +1100,9 @@ void GLXApiBase::glXGetSelectedEventFn(Display* dpy,
bool GLXApiBase::glXGetSyncValuesOMLFn(Display* dpy,
GLXDrawable drawable,
- int64* ust,
- int64* msc,
- int64* sbc) {
+ int64_t* ust,
+ int64_t* msc,
+ int64_t* sbc) {
return driver_->fn.glXGetSyncValuesOMLFn(dpy, drawable, ust, msc, sbc);
}
@@ -1386,8 +1386,8 @@ GLXFBConfig* TraceGLXApi::glXGetFBConfigsFn(Display* dpy,
bool TraceGLXApi::glXGetMscRateOMLFn(Display* dpy,
GLXDrawable drawable,
- int32* numerator,
- int32* denominator) {
+ int32_t* numerator,
+ int32_t* denominator) {
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "TraceGLAPI::glXGetMscRateOML")
return glx_api_->glXGetMscRateOMLFn(dpy, drawable, numerator, denominator);
}
@@ -1401,9 +1401,9 @@ void TraceGLXApi::glXGetSelectedEventFn(Display* dpy,
bool TraceGLXApi::glXGetSyncValuesOMLFn(Display* dpy,
GLXDrawable drawable,
- int64* ust,
- int64* msc,
- int64* sbc) {
+ int64_t* ust,
+ int64_t* msc,
+ int64_t* sbc) {
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "TraceGLAPI::glXGetSyncValuesOML")
return glx_api_->glXGetSyncValuesOMLFn(dpy, drawable, ust, msc, sbc);
}
« no previous file with comments | « ui/gl/gl_bindings_autogen_glx.h ('k') | ui/gl/gl_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698