summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-01-28 20:25:26 -0700
committerBrian Paul <brianp@vmware.com>2011-01-28 20:25:26 -0700
commitb3cfcdf92327184513635db8312e698e22664714 (patch)
treecc3e90fc500618a1897bdaf9e9002266a679c5e3 /src/mesa/main
parentdb3a8af7f900e4970ea18659e86a824b4ebdefc7 (diff)
mesa: fix typo, wrap long line
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/fbobject.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index 2fe84754b1..04f02ce37e 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++) {