Add way to bind cached textures to a DrawContext
This commit is contained in:
parent
f745e94899
commit
abd58199ce
10 changed files with 33 additions and 6 deletions
|
@ -857,3 +857,8 @@ std::vector<std::string> TextureCacheVulkan::DebugGetSamplerIDs() const {
|
|||
std::string TextureCacheVulkan::DebugGetSamplerString(std::string id, DebugShaderStringType stringType) {
|
||||
return samplerCache_.DebugGetSamplerString(id, stringType);
|
||||
}
|
||||
|
||||
void *TextureCacheVulkan::GetNativeTextureView(const TexCacheEntry *entry) {
|
||||
VkImageView view = entry->vkTex->GetImageView();
|
||||
return (void *)view;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue