diff options
author | Marek Olšák <[email protected]> | 2011-03-07 23:33:36 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-03-07 23:33:36 +0100 |
commit | a674ef7814ea16622b6002009ffe27a55cb500bf (patch) | |
tree | 1fc0818c5709e0a51b5e677b435786d7383a2af8 /src | |
parent | fb5d9e1199cabe653ae1bb822bb66ce9f0ce7f55 (diff) |
mesa: return after invalidating renderbuffer
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/fbobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index be8e9d5fa92..ffdd0842562 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; } } } |