Fix missing include for std::unique_ptr in RingBuffer.h

Bug: dawn:96
Change-Id: If815bb1811eff5467039df6fdf939ef068abdb15
Reviewed-on: https://dawn-review.googlesource.com/c/4300
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Raul Tambre 2019-01-30 16:27:28 +00:00 committed by Commit Bot service account
parent 4531bd2477
commit 2427666df1
2 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,6 @@
#include "dawn_native/Forward.h" #include "dawn_native/Forward.h"
#include "dawn_native/RingBuffer.h" #include "dawn_native/RingBuffer.h"
#include <memory>
// DynamicUploader is the front-end implementation used to manage multiple ring buffers for upload // DynamicUploader is the front-end implementation used to manage multiple ring buffers for upload
// usage. // usage.
namespace dawn_native { namespace dawn_native {

View File

@ -18,6 +18,8 @@
#include "common/SerialQueue.h" #include "common/SerialQueue.h"
#include "dawn_native/StagingBuffer.h" #include "dawn_native/StagingBuffer.h"
#include <memory>
// RingBuffer is the front-end implementation used to manage a ring buffer in GPU memory. // RingBuffer is the front-end implementation used to manage a ring buffer in GPU memory.
namespace dawn_native { namespace dawn_native {