vk: Move struct anv_sampler to private.h

This commit is contained in:
Kristian Høgsberg
2015-05-13 13:38:55 -07:00
parent a77229c979
commit 3f52c016fa
2 changed files with 4 additions and 4 deletions

View File

@@ -1317,10 +1317,6 @@ VkResult VKAPI vkCreateBufferView(
// Sampler functions // Sampler functions
struct anv_sampler {
uint32_t state[4];
};
VkResult VKAPI vkCreateSampler( VkResult VKAPI vkCreateSampler(
VkDevice _device, VkDevice _device,
const VkSamplerCreateInfo* pCreateInfo, const VkSamplerCreateInfo* pCreateInfo,

View File

@@ -623,6 +623,10 @@ struct anv_image_view {
struct anv_state surface_state; struct anv_state surface_state;
}; };
struct anv_sampler {
uint32_t state[4];
};
struct anv_depth_stencil_view { struct anv_depth_stencil_view {
}; };