diff options
author | Brian Paul <[email protected]> | 2008-07-03 15:40:38 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-03 15:40:38 -0600 |
commit | 3dc6591a7c85b6a05551ce91b69e57d23148bf57 (patch) | |
tree | 210e97bacd4d8f9755611aff6bbd221ae1814af8 /src/mesa/main/fbobject.h | |
parent | 7acb7c1ac058d11d649b615bfcabf29b5a74a801 (diff) |
mesa: fix problem freeing framebuffer/renderbuffer objects
Basically, set up no-op Delete() methods for the DummyFrame/Renderbuffer objects.
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); |