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

Side by Side Diff: ui/ozone/platform/drm/gpu/drm_device.h

Issue 1098093005: Revert of ozone: Add sync flag for atomic commit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gpu/drm_device.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_DRM_DEVICE_H_ 5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_DRM_DEVICE_H_
6 #define UI_OZONE_PLATFORM_DRM_GPU_DRM_DEVICE_H_ 6 #define UI_OZONE_PLATFORM_DRM_GPU_DRM_DEVICE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 151
152 virtual void DestroyDumbBuffer(const SkImageInfo& info, 152 virtual void DestroyDumbBuffer(const SkImageInfo& info,
153 uint32_t handle, 153 uint32_t handle,
154 uint32_t stride, 154 uint32_t stride,
155 void* pixels); 155 void* pixels);
156 156
157 virtual bool CloseBufferHandle(uint32_t handle); 157 virtual bool CloseBufferHandle(uint32_t handle);
158 158
159 virtual bool CommitProperties(drmModePropertySet* properties, 159 virtual bool CommitProperties(drmModePropertySet* properties,
160 uint32_t flags, 160 uint32_t flags,
161 bool is_sync,
162 const PageFlipCallback& callback); 161 const PageFlipCallback& callback);
163 162
164 // Drm master related 163 // Drm master related
165 virtual bool SetMaster(); 164 virtual bool SetMaster();
166 virtual bool DropMaster(); 165 virtual bool DropMaster();
167 166
168 int get_fd() const { return file_.GetPlatformFile(); } 167 int get_fd() const { return file_.GetPlatformFile(); }
169 168
170 base::FilePath device_path() const { return device_path_; } 169 base::FilePath device_path() const { return device_path_; }
171 170
(...skipping 20 matching lines...) Expand all
192 191
193 // Watcher for |fd_| listening for page flip events. 192 // Watcher for |fd_| listening for page flip events.
194 scoped_refptr<IOWatcher> watcher_; 193 scoped_refptr<IOWatcher> watcher_;
195 194
196 DISALLOW_COPY_AND_ASSIGN(DrmDevice); 195 DISALLOW_COPY_AND_ASSIGN(DrmDevice);
197 }; 196 };
198 197
199 } // namespace ui 198 } // namespace ui
200 199
201 #endif // UI_OZONE_PLATFORM_DRM_GPU_DRM_DEVICE_H_ 200 #endif // UI_OZONE_PLATFORM_DRM_GPU_DRM_DEVICE_H_
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gpu/drm_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698