| 858 | //------------------------------------------------------------------------------ |
| 859 | |
| 860 | GFXTextureTarget * GFXGLDevice::allocRenderToTextureTarget(bool genMips) |
| 861 | { |
| 862 | GFXGLTextureTarget *targ = new GFXGLTextureTarget(genMips); |
| 863 | targ->registerResourceWithDevice(this); |
| 864 | return targ; |
| 865 | } |
| 866 | |
| 867 | GFXFence * GFXGLDevice::createFence() |
| 868 | { |
no test coverage detected