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

Unified Diff: ui/ozone/platform/drm/gpu/gbm_buffer.h

Issue 1834643002: ozone: Avoid using gbm_bo_import until import and destroy can be synchronized. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temporary removal of gbm_bo_import Created 4 years, 9 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 | « no previous file | ui/ozone/platform/drm/gpu/gbm_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/gbm_buffer.h
diff --git a/ui/ozone/platform/drm/gpu/gbm_buffer.h b/ui/ozone/platform/drm/gpu/gbm_buffer.h
index 8f011100e673df3e645980abce640170048f9d3a..b62ccfcc1d807662a72077ecc5896f17789e0bc4 100644
--- a/ui/ozone/platform/drm/gpu/gbm_buffer.h
+++ b/ui/ozone/platform/drm/gpu/gbm_buffer.h
@@ -42,12 +42,14 @@ class GbmBuffer : public GbmBufferBase {
gbm_bo* bo,
gfx::BufferFormat format,
gfx::BufferUsage usage,
- base::ScopedFD fd);
+ base::ScopedFD fd,
+ int stride);
~GbmBuffer() override;
gfx::BufferFormat format_;
gfx::BufferUsage usage_;
base::ScopedFD fd_;
+ int stride_;
DISALLOW_COPY_AND_ASSIGN(GbmBuffer);
};
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gpu/gbm_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698