Skip to content

Commit

Permalink
Fix multisampled raw download
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Oct 21, 2024
1 parent 918c62c commit 9999ea8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"rollForward": false
},
"aardpack": {
"version": "1.0.24",
"version": "2.0.3",
"commands": [
"aardpack"
],
Expand Down
2 changes: 2 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- Fixed multisampled raw download

### 5.5.2
- updated Adaptify.Core to 1.3.0 (using local, new style adaptify)

Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ framework: auto-detect

storage: none

nuget Aardvark.Build ~> 1.0.24
nuget Aardvark.Build ~> 2.0.3

nuget FSharp.Core >= 8.0.0 lowest_matching: true
nuget Microsoft.NETFramework.ReferenceAssemblies >= 1.0.0 lowest_matching: true
Expand Down
2 changes: 1 addition & 1 deletion paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ NUGET
Aardvark.Base.TypeProviders (4.5.15)
FSharp.Core (>= 3.1.2.5) - restriction: || (== net471) (&& (== net8.0) (>= net45)) (&& (== net8.0-windows10.0.17763.0) (>= net45)) (&& (== netstandard2.0) (>= net45))
FSharp.Core (>= 4.2.3) - restriction: || (&& (== net471) (< net45)) (== net8.0) (== net8.0-windows10.0.17763.0) (== netstandard2.0)
Aardvark.Build (1.0.25)
Aardvark.Build (2.0.3)
Aardvark.FontProvider (0.1)
Aardvark.Base.Fonts (>= 5.3)
FSharp.Core (>= 8.0.100)
Expand Down
8 changes: 4 additions & 4 deletions src/Aardvark.Service/RenderTasks.fs
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,8 @@ module Internals =
GL.BindFramebuffer(FramebufferTarget.DrawFramebuffer, temp)

GL.BlitFramebuffer(
0, 0, size.X - 1, size.Y - 1,
0, 0, size.X - 1, size.Y - 1,
0, 0, size.X, size.Y,
0, 0, size.X, size.Y,
ClearBufferMask.ColorBufferBit,
BlitFramebufferFilter.Nearest
)
Expand Down Expand Up @@ -699,8 +699,8 @@ module Internals =
GL.FramebufferRenderbuffer(FramebufferTarget.DrawFramebuffer, FramebufferAttachment.ColorAttachment0, RenderbufferTarget.Renderbuffer, rbo)

GL.BlitFramebuffer(
0, 0, size.X - 1, size.Y - 1,
0, 0, size.X - 1, size.Y - 1,
0, 0, size.X, size.Y,
0, 0, size.X, size.Y,
ClearBufferMask.ColorBufferBit,
BlitFramebufferFilter.Nearest
)
Expand Down

0 comments on commit 9999ea8

Please sign in to comment.