Implemented more getters

Dmitry Marakasov 2015-01-15 17:13:55 +03:00
parent 900dc547fb
commit cd161a5d71

@ -9,14 +9,14 @@
| ☐ | SDL_CreateWindowAndRenderer | | | ☐ | SDL_CreateWindowAndRenderer | |
| ☑ | SDL_DestroyRenderer | Renderer::~Renderer() | | ☑ | SDL_DestroyRenderer | Renderer::~Renderer() |
| ☑ | SDL_DestroyTexture | Texture::~Texture() | | ☑ | SDL_DestroyTexture | Texture::~Texture() |
| ☐ | SDL_GetNumRenderDrivers | | | ☐ | SDL_GetNumRenderDrivers | non-oo |
| ☑ | SDL_GetRenderDrawBlendMode | Renderer::GetDrawBlendMode() | | ☑ | SDL_GetRenderDrawBlendMode | Renderer::GetDrawBlendMode() |
| ☑ | SDL_GetRenderDrawColor | Renderer::GetDrawColor() | | ☑ | SDL_GetRenderDrawColor | Renderer::GetDrawColor() |
| ☐ | SDL_GetRenderDriverInfo | | | ☐ | SDL_GetRenderDriverInfo | non-oo |
| ☐ | SDL_GetRenderTarget | | | ☐ | SDL_GetRenderTarget | breaks incapsulation |
| ☐ | SDL_GetRenderer | | | ☐ | SDL_GetRenderer | breaks incapsulation |
| ☑ | SDL_GetRendererInfo | Renderer::GetInfo() | | ☑ | SDL_GetRendererInfo | Renderer::GetInfo() |
| ☐ | SDL_GetRendererOutputSize | | | ☑ | SDL_GetRendererOutputSize | Renderer::GetOutputSize(), Renderer::GetOutputWidth(), Renderer::GetOutputHeight() |
| ☑ | SDL_GetTextureAlphaMod | Texture::GetAlphaMod() | | ☑ | SDL_GetTextureAlphaMod | Texture::GetAlphaMod() |
| ☑ | SDL_GetTextureBlendMode | Texture::GetBlendMode() | | ☑ | SDL_GetTextureBlendMode | Texture::GetBlendMode() |
| ☑ | SDL_GetTextureColorMod | Texture::GetColorMod() | | ☑ | SDL_GetTextureColorMod | Texture::GetColorMod() |
@ -52,4 +52,4 @@
| ☑ | SDL_SetTextureColorMod | Texture::SetColorMod() | | ☑ | SDL_SetTextureColorMod | Texture::SetColorMod() |
| ☑ | SDL_UnlockTexture | Texture::LockHandle::~LockHandle() | | ☑ | SDL_UnlockTexture | Texture::LockHandle::~LockHandle() |
| ☑ | SDL_UpdateTexture | Texture::Update() | | ☑ | SDL_UpdateTexture | Texture::Update() |
| ☐ | SDL_UpdateYUVTexture | | | ☑ | SDL_UpdateYUVTexture | Texture::UpdateYUV() |