Browse Source

Typo fix: additionaly -> additionally.

pull/277/head
Vladimír Vondruš 13 years ago
parent
commit
e97b2a79f9
  1. 2
      src/AbstractTexture.cpp
  2. 2
      src/Text/DistanceFieldGlyphCache.h

2
src/AbstractTexture.cpp

@ -726,7 +726,7 @@ void AbstractTexture::storageImplementationFallback(const GLenum target, const G
levelSize = Math::max(Vector2i(1), levelSize/2);
}
/* Cube map additionaly needs to specify all faces */
/* Cube map additionally needs to specify all faces */
} else if(target == GL_TEXTURE_CUBE_MAP) {
Vector2i levelSize = size;
for(GLsizei level = 0; level != levels; ++level) {

2
src/Text/DistanceFieldGlyphCache.h

@ -41,7 +41,7 @@ is red channel only.
@section GlyphCache-usage Usage
Usage is similar to GlyphCache, additionaly you need to specify size of
Usage is similar to GlyphCache, additionally you need to specify size of
resulting distance field texture.
@code
Text::AbstractFont* font;

Loading…
Cancel
Save