Skip to content

Commit

Permalink
Fix order of arguments to glPolygonOffset. (#3783)
Browse files Browse the repository at this point in the history
  • Loading branch information
komadori authored May 18, 2023
1 parent 3563849 commit c91a660
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ Bottom level categories:

### Bug Fixes

- Fix order of arguments to glPolygonOffset by @komadori in [#3783](https://github.com/gfx-rs/wgpu/pull/3783).

#### General

- Fix crash on dropping `wgpu::CommandBuffer`. By @wumpf in [#3726](https://github.com/gfx-rs/wgpu/pull/3726).
Expand Down
2 changes: 1 addition & 1 deletion wgpu-hal/src/gles/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ impl super::Queue {
C::SetDepthBias(bias) => {
if bias.is_enabled() {
unsafe { gl.enable(glow::POLYGON_OFFSET_FILL) };
unsafe { gl.polygon_offset(bias.constant as f32, bias.slope_scale) };
unsafe { gl.polygon_offset(bias.slope_scale, bias.constant as f32) };
} else {
unsafe { gl.disable(glow::POLYGON_OFFSET_FILL) };
}
Expand Down

0 comments on commit c91a660

Please sign in to comment.