Lines Matching refs:dstTexture
367 wgpu::ImageCopyTexture dstTexture; in uploadTextureData() local
368 dstTexture.texture = texture; in uploadTextureData()
369 dstTexture.mipLevel = i; in uploadTextureData()
370 dstTexture.origin = {x, y, 0}; in uploadTextureData()
373 this->getCopyEncoder().CopyBufferToTexture(&srcBuffer, &dstTexture, ©Size); in uploadTextureData()
423 wgpu::ImageCopyTexture dstTexture; in onClearBackendTexture() local
424 dstTexture.texture = info.fTexture; in onClearBackendTexture()
425 dstTexture.mipLevel = i; in onClearBackendTexture()
426 dstTexture.origin = {0, 0, 0}; in onClearBackendTexture()
428 copyEncoder.CopyBufferToTexture(&srcBuffer, &dstTexture, ©Size); in onClearBackendTexture()
584 wgpu::Texture dstTexture = get_dawn_texture_from_surface(dst); in onCopySurface() local
585 if (!srcTexture || !dstTexture) { in onCopySurface()
594 dstTextureView.texture = dstTexture; in onCopySurface()
682 wgpu::Texture dstTexture = fDevice.CreateTexture(&texDesc); in onRegenerateMipMapLevels() local
748 wgpu::TextureView dstView = dstTexture.CreateView(&dstViewDesc); in onRegenerateMipMapLevels()
776 srcCopyView.texture = dstTexture; in onRegenerateMipMapLevels()