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:
parent
85df07a1e5
commit
d758e32610
|
@ -18,6 +18,8 @@
|
|||
#include "dawn_native/CommandBuffer.h"
|
||||
#include "dawn_native/Commands.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
namespace dawn_native {
|
||||
|
||||
ProgrammablePassEncoder::ProgrammablePassEncoder(DeviceBase* device,
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "dawn_native/Commands.h"
|
||||
#include "dawn_native/RenderPipeline.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
namespace dawn_native {
|
||||
|
||||
RenderPassEncoderBase::RenderPassEncoderBase(DeviceBase* device,
|
||||
|
|
Loading…
Reference in New Issue