diff --git a/src/platform/graphics/null/null-graphics-device.js b/src/platform/graphics/null/null-graphics-device.js index 0669c2b2ada..7905a13fc63 100644 --- a/src/platform/graphics/null/null-graphics-device.js +++ b/src/platform/graphics/null/null-graphics-device.js @@ -74,6 +74,15 @@ class NullGraphicsDevice extends GraphicsDevice { super.frameEnd(); } + updateBegin() { + } + + updateEnd() { + } + + readPixels(x, y, w, h, pixels) { + } + createVertexBufferImpl(vertexBuffer, format) { return new NullVertexBuffer(vertexBuffer, format); }