1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Exposes the OpenGL [`Framebuffer`](struct.Framebuffer.html) object,
//! and related types.
use PhantomData;
use gl;
use *;
use GLObject;
/// An OpenGL framebuffer object.
///
/// A framebuffer can best be thought of as a 'surface' that can be rendered
/// to. A framebuffer will contain one or more attachment points, which
/// point to the actual container where data will really be written when
/// drawing. Generally, a framebuffer will use a [`Renderbuffer`]
/// (../renderbuffer/struct.Renderbuffer.html) to draw a final image to
/// the screen, and a [`Texture2d`](../texture/type.Texture2d.html) when
/// some post-processing effects need to be applied before displaying the
/// final image.
///
/// A framebuffer will automatically be deleted after going out of scope.
///
/// # See also
/// [`gl.build_framebuffer`](../context/framebuffer_context/trait.ContextFramebufferBuilderExt.html#method.build_framebuffer):
/// Build a new framebuffer, using the [`FramebufferBuilder`](../context/framebuffer_context/struct.FramebufferBuilder.html)
/// type to set attachment points.
///
/// [`gl.gen_framebuffer`](../context/framebuffer_context/trait.ContextFramebufferExt.html#method.gen_framebuffer):
/// Create a new framebuffer with no attachment points.
///
/// [`gl.bind_framebuffer`](../context/framebuffer_context/trait.FramebufferContext.html#method.bind_framebuffer):
/// Bind a framebuffer to a context, returning a [`FramebufferBinding`]
/// (../context/framebuffer_context/struct.FramebufferBinding.html) type.