summaryrefslogtreecommitdiffstats
path: root/ui/ozone/platform/drm/gpu/drm_buffer.cc
Commit message (Collapse)AuthorAgeFilesLines
* [Ozone-Drm] Replace some LOGs with PLOGs and some with VLOGsdnicoara2015-03-061-1/+1
| | | | | | | | | | | | Log messages that are less critical were moved to VLOG(2) so they won't show up by default. The others have been changed to PLOGs so that we get more information on why the kernel rejected the DRM calls. BUG=none Review URL: https://codereview.chromium.org/970323002 Cr-Commit-Position: refs/heads/master@{#319410}
* [Ozone] Rename and split the DRI platform for claritydnicoara2015-03-051-0/+114
This CL does the following: - Moves the files in ui/ozone/platform/dri to ui/ozone/platform/drm since the platform name should really be DRM rather than DRI. Note, that the platform is still refered to as "dri" in GYP/GN since CrOS builds are still using the 'dri' name. - Rename all files with a "_dri*" suffix to a "drm_" prefix. Also rename all files with a "dri_" prefix to a "drm_" prefix. - Rename NativeDisplayDelegateDri to DrmDisplayDelegateManager since it is no longer dependent on the NativeDisplayDelegate interface and the new name better describes its intent. - Split the files in the platform into 2 sub-folders ("host" and "gpu"). Depending on the intended use place of the objects (Browser (host) process or GPU process) the files in the platform are split accordingly in the 2 sub-folders. BUG=none TBR=jam@chromium.org Review URL: https://codereview.chromium.org/975063002 Cr-Commit-Position: refs/heads/master@{#319320}