Improve layout handling of Image
This commit is contained in:
parent
6557e2ceee
commit
f28a2184f7
1 changed files with 3 additions and 3 deletions
|
@ -678,8 +678,8 @@ impl Image {
|
|||
self.file_name.as_ref()
|
||||
}
|
||||
|
||||
pub fn convert_layout(me: &Arc<Image>, target_layout: VkImageLayout) -> Result<()> {
|
||||
into_layout(me, target_layout)
|
||||
pub fn convert_layout(self: &Arc<Self>, target_layout: VkImageLayout) -> Result<()> {
|
||||
into_layout(self, target_layout)
|
||||
}
|
||||
|
||||
pub fn vk_format(&self) -> VkFormat {
|
||||
|
@ -714,7 +714,7 @@ impl Image {
|
|||
*self.image_layout.lock().unwrap()
|
||||
}
|
||||
|
||||
pub fn set_image_layout(&self, layout: VkImageLayout) {
|
||||
pub(crate) fn set_image_layout(&self, layout: VkImageLayout) {
|
||||
*self.image_layout.lock().unwrap() = layout;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue