| 50 | } |
| 51 | |
| 52 | CRefPtr<CNativeTexture> CNativeTexture::Create( u32 width, u32 height, ETextureFormat texture_format ) |
| 53 | { |
| 54 | return new CNativeTexture( width, height, texture_format ); |
| 55 | } |
| 56 | |
| 57 | CNativeTexture::CNativeTexture( u32 w, u32 h, ETextureFormat texture_format ) |
| 58 | : mTextureFormat( texture_format ) |
nothing calls this directly
no outgoing calls
no test coverage detected