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

Unified Diff: ui/ozone/platform/drm/gpu/gbm_surface.cc

Issue 2268993003: [Command Buffer] Coding style: FrameBuffer -> Framebuffer to be comformant (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code rebase Created 4 years, 4 months 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/ozone/platform/drm/gpu/gbm_surface.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/gbm_surface.cc
diff --git a/ui/ozone/platform/drm/gpu/gbm_surface.cc b/ui/ozone/platform/drm/gpu/gbm_surface.cc
index 566d0c7c0742a53455406317745a24bde950ddfa..4ae84ca58f08d70b66b11f32b229e05136e3829f 100644
--- a/ui/ozone/platform/drm/gpu/gbm_surface.cc
+++ b/ui/ozone/platform/drm/gpu/gbm_surface.cc
@@ -23,7 +23,7 @@ GbmSurface::GbmSurface(GbmSurfaceFactory* surface_factory,
texture = 0;
}
-unsigned int GbmSurface::GetBackingFrameBufferObject() {
+unsigned int GbmSurface::GetBackingFramebufferObject() {
return fbo_;
}
@@ -115,7 +115,7 @@ GbmSurface::~GbmSurface() {
}
void GbmSurface::BindFramebuffer() {
- gl::ScopedFrameBufferBinder fb(fbo_);
+ gl::ScopedFramebufferBinder fb(fbo_);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
textures_[current_surface_], 0);
}
« no previous file with comments | « ui/ozone/platform/drm/gpu/gbm_surface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698