FailedChanges

Summary

  1. Basic ODS support (details)
  2. Replace switch statement in ods.vert with if/else chain to support certain Intel Graphics Drivers (details)
  3. Fix back image of ODS projection (details)
  4. Fix ODS distortion math and reduce IPD to normal 0.14 (details)
  5. Add lighting and damage indication to ODS rendering (details)
  6. Only tick once per ODS frame instead of twice (details)
  7. Fix rendering GUI when rendering ODS frames (details)
  8. Add stereo metadata injection in ODS videos (details)
  9. Swap left and right image (details)
  10. Add fog to ODS rendering (details)
  11. Add GuiDropdownMenu (details)
  12. Fix NPEs in AbstractGuiTextField when no change listener is set (details)
  13. Add GuiFileChooser to new GUI API (details)
  14. Allow removal of texture in GuiImage (details)
  15. Add direct upload to YouTube support (details)
Commit f7cbe8d1bdc67a1ed1a31f07cf765a25ac469a12 by Jonas
Basic ODS support
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/CubicOpenGlFrameCapturer.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/mixin/MixinEntityRenderer.java
The file was addedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/ODSFrameCapturer.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/VideoRenderer.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/WorldRenderer.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/gui/GuiRenderSettings.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/mixin/MixinRenderManager.java
The file was addedsrc/main/resources/assets/replaymod/shader/ods.vert
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/rendering/Pipelines.java
The file was addedsrc/main/java/eu/crushedpixel/replaymod/video/processor/ODSToRGBProcessor.java
The file was addedsrc/main/java/eu/crushedpixel/replaymod/video/shader/Program.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/ReplayMod.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/mixin/MixinEffectRenderer.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/CubicPboOpenGlFrameCapturer.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/EntityRendererHandler.java
The file was addedsrc/main/java/eu/crushedpixel/replaymod/video/frame/ODSOpenGlFrame.java
The file was addedsrc/main/resources/assets/replaymod/shader/ods.frag
Commit 9d602143998f6c1dde06f27577ef1b1149c9dcd9 by Jonas
Replace switch statement in ods.vert with if/else chain to support certain Intel Graphics Drivers
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.vert
Commit faa946b6790d835e7dc07b0964ca1e31994e0f82 by Jonas
Fix back image of ODS projection
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.vert
Commit 6ce3ffad3740911694bb3f87c185fea074823bcf by Jonas
Fix ODS distortion math and reduce IPD to normal 0.14
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.vert
Commit 364dba7f80066bd811e3a46e0ba81f380991c37f by Jonas
Add lighting and damage indication to ODS rendering
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.frag
The file was modifiedsrc/main/resources/META-INF/replaymod_at.cfg
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.vert
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/ODSFrameCapturer.java
Commit a3d86aced68f36bcb0368abda789c38f7b9b7842 by Jonas
Only tick once per ODS frame instead of twice
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/ODSFrameCapturer.java
Commit aab63523c9939efab8118eda9d6d8fb4b599d8f5 by Jonas
Fix rendering GUI when rendering ODS frames
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/ODSFrameCapturer.java
Commit 9fb1f540f1833ad946c3bb0968a571260f0ec9b0 by Jonas
Add stereo metadata injection in ODS videos
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/metadata/MetadataInjector.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/VideoRenderer.java
Commit 28dee49a60dd6ef94dec8324d866f998163c72d8 by Jonas
Swap left and right image
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.vert
Commit 6b12b54acf7903ee30193d4ecc82199ef4dfd82e by Jonas
Add fog to ODS rendering
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.frag
The file was modifiedsrc/main/resources/META-INF/replaymod_at.cfg
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/capturer/ODSFrameCapturer.java
The file was modifiedsrc/main/resources/assets/replaymod/shader/ods.vert
Commit 490830a10402ab898de987957dd757a196c7826e by Jonas
Add GuiDropdownMenu
The file was addedsrc/main/java/de/johni0702/minecraft/gui/element/advanced/IGuiDropdownMenu.java
The file was addedsrc/main/java/de/johni0702/minecraft/gui/element/advanced/AbstractGuiDropdownMenu.java
The file was addedsrc/main/java/de/johni0702/minecraft/gui/element/advanced/GuiDropdownMenu.java
Commit 566fb79d2a302f146130f631bcb0e7152fd7e9ff by Jonas
Fix NPEs in AbstractGuiTextField when no change listener is set
The file was modifiedsrc/main/java/de/johni0702/minecraft/gui/element/AbstractGuiTextField.java
Commit 3cacf86d610c946027c88e909ee2f762f832894d by Jonas
Add GuiFileChooser to new GUI API
The file was addedsrc/main/java/de/johni0702/minecraft/gui/element/advanced/AbstractGuiFileChooser.java
The file was addedsrc/main/java/de/johni0702/minecraft/gui/element/advanced/GuiFileChooser.java
The file was addedsrc/main/java/de/johni0702/minecraft/gui/element/advanced/IGuiFileChooser.java
Commit e2736ea8dfe61d7f537ff1afeef0d8d798332e03 by Jonas
Allow removal of texture in GuiImage
The file was modifiedsrc/main/java/de/johni0702/minecraft/gui/element/AbstractGuiImage.java
Commit 981dddb7f63e193fde25546ea42c1faa886e7de5 by Jonas
Add direct upload to YouTube support
The file was addedsrc/main/java/eu/crushedpixel/replaymod/gui/GuiRenderingDone.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/settings/RenderOptions.java
The file was addedsrc/main/java/eu/crushedpixel/replaymod/online/youtube/VideoVisibility.java
The file was addedsrc/main/java/eu/crushedpixel/replaymod/online/youtube/YoutubeUpload.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/VideoRenderer.java
The file was modifiedsrc/main/resources/assets/replaymod/lang/en_US.lang
The file was addedsrc/main/java/eu/crushedpixel/replaymod/gui/GuiYoutubeUpload.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/video/VideoWriter.java
The file was modifiedsrc/main/java/eu/crushedpixel/replaymod/settings/ReplaySettings.java