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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
use std::rc::Rc;
use backend::Facade;
use context::Context;
use DrawParameters;
use FboAttachments;
use Rect;
use BlitTarget;
use ContextExt;
use ToGlEnum;
use ops;
use uniforms;
use {Program, Surface};
use DrawError;
use {fbo, gl};
use framebuffer;
use index;
use vertex;
#[derive(Copy, Clone, Debug)]
pub enum DefaultFramebufferAttachment {
BackLeft,
BackRight,
FrontLeft,
FrontRight,
}
pub struct DefaultFramebuffer {
context: Rc<Context>,
attachment: DefaultFramebufferAttachment,
}
impl DefaultFramebuffer {
#[inline]
pub fn back_left<F: ?Sized>(facade: &F) -> DefaultFramebuffer where F: Facade {
DefaultFramebuffer {
context: facade.get_context().clone(),
attachment: DefaultFramebufferAttachment::BackLeft,
}
}
}
impl Surface for DefaultFramebuffer {
#[inline]
fn clear(&mut self, rect: Option<&Rect>, color: Option<(f32, f32, f32, f32)>, color_srgb: bool,
depth: Option<f32>, stencil: Option<i32>)
{
ops::clear(&self.context, None, None, color, color_srgb, depth, stencil);
}
fn get_dimensions(&self) -> (u32, u32) {
self.context.get_framebuffer_dimensions()
}
fn get_depth_buffer_bits(&self) -> Option<u16> {
self.context.capabilities().depth_bits
}
fn get_stencil_buffer_bits(&self) -> Option<u16> {
self.context.capabilities().stencil_bits
}
fn draw<'a, 'b, V, I, U>(&mut self, vertex_buffer: V,
index_buffer: I, program: &Program, uniforms: &U,
draw_parameters: &DrawParameters) -> Result<(), DrawError>
where I: Into<index::IndicesSource<'a>>, U: uniforms::Uniforms,
V: vertex::MultiVerticesSource<'b>
{
if !self.has_depth_buffer() && (draw_parameters.depth.test.requires_depth_buffer() ||
draw_parameters.depth.write)
{
return Err(DrawError::NoDepthBuffer);
}
if let Some(viewport) = draw_parameters.viewport {
if viewport.width > self.context.capabilities().max_viewport_dims.0
as u32
{
return Err(DrawError::ViewportTooLarge);
}
if viewport.height > self.context.capabilities().max_viewport_dims.1
as u32
{
return Err(DrawError::ViewportTooLarge);
}
}
ops::draw(&self.context, None, vertex_buffer, index_buffer.into(), program,
uniforms, draw_parameters, self.get_dimensions())
}
#[inline]
fn blit_color<S>(&self, source_rect: &Rect, target: &S, target_rect: &BlitTarget,
filter: uniforms::MagnifySamplerFilter) where S: Surface
{
target.blit_from_frame(source_rect, target_rect, filter)
}
#[inline]
fn blit_from_frame(&self, source_rect: &Rect, target_rect: &BlitTarget,
filter: uniforms::MagnifySamplerFilter)
{
ops::blit(&self.context, None, self.get_attachments(),
gl::COLOR_BUFFER_BIT, source_rect, target_rect, filter.to_glenum())
}
#[inline]
fn blit_from_simple_framebuffer(&self, source: &framebuffer::SimpleFrameBuffer,
source_rect: &Rect, target_rect: &BlitTarget,
filter: uniforms::MagnifySamplerFilter)
{
ops::blit(&self.context, source.get_attachments(), self.get_attachments(),
gl::COLOR_BUFFER_BIT, source_rect, target_rect, filter.to_glenum())
}
#[inline]
fn blit_from_multioutput_framebuffer(&self, source: &framebuffer::MultiOutputFrameBuffer,
source_rect: &Rect, target_rect: &BlitTarget,
filter: uniforms::MagnifySamplerFilter)
{
ops::blit(&self.context, source.get_attachments(), self.get_attachments(),
gl::COLOR_BUFFER_BIT, source_rect, target_rect, filter.to_glenum())
}
}
impl FboAttachments for DefaultFramebuffer {
#[inline]
fn get_attachments(&self) -> Option<&fbo::ValidatedAttachments> {
None
}
}