1
0
forked from 0ad/0ad

warning fixes

This was SVN commit r9088.
This commit is contained in:
janwas 2011-03-21 11:55:49 +00:00
parent cec05f02ea
commit 9a22dc1351
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ FUNC2(void, glActiveTextureARB, glActiveTexture, "1.3", (int))
FUNC2(void, glClientActiveTextureARB, glClientActiveTexture, "1.3", (int))
// GL_EXT_blend_color / GL1.4 (optional in 1.2):
FUNC2(void, glBlendColorEXT, glBlendColor, "1.4", (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha));
FUNC2(void, glBlendColorEXT, glBlendColor, "1.4", (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha))
// GL_ARB_vertex_buffer_object / GL1.5:
FUNC2(void, glBindBufferARB, glBindBuffer, "1.5", (int target, GLuint buffer))

View File

@ -537,7 +537,7 @@ enum DescriptorFlags
SKIP_CACHE_DESCRIPTORS = 1,
NO_LAST_LEVEL_CACHE = 2,
PREFETCH64 = 64,
PREFETCH128 = 128,
PREFETCH128 = 128
};
static bool HandleSpecialDescriptor(Descriptor descriptor, size_t& descriptorFlags)