19 lines
527 B
Plaintext
19 lines
527 B
Plaintext
// Filename: glTextureContext.I
|
|
// Created by: drose (07Oct99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: GLTextureContext::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE GLTextureContext::
|
|
GLTextureContext(Texture *tex) :
|
|
TextureContext(tex)
|
|
{
|
|
_index = 0;
|
|
_priority = 0.5; // For keeping resident in texture memory
|
|
}
|