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
use BlitTarget;
use Rect;
use context::Context;
use ContextExt;
use fbo::FramebuffersContainer;
use fbo::ValidatedAttachments;
use gl;
use version::Version;
use version::Api;
pub fn blit(context: &Context, source: Option<&ValidatedAttachments>,
target: Option<&ValidatedAttachments>, mask: gl::types::GLbitfield,
src_rect: &Rect, target_rect: &BlitTarget, filter: gl::types::GLenum)
{
unsafe {
let mut ctxt = context.make_current();
let source = FramebuffersContainer::get_framebuffer_for_drawing(&mut ctxt, source);
let target = FramebuffersContainer::get_framebuffer_for_drawing(&mut ctxt, target);
if ctxt.state.enabled_scissor_test {
ctxt.gl.Disable(gl::SCISSOR_TEST);
ctxt.state.enabled_scissor_test = false;
}
if ctxt.version >= &Version(Api::Gl, 4, 5) {
ctxt.gl.BlitNamedFramebuffer(source, target,
src_rect.left as gl::types::GLint,
src_rect.bottom as gl::types::GLint,
(src_rect.left + src_rect.width) as gl::types::GLint,
(src_rect.bottom + src_rect.height) as gl::types::GLint,
target_rect.left as gl::types::GLint, target_rect.bottom as gl::types::GLint,
(target_rect.left as i32 + target_rect.width) as gl::types::GLint,
(target_rect.bottom as i32 + target_rect.height) as gl::types::GLint, mask, filter);
return;
}
if ctxt.state.read_framebuffer != source {
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.BindFramebuffer(gl::READ_FRAMEBUFFER, source);
ctxt.state.read_framebuffer = source;
} else {
ctxt.gl.BindFramebufferEXT(gl::READ_FRAMEBUFFER_EXT, source);
ctxt.state.read_framebuffer = source;
}
}
if ctxt.state.draw_framebuffer != target {
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.BindFramebuffer(gl::DRAW_FRAMEBUFFER, target);
ctxt.state.draw_framebuffer = target;
} else {
ctxt.gl.BindFramebufferEXT(gl::DRAW_FRAMEBUFFER_EXT, target);
ctxt.state.draw_framebuffer = target;
}
}
if ctxt.version >= &Version(Api::Gl, 3, 0) {
ctxt.gl.BlitFramebuffer(src_rect.left as gl::types::GLint,
src_rect.bottom as gl::types::GLint,
(src_rect.left + src_rect.width) as gl::types::GLint,
(src_rect.bottom + src_rect.height) as gl::types::GLint,
target_rect.left as gl::types::GLint, target_rect.bottom as gl::types::GLint,
(target_rect.left as i32 + target_rect.width) as gl::types::GLint,
(target_rect.bottom as i32 + target_rect.height) as gl::types::GLint, mask, filter);
} else {
ctxt.gl.BlitFramebufferEXT(src_rect.left as gl::types::GLint,
src_rect.bottom as gl::types::GLint,
(src_rect.left + src_rect.width) as gl::types::GLint,
(src_rect.bottom + src_rect.height) as gl::types::GLint,
target_rect.left as gl::types::GLint, target_rect.bottom as gl::types::GLint,
(target_rect.left as i32 + target_rect.width) as gl::types::GLint,
(target_rect.bottom as i32 + target_rect.height) as gl::types::GLint, mask, filter);
}
}
}