Deleting Textures

Hello,

I made a opengl proxy dll, to change some graphical options in a game.
I also want to delete (or simply not display)
somy textures. Can anyone say me, which functions I have to hook, to stop displaying specific textures ?

Thanks

Why not just skip drawing the triangles with that texture you dont want to show?

glDeleteTextures() will delete textures from the card, free up memory.

Cheers