diff options
author | Brian Paul <[email protected]> | 2008-07-03 15:41:45 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-03 17:21:22 -0600 |
commit | d015ffa6ea20f00f23513e63b5c27e5e6d0d3627 (patch) | |
tree | 77f1fd5e23cac5fc27e97c160e32593588901fad /src/mesa/main/fbobject.h | |
parent | 51abbdd227224c596ae2232ff3137dc3f346d563 (diff) |
mesa: fix problem freeing framebuffer/renderbuffer objects
Basically, set up no-op Delete() methods for the DummyFrame/Renderbuffer obj
Diffstat (limited to 'src/mesa/main/fbobject.h')
-rw-r--r-- | src/mesa/main/fbobject.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index 782ad8cb180..b6154719abc 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.5 + * Version: 7.1 * - * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -27,6 +27,9 @@ #define FBOBJECT_H +extern void +_mesa_init_fbobjects(GLcontext *ctx); + extern struct gl_renderbuffer * _mesa_lookup_renderbuffer(GLcontext *ctx, GLuint id); |