HomeSort by relevance Sort by last modified time
    Searched refs:DriWrapper (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/ui/gfx/ozone/dri/
dri_wrapper.cc 15 DriWrapper::DriWrapper(const char* device_path) {
19 DriWrapper::~DriWrapper() {
24 drmModeCrtc* DriWrapper::GetCrtc(uint32_t crtc_id) {
29 void DriWrapper::FreeCrtc(drmModeCrtc* crtc) {
33 bool DriWrapper::SetCrtc(uint32_t crtc_id,
41 bool DriWrapper::SetCrtc(drmModeCrtc* crtc, uint32_t* connectors) {
53 bool DriWrapper::AddFramebuffer(const drmModeModeInfo& mode,
70 bool DriWrapper::RemoveFramebuffer(uint32_t framebuffer)
    [all...]
dri_wrapper.h 21 class GFX_EXPORT DriWrapper {
23 DriWrapper(const char* device_path);
24 virtual ~DriWrapper();
81 DISALLOW_COPY_AND_ASSIGN(DriWrapper);
dri_surface_factory.h 14 class DriWrapper;
51 virtual DriWrapper* CreateWrapper();
54 DriWrapper* drm,
63 scoped_ptr<DriWrapper> drm_;
hardware_display_controller.h 111 void SetControllerInfo(DriWrapper* drm,
163 DriWrapper* drm_;
dri_surface_factory_unittest.cc 33 // The real DriWrapper makes actual DRM calls which we can't use in unit tests.
34 class MockDriWrapper : public gfx::DriWrapper {
36 MockDriWrapper(int fd) : DriWrapper(""),
162 virtual gfx::DriWrapper* CreateWrapper() OVERRIDE {
174 gfx::DriWrapper* drm,
dri_surface_unittest.cc 31 class MockDriWrapper : public gfx::DriWrapper {
33 MockDriWrapper() : DriWrapper(""), id_(1) { fd_ = kFd; }
dri_surface_factory.cc 254 DriWrapper* DriSurfaceFactory::CreateWrapper() {
255 return new DriWrapper(kDefaultGraphicsCardPath);
259 DriWrapper* drm,
hardware_display_controller.cc 30 DriWrapper* drm,
hardware_display_controller_unittest.cc 28 // The real DriWrapper makes actual DRM calls which we can't use in unit tests.
29 class MockDriWrapper : public gfx::DriWrapper {
31 MockDriWrapper(int fd) : DriWrapper(""),

Completed in 666 milliseconds