├── .github └── workflows │ ├── ci.yml │ └── formatting.yml ├── .gitignore ├── .gitmodules ├── GettingStarted.md ├── LICENSE ├── README.md ├── cabal.project ├── cube-demo.png ├── triangle-demo.png ├── wgpu-hs ├── CHANGELOG.md ├── LICENSE ├── examples │ ├── cube │ │ └── Cube.hs │ ├── triangle-glfw │ │ └── TriangleGLFW.hs │ └── triangle-sdl │ │ └── TriangleSDL.hs ├── src-internal │ └── WGPU │ │ └── Internal │ │ ├── Adapter.hs │ │ ├── Binding.hs │ │ ├── Buffer.hs │ │ ├── ChainedStruct.hs │ │ ├── Color.hs │ │ ├── CommandBuffer.hs │ │ ├── CommandEncoder.hs │ │ ├── Device.hs │ │ ├── GLFW │ │ └── Surface.hs │ │ ├── Instance.hs │ │ ├── Memory.hs │ │ ├── Multipurpose.hs │ │ ├── Pipeline.hs │ │ ├── Queue.hs │ │ ├── RenderPass.hs │ │ ├── SDL │ │ └── Surface.hs │ │ ├── SMaybe.hs │ │ ├── Sampler.hs │ │ ├── Shader.hs │ │ ├── Surface.hs │ │ ├── SwapChain.hs │ │ └── Texture.hs ├── src │ ├── WGPU.hs │ └── WGPU │ │ ├── BoneYard │ │ └── SimpleSDL.hs │ │ ├── Classy.hs │ │ ├── GLFW │ │ └── Surface.hs │ │ └── SDL │ │ └── Surface.hs └── wgpu-hs.cabal ├── wgpu-raw-hs-codegen ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app │ └── Main.hs ├── src │ └── WGPU │ │ ├── CodeGen │ │ ├── Haskell.hs │ │ ├── Parse.hs │ │ └── Pretty.hs │ │ └── Metadata │ │ └── Git.hs └── wgpu-raw-hs-codegen.cabal └── wgpu-raw-hs ├── CHANGELOG.md ├── LICENSE ├── cbits ├── log.c ├── sdl-surface-linux-x11.c ├── sdl-surface-macos.m ├── sdl-surface-windows.c ├── surface-macos.m ├── webgpu-headers │ └── webgpu.h └── wgpu.h ├── src └── WGPU │ └── Raw │ ├── Dynamic.hs │ ├── GLFWSurface.hs │ ├── Generated │ ├── Enum │ │ ├── WGPUAdapterType.hs │ │ ├── WGPUAddressMode.hs │ │ ├── WGPUBackendType.hs │ │ ├── WGPUBlendFactor.hs │ │ ├── WGPUBlendOperation.hs │ │ ├── WGPUBufferBindingType.hs │ │ ├── WGPUBufferMapAsyncStatus.hs │ │ ├── WGPUBufferUsage.hs │ │ ├── WGPUColorWriteMask.hs │ │ ├── WGPUCompareFunction.hs │ │ ├── WGPUCreatePipelineAsyncStatus.hs │ │ ├── WGPUCullMode.hs │ │ ├── WGPUErrorFilter.hs │ │ ├── WGPUErrorType.hs │ │ ├── WGPUFilterMode.hs │ │ ├── WGPUFrontFace.hs │ │ ├── WGPUIndexFormat.hs │ │ ├── WGPUInputStepMode.hs │ │ ├── WGPULoadOp.hs │ │ ├── WGPULogLevel.hs │ │ ├── WGPUMapMode.hs │ │ ├── WGPUNativeFeature.hs │ │ ├── WGPUNativeSType.hs │ │ ├── WGPUPipelineStatisticName.hs │ │ ├── WGPUPresentMode.hs │ │ ├── WGPUPrimitiveTopology.hs │ │ ├── WGPUQueryType.hs │ │ ├── WGPUQueueWorkDoneStatus.hs │ │ ├── WGPUSType.hs │ │ ├── WGPUSamplerBindingType.hs │ │ ├── WGPUShaderStage.hs │ │ ├── WGPUStencilOperation.hs │ │ ├── WGPUStorageTextureAccess.hs │ │ ├── WGPUStoreOp.hs │ │ ├── WGPUTextureAspect.hs │ │ ├── WGPUTextureComponentType.hs │ │ ├── WGPUTextureDimension.hs │ │ ├── WGPUTextureFormat.hs │ │ ├── WGPUTextureSampleType.hs │ │ ├── WGPUTextureUsage.hs │ │ ├── WGPUTextureViewDimension.hs │ │ └── WGPUVertexFormat.hs │ ├── Fun.hs │ └── Struct │ │ ├── WGPUAdapterExtras.hsc │ │ ├── WGPUAdapterProperties.hsc │ │ ├── WGPUBindGroupDescriptor.hsc │ │ ├── WGPUBindGroupEntry.hsc │ │ ├── WGPUBindGroupLayoutDescriptor.hsc │ │ ├── WGPUBindGroupLayoutEntry.hsc │ │ ├── WGPUBlendComponent.hsc │ │ ├── WGPUBlendState.hsc │ │ ├── WGPUBufferBindingLayout.hsc │ │ ├── WGPUBufferDescriptor.hsc │ │ ├── WGPUChainedStruct.hsc │ │ ├── WGPUColor.hsc │ │ ├── WGPUColorTargetState.hsc │ │ ├── WGPUCommandBufferDescriptor.hsc │ │ ├── WGPUCommandEncoderDescriptor.hsc │ │ ├── WGPUComputePassDescriptor.hsc │ │ ├── WGPUComputePipelineDescriptor.hsc │ │ ├── WGPUDepthStencilState.hsc │ │ ├── WGPUDeviceDescriptor.hsc │ │ ├── WGPUDeviceExtras.hsc │ │ ├── WGPUExtent3D.hsc │ │ ├── WGPUFragmentState.hsc │ │ ├── WGPUImageCopyBuffer.hsc │ │ ├── WGPUImageCopyTexture.hsc │ │ ├── WGPUInstanceDescriptor.hsc │ │ ├── WGPUMultisampleState.hsc │ │ ├── WGPUOrigin3D.hsc │ │ ├── WGPUPipelineLayoutDescriptor.hsc │ │ ├── WGPUPrimitiveDepthClampingState.hsc │ │ ├── WGPUPrimitiveState.hsc │ │ ├── WGPUProgrammableStageDescriptor.hsc │ │ ├── WGPUQuerySetDescriptor.hsc │ │ ├── WGPURenderBundleDescriptor.hsc │ │ ├── WGPURenderBundleEncoderDescriptor.hsc │ │ ├── WGPURenderPassColorAttachment.hsc │ │ ├── WGPURenderPassDepthStencilAttachment.hsc │ │ ├── WGPURenderPassDescriptor.hsc │ │ ├── WGPURenderPipelineDescriptor.hsc │ │ ├── WGPURequestAdapterOptions.hsc │ │ ├── WGPUSamplerBindingLayout.hsc │ │ ├── WGPUSamplerDescriptor.hsc │ │ ├── WGPUShaderModuleDescriptor.hsc │ │ ├── WGPUShaderModuleSPIRVDescriptor.hsc │ │ ├── WGPUShaderModuleWGSLDescriptor.hsc │ │ ├── WGPUStencilFaceState.hsc │ │ ├── WGPUStorageTextureBindingLayout.hsc │ │ ├── WGPUSurfaceDescriptor.hsc │ │ ├── WGPUSurfaceDescriptorFromCanvasHTMLSelector.hsc │ │ ├── WGPUSurfaceDescriptorFromMetalLayer.hsc │ │ ├── WGPUSurfaceDescriptorFromWindowsHWND.hsc │ │ ├── WGPUSurfaceDescriptorFromXlib.hsc │ │ ├── WGPUSwapChainDescriptor.hsc │ │ ├── WGPUTextureBindingLayout.hsc │ │ ├── WGPUTextureDataLayout.hsc │ │ ├── WGPUTextureDescriptor.hsc │ │ ├── WGPUTextureViewDescriptor.hsc │ │ ├── WGPUVertexAttribute.hsc │ │ ├── WGPUVertexBufferLayout.hsc │ │ └── WGPUVertexState.hsc │ ├── Log.hs │ ├── SDLSurface.hs │ └── Types.hs └── wgpu-raw-hs.cabal /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/.github/workflows/formatting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.log 4 | tmp/ 5 | 6 | **/dist-newstyle 7 | **/.ghc.environment.* 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/.gitmodules -------------------------------------------------------------------------------- /GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/GettingStarted.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/README.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/cabal.project -------------------------------------------------------------------------------- /cube-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/cube-demo.png -------------------------------------------------------------------------------- /triangle-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/triangle-demo.png -------------------------------------------------------------------------------- /wgpu-hs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/CHANGELOG.md -------------------------------------------------------------------------------- /wgpu-hs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/LICENSE -------------------------------------------------------------------------------- /wgpu-hs/examples/cube/Cube.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/examples/cube/Cube.hs -------------------------------------------------------------------------------- /wgpu-hs/examples/triangle-glfw/TriangleGLFW.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/examples/triangle-glfw/TriangleGLFW.hs -------------------------------------------------------------------------------- /wgpu-hs/examples/triangle-sdl/TriangleSDL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/examples/triangle-sdl/TriangleSDL.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Adapter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Adapter.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Binding.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Binding.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Buffer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Buffer.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/ChainedStruct.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/ChainedStruct.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Color.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Color.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/CommandBuffer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/CommandBuffer.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/CommandEncoder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/CommandEncoder.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Device.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Device.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/GLFW/Surface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/GLFW/Surface.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Instance.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Instance.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Memory.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Memory.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Multipurpose.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Multipurpose.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Pipeline.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Pipeline.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Queue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Queue.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/RenderPass.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/RenderPass.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/SDL/Surface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/SDL/Surface.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/SMaybe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/SMaybe.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Sampler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Sampler.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Shader.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Shader.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Surface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Surface.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/SwapChain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/SwapChain.hs -------------------------------------------------------------------------------- /wgpu-hs/src-internal/WGPU/Internal/Texture.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src-internal/WGPU/Internal/Texture.hs -------------------------------------------------------------------------------- /wgpu-hs/src/WGPU.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src/WGPU.hs -------------------------------------------------------------------------------- /wgpu-hs/src/WGPU/BoneYard/SimpleSDL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src/WGPU/BoneYard/SimpleSDL.hs -------------------------------------------------------------------------------- /wgpu-hs/src/WGPU/Classy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src/WGPU/Classy.hs -------------------------------------------------------------------------------- /wgpu-hs/src/WGPU/GLFW/Surface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src/WGPU/GLFW/Surface.hs -------------------------------------------------------------------------------- /wgpu-hs/src/WGPU/SDL/Surface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/src/WGPU/SDL/Surface.hs -------------------------------------------------------------------------------- /wgpu-hs/wgpu-hs.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-hs/wgpu-hs.cabal -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/CHANGELOG.md -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/LICENSE -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/README.md -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/app/Main.hs -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/src/WGPU/CodeGen/Haskell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/src/WGPU/CodeGen/Haskell.hs -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/src/WGPU/CodeGen/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/src/WGPU/CodeGen/Parse.hs -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/src/WGPU/CodeGen/Pretty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/src/WGPU/CodeGen/Pretty.hs -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/src/WGPU/Metadata/Git.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/src/WGPU/Metadata/Git.hs -------------------------------------------------------------------------------- /wgpu-raw-hs-codegen/wgpu-raw-hs-codegen.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs-codegen/wgpu-raw-hs-codegen.cabal -------------------------------------------------------------------------------- /wgpu-raw-hs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/CHANGELOG.md -------------------------------------------------------------------------------- /wgpu-raw-hs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/LICENSE -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/log.c -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/sdl-surface-linux-x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/sdl-surface-linux-x11.c -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/sdl-surface-macos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/sdl-surface-macos.m -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/sdl-surface-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/sdl-surface-windows.c -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/surface-macos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/surface-macos.m -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/webgpu-headers/webgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/webgpu-headers/webgpu.h -------------------------------------------------------------------------------- /wgpu-raw-hs/cbits/wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/cbits/wgpu.h -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Dynamic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Dynamic.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/GLFWSurface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/GLFWSurface.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUAdapterType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUAdapterType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUAddressMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUAddressMode.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBackendType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBackendType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBlendFactor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBlendFactor.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBlendOperation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBlendOperation.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBufferBindingType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBufferBindingType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBufferMapAsyncStatus.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBufferMapAsyncStatus.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBufferUsage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUBufferUsage.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUColorWriteMask.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUColorWriteMask.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUCompareFunction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUCompareFunction.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUCreatePipelineAsyncStatus.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUCreatePipelineAsyncStatus.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUCullMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUCullMode.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUErrorFilter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUErrorFilter.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUErrorType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUErrorType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUFilterMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUFilterMode.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUFrontFace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUFrontFace.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUIndexFormat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUIndexFormat.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUInputStepMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUInputStepMode.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPULoadOp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPULoadOp.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPULogLevel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPULogLevel.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUMapMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUMapMode.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUNativeFeature.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUNativeFeature.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUNativeSType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUNativeSType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUPipelineStatisticName.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUPipelineStatisticName.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUPresentMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUPresentMode.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUPrimitiveTopology.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUPrimitiveTopology.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUQueryType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUQueryType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUQueueWorkDoneStatus.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUQueueWorkDoneStatus.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUSType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUSType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUSamplerBindingType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUSamplerBindingType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUShaderStage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUShaderStage.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUStencilOperation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUStencilOperation.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUStorageTextureAccess.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUStorageTextureAccess.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUStoreOp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUStoreOp.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureAspect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureAspect.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureComponentType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureComponentType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureDimension.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureDimension.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureFormat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureFormat.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureSampleType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureSampleType.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureUsage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureUsage.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureViewDimension.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUTextureViewDimension.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUVertexFormat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Enum/WGPUVertexFormat.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Fun.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Fun.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUAdapterExtras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUAdapterExtras.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUAdapterProperties.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUAdapterProperties.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupEntry.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupEntry.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupLayoutDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupLayoutDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupLayoutEntry.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBindGroupLayoutEntry.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBlendComponent.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBlendComponent.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBlendState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBlendState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBufferBindingLayout.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBufferBindingLayout.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBufferDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUBufferDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUChainedStruct.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUChainedStruct.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUColor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUColor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUColorTargetState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUColorTargetState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUCommandBufferDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUCommandBufferDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUCommandEncoderDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUCommandEncoderDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUComputePassDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUComputePassDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUComputePipelineDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUComputePipelineDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUDepthStencilState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUDepthStencilState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUDeviceDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUDeviceDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUDeviceExtras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUDeviceExtras.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUExtent3D.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUExtent3D.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUFragmentState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUFragmentState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUImageCopyBuffer.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUImageCopyBuffer.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUImageCopyTexture.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUImageCopyTexture.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUInstanceDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUInstanceDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUMultisampleState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUMultisampleState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUOrigin3D.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUOrigin3D.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUPipelineLayoutDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUPipelineLayoutDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUPrimitiveDepthClampingState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUPrimitiveDepthClampingState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUPrimitiveState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUPrimitiveState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUProgrammableStageDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUProgrammableStageDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUQuerySetDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUQuerySetDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderBundleDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderBundleDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderBundleEncoderDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderBundleEncoderDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPassColorAttachment.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPassColorAttachment.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPassDepthStencilAttachment.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPassDepthStencilAttachment.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPassDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPassDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPipelineDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURenderPipelineDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURequestAdapterOptions.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPURequestAdapterOptions.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSamplerBindingLayout.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSamplerBindingLayout.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSamplerDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSamplerDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUShaderModuleDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUShaderModuleDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUShaderModuleSPIRVDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUShaderModuleSPIRVDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUShaderModuleWGSLDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUShaderModuleWGSLDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUStencilFaceState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUStencilFaceState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUStorageTextureBindingLayout.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUStorageTextureBindingLayout.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromCanvasHTMLSelector.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromCanvasHTMLSelector.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromMetalLayer.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromMetalLayer.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromWindowsHWND.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromWindowsHWND.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromXlib.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSurfaceDescriptorFromXlib.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSwapChainDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUSwapChainDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureBindingLayout.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureBindingLayout.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureDataLayout.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureDataLayout.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureViewDescriptor.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUTextureViewDescriptor.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUVertexAttribute.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUVertexAttribute.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUVertexBufferLayout.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUVertexBufferLayout.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUVertexState.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Generated/Struct/WGPUVertexState.hsc -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Log.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Log.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/SDLSurface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/SDLSurface.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/src/WGPU/Raw/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/src/WGPU/Raw/Types.hs -------------------------------------------------------------------------------- /wgpu-raw-hs/wgpu-raw-hs.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelet/wgpu-hs/HEAD/wgpu-raw-hs/wgpu-raw-hs.cabal --------------------------------------------------------------------------------