packages feed

vulkan-1.0.0.0: src/Graphics/Vulkan/Pass.hs-boot

{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Graphics.Vulkan.Pass where
import Data.Word( Word64
                )
import Foreign.Storable( Storable(..)
                       )
newtype VkRenderPass = VkRenderPass Word64
  
instance Eq VkRenderPass
instance Storable VkRenderPass