/* Copyright (C) 2001, 2006 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved. */ package gov.nasa.worldwind; import gov.nasa.worldwind.cache.TextureCache; import javax.media.opengl.GLAutoDrawable; /** * @author tag * @version $Id: WorldWindowGLDrawable.java 2422 2007-07-25 23:07:49Z tgaskins $ */ public interface WorldWindowGLDrawable extends WorldWindow { void initDrawable(GLAutoDrawable glAutoDrawable); void initTextureCache(TextureCache textureCache); }