@luma.gl/test-utils
Advanced tools
Comparing version 9.1.0-alpha.13 to 9.1.0-alpha.14
@@ -50,3 +50,3 @@ import type { DeviceProps, CanvasContextProps, TextureFormat, VertexArray, VertexArrayProps, BufferProps, ShaderProps, SamplerProps, TextureProps, ExternalTexture, ExternalTextureProps, FramebufferProps, RenderPipelineProps, ComputePipeline, ComputePipelineProps, RenderPassProps, ComputePass, ComputePassProps, CommandEncoderProps, TransformFeedbackProps, QuerySetProps } from '@luma.gl/core'; | ||
getDefaultRenderPass(): NullRenderPass; | ||
_createTexture(props: TextureProps): NullTexture; | ||
createTexture(props: TextureProps): NullTexture; | ||
createExternalTexture(props: ExternalTextureProps): ExternalTexture; | ||
@@ -53,0 +53,0 @@ createSampler(props: SamplerProps): NullSampler; |
@@ -64,3 +64,3 @@ // luma.gl | ||
} | ||
_createTexture(props) { | ||
createTexture(props) { | ||
return new NullTexture(this, props); | ||
@@ -67,0 +67,0 @@ } |
@@ -12,2 +12,3 @@ // luma.gl | ||
constructor(device, props) { | ||
props = Texture._fixProps(props); | ||
super(device, props); | ||
@@ -14,0 +15,0 @@ this.device = device; |
{ | ||
"name": "@luma.gl/test-utils", | ||
"version": "9.1.0-alpha.13", | ||
"version": "9.1.0-alpha.14", | ||
"description": "Automated WebGL testing utilities with Puppeteer and image diffing", | ||
@@ -49,3 +49,3 @@ "type": "module", | ||
}, | ||
"gitHead": "c2c641d67a5aec97467de13b0e3d8f9307ba03c2" | ||
"gitHead": "e6e014efa323dbcd7d3774e982e442b1bf2c93be" | ||
} |
@@ -103,3 +103,3 @@ // luma.gl | ||
_createTexture(props: TextureProps): NullTexture { | ||
createTexture(props: TextureProps): NullTexture { | ||
return new NullTexture(this, props); | ||
@@ -106,0 +106,0 @@ } |
@@ -31,2 +31,4 @@ // luma.gl | ||
constructor(device: NullDevice, props: TextureProps) { | ||
props = Texture._fixProps(props); | ||
super(device, props); | ||
@@ -33,0 +35,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
277010
5146