Merge pull request #6233 from lioncash/vulkan-texture

VKTexture: Remove unimplemented ScaleRectangleFromTexture() prototype
This commit is contained in:
Stenzek 2017-12-03 11:32:36 +10:00 committed by GitHub
commit 0c480a7777
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -29,9 +29,8 @@ public:
u32 dst_layer, u32 dst_level) override;
void ScaleRectangleFromTexture(const AbstractTexture* source,
const MathUtil::Rectangle<int>& src_rect,
const MathUtil::Rectangle<int>& dst_rect);
void ScaleRectangleFromTexture(Texture2D* src_texture, const MathUtil::Rectangle<int>& src_rect,
const MathUtil::Rectangle<int>& dst_rect);
const MathUtil::Rectangle<int>& dst_rect) override;
void Load(u32 level, u32 width, u32 height, u32 row_length, const u8* buffer,
size_t buffer_size) override;