Package gov.nasa.worldwind.render
Interface RenderResource
-
- All Known Implementing Classes:
AtmosphereProgram
,BasicShaderProgram
,BufferObject
,Framebuffer
,GroundProgram
,ShaderProgram
,SightlineProgram
,SkyProgram
,SurfaceTextureProgram
,Texture
public interface RenderResource
Handle to a rendering resource, such as a GLSL program, GL texture or GL vertex buffer object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
release(DrawContext dc)
Frees any resources associated with this instance.
-
-
-
Method Detail
-
release
void release(DrawContext dc)
Frees any resources associated with this instance. After this method returns the rendering resource is invalid, and any associated GL object is deleted.- Parameters:
dc
- the current draw context
-
-