Enables the texture target appropriate for this frame buffer object.
| 61 | |
| 62 | /// Enables the texture target appropriate for this frame buffer object. |
| 63 | virtual void EnableTextureTarget() const { if (initialized) glEnable(textureTarget); } |
| 64 | /// Disables the texture target appropriate for this frame buffer object. |
| 65 | virtual void DisableTextureTarget() const { if (initialized) glDisable(textureTarget); } |
| 66 |
no outgoing calls
no test coverage detected