summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2011-03-07 23:33:36 +0100
committerMarek Olšák <maraeo@gmail.com>2011-03-07 23:33:36 +0100
commita674ef7814ea16622b6002009ffe27a55cb500bf (patch)
tree1fc0818c5709e0a51b5e677b435786d7383a2af8 /src/mesa/main
parentfb5d9e1199cabe653ae1bb822bb66ce9f0ce7f55 (diff)
mesa: return after invalidating renderbuffer
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/fbobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index be8e9d5fa9..ffdd084256 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -1134,6 +1134,7 @@ invalidate_rb(GLuint key, void *data, void *userData)
att->Renderbuffer == rb) {
/* Mark fb status as indeterminate to force re-validation */
fb->_Status = 0;
+ return;
}
}
}