Add some missing #includes.

MSC needs <string.h> for memcpy().

Change-Id: I1987ae29af32abe3d9e23a0a3cfd373aca22095d
Reviewed-on: https://dawn-review.googlesource.com/c/2820
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Stephen White <senorblanco@chromium.org>
This commit is contained in:
Stephen White 2018-12-03 14:28:04 +00:00 committed by Commit Bot service account
parent 85df07a1e5
commit d758e32610
2 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,8 @@
#include "dawn_native/CommandBuffer.h"
#include "dawn_native/Commands.h"
#include <string.h>
namespace dawn_native {
ProgrammablePassEncoder::ProgrammablePassEncoder(DeviceBase* device,

View File

@ -19,6 +19,8 @@
#include "dawn_native/Commands.h"
#include "dawn_native/RenderPipeline.h"
#include <string.h>
namespace dawn_native {
RenderPassEncoderBase::RenderPassEncoderBase(DeviceBase* device,