Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 1.57 KB

CHANGELOG.md

File metadata and controls

23 lines (18 loc) · 1.57 KB

Changelog for egui-wgpu

All notable changes to the egui-wgpu integration will be noted in this file.

Unreleased

  • Renamed RenderPass to Renderer.
  • Renamed RenderPass::execute to RenderPass::render.
  • Renamed RenderPass::execute_with_renderpass to Renderer::render (replacing existing Renderer::render)
  • Reexported Renderer.
  • Renderer no longer handles pass creation and depth buffer creation (#2136)
  • PrepareCallback now passes wgpu::CommandEncoder (#2136)
  • PrepareCallback can now returns wgpu::CommandBuffer that are bundled into a single wgpu::Queue::submit call (#2230)
  • Only a single vertex & index buffer is now created and resized when necessary (previously, vertex/index buffers were allocated for every mesh) (#2148).
  • Renderer::update_texture no longer creates a new wgpu::Sampler with every new texture (#2198)
  • Painter's instance/device/adapter/surface creation is now configurable via WgpuConfiguration (#2207)

0.19.0 - 2022-08-20

  • Enables deferred render + surface state initialization for Android (#1634).
  • Make RenderPass Send and Sync (#1883).

0.18.0 - 2022-05-15

First published version since moving the code into the egui repository from https://github.com/LU15W1R7H/eww.