| 61 | } |
| 62 | |
| 63 | static void DeleteProgram(const GFSDK_SSAO_GLFunctions& GL, GLuint& Program) |
| 64 | { |
| 65 | if (Program) |
| 66 | { |
| 67 | GL.glDeleteProgram(Program); |
| 68 | Program = 0; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | void Release(const GFSDK_SSAO_GLFunctions& GL) |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected