diff options
author | Brian Paul <[email protected]> | 2011-01-28 20:25:26 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-28 20:25:26 -0700 |
commit | b3cfcdf92327184513635db8312e698e22664714 (patch) | |
tree | cc3e90fc500618a1897bdaf9e9002266a679c5e3 /src | |
parent | db3a8af7f900e4970ea18659e86a824b4ebdefc7 (diff) |
mesa: fix typo, wrap long line
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/fbobject.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 2fe84754b13..04f02ce37e3 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1000,7 +1000,7 @@ _mesa_GenRenderbuffersEXT(GLsizei n, GLuint *renderbuffers) * internal formats is different. * * Note that even if a format is determined to be legal here, validation - * of the FBO may fail if the format is not suppoted by the driver/GPU. + * of the FBO may fail if the format is not supported by the driver/GPU. * * \param internalFormat as passed to glRenderbufferStorage() * \return the base internal format, or 0 if internalFormat is illegal @@ -2276,7 +2276,8 @@ _mesa_GenerateMipmapEXT(GLenum target) #if FEATURE_EXT_framebuffer_blit static const struct gl_renderbuffer_attachment * -find_attachment(const struct gl_framebuffer *fb, const struct gl_renderbuffer *rb) +find_attachment(const struct gl_framebuffer *fb, + const struct gl_renderbuffer *rb) { GLuint i; for (i = 0; i < Elements(fb->Attachment); i++) { |