| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "gpu/gles2_conform_support/egl/display.h" | 5 #include "gpu/gles2_conform_support/egl/display.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 } | 301 } |
| 302 | 302 |
| 303 int32_t Display::CreateGpuMemoryBufferImage(size_t width, | 303 int32_t Display::CreateGpuMemoryBufferImage(size_t width, |
| 304 size_t height, | 304 size_t height, |
| 305 unsigned internalformat, | 305 unsigned internalformat, |
| 306 unsigned usage) { | 306 unsigned usage) { |
| 307 NOTIMPLEMENTED(); | 307 NOTIMPLEMENTED(); |
| 308 return -1; | 308 return -1; |
| 309 } | 309 } |
| 310 | 310 |
| 311 uint32_t Display::InsertSyncPoint() { | |
| 312 NOTIMPLEMENTED(); | |
| 313 return 0u; | |
| 314 } | |
| 315 | |
| 316 uint32_t Display::InsertFutureSyncPoint() { | |
| 317 NOTIMPLEMENTED(); | |
| 318 return 0u; | |
| 319 } | |
| 320 | |
| 321 void Display::RetireSyncPoint(uint32_t sync_point) { | |
| 322 NOTIMPLEMENTED(); | |
| 323 } | |
| 324 | |
| 325 void Display::SignalSyncPoint(uint32_t sync_point, | |
| 326 const base::Closure& callback) { | |
| 327 NOTIMPLEMENTED(); | |
| 328 } | |
| 329 | |
| 330 void Display::SignalQuery(uint32_t query, const base::Closure& callback) { | 311 void Display::SignalQuery(uint32_t query, const base::Closure& callback) { |
| 331 NOTIMPLEMENTED(); | 312 NOTIMPLEMENTED(); |
| 332 } | 313 } |
| 333 | 314 |
| 334 void Display::SetLock(base::Lock*) { | 315 void Display::SetLock(base::Lock*) { |
| 335 NOTIMPLEMENTED(); | 316 NOTIMPLEMENTED(); |
| 336 } | 317 } |
| 337 | 318 |
| 338 bool Display::IsGpuChannelLost() { | 319 bool Display::IsGpuChannelLost() { |
| 339 NOTIMPLEMENTED(); | 320 NOTIMPLEMENTED(); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 void Display::SignalSyncToken(const gpu::SyncToken& sync_token, | 356 void Display::SignalSyncToken(const gpu::SyncToken& sync_token, |
| 376 const base::Closure& callback) { | 357 const base::Closure& callback) { |
| 377 NOTIMPLEMENTED(); | 358 NOTIMPLEMENTED(); |
| 378 } | 359 } |
| 379 | 360 |
| 380 bool Display::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) { | 361 bool Display::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) { |
| 381 return false; | 362 return false; |
| 382 } | 363 } |
| 383 | 364 |
| 384 } // namespace egl | 365 } // namespace egl |
| OLD | NEW |