From 2aa46836d2e577f1e6041a8f7a1f4cd473a15a46 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Tue, 25 Nov 2014 23:48:10 +0300 Subject: [PATCH] Texture locking and querying implemented --- Completeness-CategoryRender.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Completeness-CategoryRender.md b/Completeness-CategoryRender.md index 4d0dd14..d9d75ac 100644 --- a/Completeness-CategoryRender.md +++ b/Completeness-CategoryRender.md @@ -20,8 +20,8 @@ | ☐ | SDL_GetTextureAlphaMod | | | ☐ | SDL_GetTextureBlendMode | | | ☐ | SDL_GetTextureColorMod | | -| ☐ | SDL_LockTexture | | -| ☐ | SDL_QueryTexture | | +| ☑ | SDL_LockTexture | Texture::Lock(), Texture::LockHandle::LockHandle() | +| ☑ | SDL_QueryTexture | Texture::GetFormat(), Texture::GetAccess(), Texture::GetWidth(), Texture::GetHeight() | | ☑ | SDL_RenderClear | Renderer::Clear() | | ☑ | SDL_RenderCopy | Renderer::Copy() | | ☑ | SDL_RenderCopyEx | Renderer::Copy() | @@ -50,6 +50,6 @@ | ☑ | SDL_SetTextureAlphaMod | Texture::SetAlphaMod() | | ☑ | SDL_SetTextureBlendMode | Texture::SetBlendMode() | | ☑ | SDL_SetTextureColorMod | Texture::SetColorMod() | -| ☐ | SDL_UnlockTexture | | +| ☑ | SDL_UnlockTexture | Texture::LockHandle::~LockHandle() | | ☑ | SDL_UpdateTexture | Texture::Update() | | ☐ | SDL_UpdateYUVTexture | |