├── .github └── workflows │ ├── check-does-build-pr.yml │ ├── check-does-build.yml │ └── manual-artifact.yml ├── .gitignore ├── LICENSE.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── init.gradle ├── settings.gradle └── src └── main ├── java └── me │ └── cortex │ └── voxy │ ├── client │ ├── ClientImportManager.java │ ├── GPUSelectorWindows2.java │ ├── ICheekyClientChunkCache.java │ ├── LoadException.java │ ├── RenderStatistics.java │ ├── TimingStatistics.java │ ├── VoxyClient.java │ ├── VoxyClientInstance.java │ ├── VoxyCommands.java │ ├── VoxyDebugScreenEntry.java │ ├── compat │ │ ├── FlashbackCompat.java │ │ ├── IFlashbackMeta.java │ │ └── SemaphoreBlockImpersonator.java │ ├── config │ │ ├── ModMenuIntegration.java │ │ ├── VoxyConfig.java │ │ └── VoxyConfigScreenPages.java │ ├── core │ │ ├── AbstractRenderPipeline.java │ │ ├── IGetVoxyRenderSystem.java │ │ ├── IrisVoxyRenderPipeline.java │ │ ├── NormalRenderPipeline.java │ │ ├── RenderPipelineFactory.java │ │ ├── VoxyRenderSystem.java │ │ ├── gl │ │ │ ├── Capabilities.java │ │ │ ├── GlBuffer.java │ │ │ ├── GlDebug.java │ │ │ ├── GlFence.java │ │ │ ├── GlFramebuffer.java │ │ │ ├── GlPersistentMappedBuffer.java │ │ │ ├── GlRenderBuffer.java │ │ │ ├── GlTexture.java │ │ │ ├── GlVertexArray.java │ │ │ └── shader │ │ │ │ ├── AutoBindingShader.java │ │ │ │ ├── IShaderProcessor.java │ │ │ │ ├── PrintfInjector.java │ │ │ │ ├── Shader.java │ │ │ │ ├── ShaderLoader.java │ │ │ │ └── ShaderType.java │ │ ├── model │ │ │ ├── ColourDepthTextureData.java │ │ │ ├── IdNotYetComputedException.java │ │ │ ├── ModelBakerySubsystem.java │ │ │ ├── ModelFactory.java │ │ │ ├── ModelQueries.java │ │ │ ├── ModelStore.java │ │ │ ├── TextureUtils.java │ │ │ └── bakery │ │ │ │ ├── BakedBlockEntityModel.java │ │ │ │ ├── BudgetBufferRenderer.java │ │ │ │ ├── GlViewCapture.java │ │ │ │ ├── ModelTextureBakery.java │ │ │ │ └── ReuseVertexConsumer.java │ │ ├── rendering │ │ │ ├── ChunkBoundRenderer.java │ │ │ ├── GeometryCache.java │ │ │ ├── ISectionWatcher.java │ │ │ ├── RenderDistanceTracker.java │ │ │ ├── SectionUpdateRouter.java │ │ │ ├── Viewport.java │ │ │ ├── ViewportSelector.java │ │ │ ├── building │ │ │ │ ├── BuiltSection.java │ │ │ │ ├── RenderDataFactory.java │ │ │ │ └── RenderGenerationService.java │ │ │ ├── hierachical │ │ │ │ ├── AsyncNodeManager.java │ │ │ │ ├── DebugRenderer.java │ │ │ │ ├── HierarchicalOcclusionTraverser.java │ │ │ │ ├── NodeChildRequest.java │ │ │ │ ├── NodeCleaner.java │ │ │ │ ├── NodeManager.java │ │ │ │ ├── NodeStore.java │ │ │ │ ├── SingleNodeRequest.java │ │ │ │ └── TestNodeManager.java │ │ │ ├── post │ │ │ │ └── FullscreenBlit.java │ │ │ ├── section │ │ │ │ ├── IUsesMeshlets.java │ │ │ │ ├── backend │ │ │ │ │ ├── AbstractSectionRenderer.java │ │ │ │ │ └── mdic │ │ │ │ │ │ ├── MDICSectionRenderer.java │ │ │ │ │ │ └── MDICViewport.java │ │ │ │ └── geometry │ │ │ │ │ ├── AbstractSectionGeometryManager.java │ │ │ │ │ ├── BasicAsyncGeometryManager.java │ │ │ │ │ ├── BasicSectionGeometryData.java │ │ │ │ │ ├── BasicSectionGeometryManager.java │ │ │ │ │ ├── IGeometryData.java │ │ │ │ │ └── IGeometryManager.java │ │ │ └── util │ │ │ │ ├── BufferArena.java │ │ │ │ ├── DepthFramebuffer.java │ │ │ │ ├── DownloadStream.java │ │ │ │ ├── HiZBuffer.java │ │ │ │ ├── HiZBuffer2.java │ │ │ │ ├── LightMapHelper.java │ │ │ │ ├── PrintfDebugUtil.java │ │ │ │ ├── RawDownloadStream.java │ │ │ │ ├── SharedIndexBuffer.java │ │ │ │ └── UploadStream.java │ │ └── util │ │ │ ├── ExpandingObjectAllocationList.java │ │ │ ├── GPUTiming.java │ │ │ ├── IrisUtil.java │ │ │ ├── RingTracker.java │ │ │ ├── RingUtil.java │ │ │ └── ScanMesher2D.java │ ├── iris │ │ ├── IGetIrisVoxyPipelineData.java │ │ ├── IGetVoxyPatchData.java │ │ ├── IrisShaderPatch.java │ │ ├── IrisVoxyRenderPipelineData.java │ │ ├── ShaderLoadError.java │ │ ├── VoxySamplers.java │ │ └── VoxyUniforms.java │ ├── mixin │ │ ├── flashback │ │ │ ├── MixinFlashbackMeta.java │ │ │ └── MixinFlashbackRecorder.java │ │ ├── iris │ │ │ ├── CustomUniformsAccessor.java │ │ │ ├── IrisRenderingPipelineAccessor.java │ │ │ ├── MixinIris.java │ │ │ ├── MixinIrisRenderingPipeline.java │ │ │ ├── MixinIrisSamplers.java │ │ │ ├── MixinLevelRenderer.java │ │ │ ├── MixinMatrixUniforms.java │ │ │ ├── MixinPackRenderTargetDirectives.java │ │ │ ├── MixinProgramSet.java │ │ │ ├── MixinShaderPackSourceNames.java │ │ │ └── MixinStandardMacros.java │ │ ├── minecraft │ │ │ ├── MixinBlockableEventLoop.java │ │ │ ├── MixinClientChunkCache.java │ │ │ ├── MixinClientCommonPacketListenerImpl.java │ │ │ ├── MixinClientLevel.java │ │ │ ├── MixinClientPacketListener.java │ │ │ ├── MixinFogRenderer.java │ │ │ ├── MixinGlDebug.java │ │ │ ├── MixinLayerLightSectionStorage.java │ │ │ ├── MixinLevelRenderer.java │ │ │ ├── MixinMinecraft.java │ │ │ ├── MixinRenderSystem.java │ │ │ └── MixinWindow.java │ │ ├── nvidium │ │ │ └── MixinRenderPipeline.java │ │ └── sodium │ │ │ ├── AccessorChunkTracker.java │ │ │ ├── AccessorSodiumWorldRenderer.java │ │ │ ├── MixinChunkJobQueue.java │ │ │ ├── MixinDefaultChunkRenderer.java │ │ │ ├── MixinRenderSectionManager.java │ │ │ ├── MixinSodiumOptionsGUI.java │ │ │ └── MixinSodiumWorldRenderer.java │ └── taskbar │ │ ├── Taskbar.java │ │ └── WindowsTaskbar.java │ ├── common │ ├── Logger.java │ ├── config │ │ ├── ConfigBuildCtx.java │ │ ├── IMappingStorage.java │ │ ├── Serialization.java │ │ ├── compressors │ │ │ ├── CompressorConfig.java │ │ │ ├── LZ4Compressor.java │ │ │ ├── LZMACompressor.java │ │ │ ├── StorageCompressor.java │ │ │ └── ZSTDCompressor.java │ │ ├── section │ │ │ ├── SectionSerializationStorage.java │ │ │ ├── SectionStorage.java │ │ │ └── SectionStorageConfig.java │ │ └── storage │ │ │ ├── StorageBackend.java │ │ │ ├── StorageConfig.java │ │ │ ├── inmemory │ │ │ └── MemoryStorageBackend.java │ │ │ ├── lmdb │ │ │ ├── Cursor.java │ │ │ ├── LMDBInterface.java │ │ │ ├── LMDBStorageBackend.java │ │ │ ├── TransactionCallback.java │ │ │ ├── TransactionWrappedCallback.java │ │ │ └── TransactionWrapper.java │ │ │ ├── other │ │ │ ├── BasicPathInsertionConfig.java │ │ │ ├── CompressionStorageAdaptor.java │ │ │ ├── ConditionalStorageBackendConfig.java │ │ │ ├── DelegateStorageConfig.java │ │ │ ├── DelegatingStorageAdaptor.java │ │ │ ├── FragmentedStorageBackendAdaptor.java │ │ │ └── ReadonlyCachingLayer.java │ │ │ ├── redis │ │ │ └── RedisStorageBackend.java │ │ │ └── rocksdb │ │ │ └── RocksDBStorageBackend.java │ ├── thread │ │ ├── MultiThreadPrioritySemaphore.java │ │ ├── PerThreadContextExecutor.java │ │ ├── Service.java │ │ ├── ServiceManager.java │ │ ├── UnifiedServiceThreadPool.java │ │ └── WeakConcurrentCleanableHashMap.java │ ├── util │ │ ├── AllocationArena.java │ │ ├── ByteBufferBackedInputStream.java │ │ ├── GlobalCleaner.java │ │ ├── HierarchicalBitSet.java │ │ ├── MemoryBuffer.java │ │ ├── MessageQueue.java │ │ ├── MultiGson.java │ │ ├── Pair.java │ │ ├── ThreadLocalMemoryBuffer.java │ │ ├── ThreadUtils.java │ │ ├── TrackedObject.java │ │ ├── UnsafeUtil.java │ │ └── cpu │ │ │ └── CpuLayout.java │ ├── voxelization │ │ ├── ILightingSupplier.java │ │ ├── VoxelizedSection.java │ │ └── WorldConversionFactory.java │ └── world │ │ ├── ActiveSectionTracker.java │ │ ├── LoadedPositionTracker.java │ │ ├── SaveLoadSystem.java │ │ ├── SaveLoadSystem2.java │ │ ├── SaveLoadSystem3.java │ │ ├── WorldEngine.java │ │ ├── WorldSection.java │ │ ├── WorldUpdater.java │ │ ├── other │ │ ├── Mapper.java │ │ └── Mipper.java │ │ └── service │ │ ├── SectionSavingService.java │ │ └── VoxelIngestService.java │ └── commonImpl │ ├── IWorldGetIdentifier.java │ ├── ImportManager.java │ ├── VoxyCommon.java │ ├── VoxyInstance.java │ ├── WorldIdentifier.java │ ├── configuration │ └── VoxyConfigStore.java │ ├── importers │ ├── DHImporter.java │ ├── IDataImporter.java │ └── WorldImporter.java │ └── mixin │ ├── chunky │ └── MixinFabricWorld.java │ └── minecraft │ └── MixinWorld.java └── resources ├── assets └── voxy │ ├── icon.png │ ├── lang │ └── en_us.json │ └── shaders │ ├── bakery │ ├── buffercopy.comp │ ├── bufferreorder.comp │ ├── position_tex.fsh │ └── position_tex.vsh │ ├── chunkoutline │ ├── outline.fsh │ └── outline.vsh │ ├── hiz │ ├── blit.fsh │ ├── blit.vsh │ └── hiz.comp │ ├── lod │ ├── block_model.glsl │ ├── frustum.glsl │ ├── gl46 │ │ ├── bindings.glsl │ │ ├── buildtranslucents.comp │ │ ├── cmdgen.comp │ │ ├── cull │ │ │ ├── raster.frag │ │ │ └── raster.vert │ │ ├── prep.comp │ │ ├── quads.frag │ │ ├── quads3.vert │ │ └── test │ │ │ ├── raw.frag │ │ │ └── raw.vert │ ├── hierarchical │ │ ├── cleaner │ │ │ ├── batch_visibility_set.comp │ │ │ ├── result_transformer.comp │ │ │ └── sort_visibility.comp │ │ ├── debug │ │ │ ├── frag.frag │ │ │ ├── node_outline.vert │ │ │ └── setup.comp │ │ ├── node.glsl │ │ ├── queue.glsl │ │ ├── screenspace.glsl │ │ └── traversal_dev.comp │ ├── quad_format.glsl │ ├── quad_util.glsl │ └── section.glsl │ ├── post │ ├── blit_texture_cutout.frag │ ├── blit_texture_depth_cutout.frag │ ├── depth0.frag │ ├── depth_copy.frag │ ├── fullscreen.vert │ ├── fullscreen2.vert │ ├── noop.frag │ └── ssao.comp │ └── util │ ├── memcpy.comp │ ├── prefixsum │ ├── inital3.comp │ └── simple.comp │ ├── scatter.comp │ └── set.comp ├── client.voxy.mixins.json ├── common.voxy.mixins.json ├── fabric.mod.json └── voxy.accesswidener /.github/workflows/check-does-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/.github/workflows/check-does-build-pr.yml -------------------------------------------------------------------------------- /.github/workflows/check-does-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/.github/workflows/check-does-build.yml -------------------------------------------------------------------------------- /.github/workflows/manual-artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/.github/workflows/manual-artifact.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/gradlew.bat -------------------------------------------------------------------------------- /init.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/init.gradle -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/ClientImportManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/ClientImportManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/GPUSelectorWindows2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/GPUSelectorWindows2.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/ICheekyClientChunkCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/ICheekyClientChunkCache.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/LoadException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/LoadException.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/RenderStatistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/RenderStatistics.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/TimingStatistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/TimingStatistics.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/VoxyClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/VoxyClient.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/VoxyClientInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/VoxyClientInstance.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/VoxyCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/VoxyCommands.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/VoxyDebugScreenEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/VoxyDebugScreenEntry.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/compat/FlashbackCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/compat/FlashbackCompat.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/compat/IFlashbackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/compat/IFlashbackMeta.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/compat/SemaphoreBlockImpersonator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/compat/SemaphoreBlockImpersonator.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/config/ModMenuIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/config/ModMenuIntegration.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/config/VoxyConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/config/VoxyConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/config/VoxyConfigScreenPages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/config/VoxyConfigScreenPages.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/AbstractRenderPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/AbstractRenderPipeline.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/IGetVoxyRenderSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/IGetVoxyRenderSystem.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/IrisVoxyRenderPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/IrisVoxyRenderPipeline.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/NormalRenderPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/NormalRenderPipeline.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/RenderPipelineFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/RenderPipelineFactory.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/Capabilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/Capabilities.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlDebug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlDebug.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlFence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlFence.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlFramebuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlFramebuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlPersistentMappedBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlPersistentMappedBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlRenderBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlRenderBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlTexture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlTexture.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/GlVertexArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/GlVertexArray.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/shader/AutoBindingShader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/shader/AutoBindingShader.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/shader/IShaderProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/shader/IShaderProcessor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/shader/PrintfInjector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/shader/PrintfInjector.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/shader/Shader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/shader/Shader.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/shader/ShaderLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/shader/ShaderLoader.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/gl/shader/ShaderType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/gl/shader/ShaderType.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/ColourDepthTextureData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/ColourDepthTextureData.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/IdNotYetComputedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/IdNotYetComputedException.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/ModelBakerySubsystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/ModelBakerySubsystem.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/ModelFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/ModelFactory.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/ModelQueries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/ModelQueries.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/ModelStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/ModelStore.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/TextureUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/TextureUtils.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/bakery/BakedBlockEntityModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/bakery/BakedBlockEntityModel.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/bakery/BudgetBufferRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/bakery/BudgetBufferRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/bakery/GlViewCapture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/bakery/GlViewCapture.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/bakery/ModelTextureBakery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/bakery/ModelTextureBakery.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/model/bakery/ReuseVertexConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/model/bakery/ReuseVertexConsumer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/ChunkBoundRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/ChunkBoundRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/GeometryCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/GeometryCache.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/ISectionWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/ISectionWatcher.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/RenderDistanceTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/RenderDistanceTracker.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/SectionUpdateRouter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/SectionUpdateRouter.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/Viewport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/Viewport.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/ViewportSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/ViewportSelector.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/building/BuiltSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/building/BuiltSection.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/building/RenderDataFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/building/RenderDataFactory.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/building/RenderGenerationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/building/RenderGenerationService.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/AsyncNodeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/AsyncNodeManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/DebugRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/DebugRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/HierarchicalOcclusionTraverser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/HierarchicalOcclusionTraverser.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeChildRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeChildRequest.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeCleaner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeCleaner.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/NodeStore.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/SingleNodeRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/SingleNodeRequest.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/hierachical/TestNodeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/TestNodeManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/post/FullscreenBlit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/post/FullscreenBlit.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/IUsesMeshlets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/IUsesMeshlets.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/backend/AbstractSectionRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/backend/AbstractSectionRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/backend/mdic/MDICSectionRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/backend/mdic/MDICSectionRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/backend/mdic/MDICViewport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/backend/mdic/MDICViewport.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/AbstractSectionGeometryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/AbstractSectionGeometryManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicAsyncGeometryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicAsyncGeometryManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicSectionGeometryData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicSectionGeometryData.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicSectionGeometryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicSectionGeometryManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/IGeometryData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/IGeometryData.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/IGeometryManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/IGeometryManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/BufferArena.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/BufferArena.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/DepthFramebuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/DepthFramebuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/DownloadStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/DownloadStream.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/HiZBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/HiZBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/HiZBuffer2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/HiZBuffer2.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/LightMapHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/LightMapHelper.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/PrintfDebugUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/PrintfDebugUtil.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/RawDownloadStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/RawDownloadStream.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/SharedIndexBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/SharedIndexBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/rendering/util/UploadStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/rendering/util/UploadStream.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/util/ExpandingObjectAllocationList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/util/ExpandingObjectAllocationList.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/util/GPUTiming.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/util/GPUTiming.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/util/IrisUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/util/IrisUtil.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/util/RingTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/util/RingTracker.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/util/RingUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/util/RingUtil.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/core/util/ScanMesher2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/core/util/ScanMesher2D.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/IGetIrisVoxyPipelineData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/IGetIrisVoxyPipelineData.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/IGetVoxyPatchData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/IGetVoxyPatchData.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/IrisShaderPatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/IrisShaderPatch.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/IrisVoxyRenderPipelineData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/IrisVoxyRenderPipelineData.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/ShaderLoadError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/ShaderLoadError.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/VoxySamplers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/VoxySamplers.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/iris/VoxyUniforms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/iris/VoxyUniforms.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/flashback/MixinFlashbackMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/flashback/MixinFlashbackMeta.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/flashback/MixinFlashbackRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/flashback/MixinFlashbackRecorder.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/CustomUniformsAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/CustomUniformsAccessor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/IrisRenderingPipelineAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/IrisRenderingPipelineAccessor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinIris.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinIris.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinIrisRenderingPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinIrisRenderingPipeline.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinIrisSamplers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinIrisSamplers.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinLevelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinLevelRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinMatrixUniforms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinMatrixUniforms.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinPackRenderTargetDirectives.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinPackRenderTargetDirectives.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinProgramSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinProgramSet.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinShaderPackSourceNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinShaderPackSourceNames.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/iris/MixinStandardMacros.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/iris/MixinStandardMacros.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinBlockableEventLoop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinBlockableEventLoop.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientChunkCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientChunkCache.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientCommonPacketListenerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientCommonPacketListenerImpl.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientLevel.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientPacketListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinClientPacketListener.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinFogRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinFogRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinGlDebug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinGlDebug.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinLayerLightSectionStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinLayerLightSectionStorage.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinLevelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinLevelRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinMinecraft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinMinecraft.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinRenderSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinRenderSystem.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/minecraft/MixinWindow.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/nvidium/MixinRenderPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/nvidium/MixinRenderPipeline.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/AccessorChunkTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/AccessorChunkTracker.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/AccessorSodiumWorldRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/AccessorSodiumWorldRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/MixinChunkJobQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/MixinChunkJobQueue.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/MixinDefaultChunkRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/MixinDefaultChunkRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/MixinRenderSectionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/MixinRenderSectionManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/MixinSodiumOptionsGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/MixinSodiumOptionsGUI.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/mixin/sodium/MixinSodiumWorldRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/mixin/sodium/MixinSodiumWorldRenderer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/taskbar/Taskbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/taskbar/Taskbar.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/client/taskbar/WindowsTaskbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/client/taskbar/WindowsTaskbar.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/Logger.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/ConfigBuildCtx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/ConfigBuildCtx.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/IMappingStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/IMappingStorage.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/Serialization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/Serialization.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/compressors/CompressorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/compressors/CompressorConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/compressors/LZ4Compressor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/compressors/LZ4Compressor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/compressors/LZMACompressor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/compressors/LZMACompressor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/compressors/StorageCompressor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/compressors/StorageCompressor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/compressors/ZSTDCompressor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/compressors/ZSTDCompressor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/section/SectionSerializationStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/section/SectionSerializationStorage.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/section/SectionStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/section/SectionStorage.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/section/SectionStorageConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/section/SectionStorageConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/StorageBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/StorageBackend.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/StorageConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/StorageConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/inmemory/MemoryStorageBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/inmemory/MemoryStorageBackend.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/lmdb/Cursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/lmdb/Cursor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/lmdb/LMDBInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/lmdb/LMDBInterface.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/lmdb/LMDBStorageBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/lmdb/LMDBStorageBackend.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/lmdb/TransactionCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/lmdb/TransactionCallback.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/lmdb/TransactionWrappedCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/lmdb/TransactionWrappedCallback.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/lmdb/TransactionWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/lmdb/TransactionWrapper.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/BasicPathInsertionConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/BasicPathInsertionConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/CompressionStorageAdaptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/CompressionStorageAdaptor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/ConditionalStorageBackendConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/ConditionalStorageBackendConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/DelegateStorageConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/DelegateStorageConfig.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/DelegatingStorageAdaptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/DelegatingStorageAdaptor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/FragmentedStorageBackendAdaptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/FragmentedStorageBackendAdaptor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/other/ReadonlyCachingLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/other/ReadonlyCachingLayer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/redis/RedisStorageBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/redis/RedisStorageBackend.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/config/storage/rocksdb/RocksDBStorageBackend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/config/storage/rocksdb/RocksDBStorageBackend.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/thread/MultiThreadPrioritySemaphore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/thread/MultiThreadPrioritySemaphore.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/thread/PerThreadContextExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/thread/PerThreadContextExecutor.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/thread/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/thread/Service.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/thread/ServiceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/thread/ServiceManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/thread/UnifiedServiceThreadPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/thread/UnifiedServiceThreadPool.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/thread/WeakConcurrentCleanableHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/thread/WeakConcurrentCleanableHashMap.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/AllocationArena.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/AllocationArena.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/ByteBufferBackedInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/ByteBufferBackedInputStream.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/GlobalCleaner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/GlobalCleaner.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/HierarchicalBitSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/HierarchicalBitSet.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/MemoryBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/MemoryBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/MessageQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/MessageQueue.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/MultiGson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/MultiGson.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/Pair.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/ThreadLocalMemoryBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/ThreadLocalMemoryBuffer.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/ThreadUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/ThreadUtils.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/TrackedObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/TrackedObject.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/UnsafeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/UnsafeUtil.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/util/cpu/CpuLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/util/cpu/CpuLayout.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/voxelization/ILightingSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/voxelization/ILightingSupplier.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/voxelization/VoxelizedSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/voxelization/VoxelizedSection.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/voxelization/WorldConversionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/voxelization/WorldConversionFactory.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/ActiveSectionTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/ActiveSectionTracker.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/LoadedPositionTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/LoadedPositionTracker.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/SaveLoadSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/SaveLoadSystem.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/SaveLoadSystem2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/SaveLoadSystem2.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/SaveLoadSystem3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/SaveLoadSystem3.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/WorldEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/WorldEngine.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/WorldSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/WorldSection.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/WorldUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/WorldUpdater.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/other/Mapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/other/Mapper.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/other/Mipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/other/Mipper.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/service/SectionSavingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/service/SectionSavingService.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/common/world/service/VoxelIngestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/common/world/service/VoxelIngestService.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/IWorldGetIdentifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/IWorldGetIdentifier.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/ImportManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/ImportManager.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/VoxyCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/VoxyCommon.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/VoxyInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/VoxyInstance.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/WorldIdentifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/WorldIdentifier.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/configuration/VoxyConfigStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/configuration/VoxyConfigStore.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/importers/DHImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/importers/DHImporter.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/importers/IDataImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/importers/IDataImporter.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/importers/WorldImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/importers/WorldImporter.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/mixin/chunky/MixinFabricWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/mixin/chunky/MixinFabricWorld.java -------------------------------------------------------------------------------- /src/main/java/me/cortex/voxy/commonImpl/mixin/minecraft/MixinWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/java/me/cortex/voxy/commonImpl/mixin/minecraft/MixinWorld.java -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/bakery/buffercopy.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/bakery/buffercopy.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/bakery/bufferreorder.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/bakery/bufferreorder.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/bakery/position_tex.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/bakery/position_tex.fsh -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/bakery/position_tex.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/bakery/position_tex.vsh -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/chunkoutline/outline.fsh: -------------------------------------------------------------------------------- 1 | #version 460 core 2 | layout(early_fragment_tests) in; 3 | 4 | void main() {} -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/chunkoutline/outline.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/chunkoutline/outline.vsh -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/hiz/blit.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/hiz/blit.fsh -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/hiz/blit.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/hiz/blit.vsh -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/hiz/hiz.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/hiz/hiz.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/block_model.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/block_model.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/frustum.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/frustum.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/bindings.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/bindings.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/buildtranslucents.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/buildtranslucents.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/cmdgen.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/cmdgen.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/cull/raster.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/cull/raster.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/cull/raster.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/cull/raster.vert -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/prep.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/prep.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/quads.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/quads.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/quads3.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/quads3.vert -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/test/raw.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/test/raw.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/gl46/test/raw.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/gl46/test/raw.vert -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/cleaner/batch_visibility_set.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/cleaner/batch_visibility_set.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/cleaner/result_transformer.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/cleaner/result_transformer.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/cleaner/sort_visibility.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/cleaner/sort_visibility.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/debug/frag.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/debug/frag.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/debug/node_outline.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/debug/node_outline.vert -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/debug/setup.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/debug/setup.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/node.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/node.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/queue.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/queue.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/screenspace.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/screenspace.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/hierarchical/traversal_dev.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/hierarchical/traversal_dev.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/quad_format.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/quad_format.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/quad_util.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/quad_util.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/lod/section.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/lod/section.glsl -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/blit_texture_cutout.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/blit_texture_cutout.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/blit_texture_depth_cutout.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/blit_texture_depth_cutout.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/depth0.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/depth0.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/depth_copy.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/depth_copy.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/fullscreen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/fullscreen.vert -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/fullscreen2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/fullscreen2.vert -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/noop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/noop.frag -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/post/ssao.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/post/ssao.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/util/memcpy.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/util/memcpy.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/util/prefixsum/inital3.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/util/prefixsum/inital3.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/util/prefixsum/simple.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/util/prefixsum/simple.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/util/scatter.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/util/scatter.comp -------------------------------------------------------------------------------- /src/main/resources/assets/voxy/shaders/util/set.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/assets/voxy/shaders/util/set.comp -------------------------------------------------------------------------------- /src/main/resources/client.voxy.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/client.voxy.mixins.json -------------------------------------------------------------------------------- /src/main/resources/common.voxy.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/common.voxy.mixins.json -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/voxy.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCRcortex/voxy/HEAD/src/main/resources/voxy.accesswidener --------------------------------------------------------------------------------