You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Bring that Whole New World to the Old Continent too
Applies the clang-format style to the 2.1 branch as done for master in
5dbf1809c6.
This commit is contained in:
@@ -30,22 +30,21 @@
|
||||
|
||||
void BackBufferCopy::_update_copy_mode() {
|
||||
|
||||
switch(copy_mode) {
|
||||
switch (copy_mode) {
|
||||
|
||||
case COPY_MODE_DISABLED: {
|
||||
|
||||
VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(),false,Rect2());
|
||||
VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(), false, Rect2());
|
||||
} break;
|
||||
case COPY_MODE_RECT: {
|
||||
|
||||
VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(),true,rect);
|
||||
VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(), true, rect);
|
||||
} break;
|
||||
case COPY_MODE_VIEWPORT: {
|
||||
|
||||
VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(),true,Rect2());
|
||||
VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(), true, Rect2());
|
||||
|
||||
} break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,50 +53,47 @@ Rect2 BackBufferCopy::get_item_rect() const {
|
||||
return rect;
|
||||
}
|
||||
|
||||
void BackBufferCopy::set_rect(const Rect2& p_rect) {
|
||||
void BackBufferCopy::set_rect(const Rect2 &p_rect) {
|
||||
|
||||
rect=p_rect;
|
||||
rect = p_rect;
|
||||
_update_copy_mode();
|
||||
}
|
||||
|
||||
Rect2 BackBufferCopy::get_rect() const{
|
||||
Rect2 BackBufferCopy::get_rect() const {
|
||||
return rect;
|
||||
}
|
||||
|
||||
void BackBufferCopy::set_copy_mode(CopyMode p_mode){
|
||||
void BackBufferCopy::set_copy_mode(CopyMode p_mode) {
|
||||
|
||||
copy_mode=p_mode;
|
||||
copy_mode = p_mode;
|
||||
_update_copy_mode();
|
||||
}
|
||||
BackBufferCopy::CopyMode BackBufferCopy::get_copy_mode() const{
|
||||
BackBufferCopy::CopyMode BackBufferCopy::get_copy_mode() const {
|
||||
|
||||
return copy_mode;
|
||||
}
|
||||
|
||||
|
||||
void BackBufferCopy::_bind_methods() {
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("set_rect","rect"),&BackBufferCopy::set_rect);
|
||||
ObjectTypeDB::bind_method(_MD("get_rect"),&BackBufferCopy::get_rect);
|
||||
ObjectTypeDB::bind_method(_MD("set_rect", "rect"), &BackBufferCopy::set_rect);
|
||||
ObjectTypeDB::bind_method(_MD("get_rect"), &BackBufferCopy::get_rect);
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("set_copy_mode","copy_mode"),&BackBufferCopy::set_copy_mode);
|
||||
ObjectTypeDB::bind_method(_MD("get_copy_mode"),&BackBufferCopy::get_copy_mode);
|
||||
ObjectTypeDB::bind_method(_MD("set_copy_mode", "copy_mode"), &BackBufferCopy::set_copy_mode);
|
||||
ObjectTypeDB::bind_method(_MD("get_copy_mode"), &BackBufferCopy::get_copy_mode);
|
||||
|
||||
ADD_PROPERTY( PropertyInfo(Variant::INT,"copy_mode",PROPERTY_HINT_ENUM,"Disabled,Rect,Viewport"),_SCS("set_copy_mode"),_SCS("get_copy_mode"));
|
||||
ADD_PROPERTY( PropertyInfo(Variant::RECT2,"rect"),_SCS("set_rect"),_SCS("get_rect"));
|
||||
|
||||
BIND_CONSTANT( COPY_MODE_DISABLED );
|
||||
BIND_CONSTANT( COPY_MODE_RECT );
|
||||
BIND_CONSTANT( COPY_MODE_VIEWPORT );
|
||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "copy_mode", PROPERTY_HINT_ENUM, "Disabled,Rect,Viewport"), _SCS("set_copy_mode"), _SCS("get_copy_mode"));
|
||||
ADD_PROPERTY(PropertyInfo(Variant::RECT2, "rect"), _SCS("set_rect"), _SCS("get_rect"));
|
||||
|
||||
BIND_CONSTANT(COPY_MODE_DISABLED);
|
||||
BIND_CONSTANT(COPY_MODE_RECT);
|
||||
BIND_CONSTANT(COPY_MODE_VIEWPORT);
|
||||
}
|
||||
|
||||
BackBufferCopy::BackBufferCopy(){
|
||||
BackBufferCopy::BackBufferCopy() {
|
||||
|
||||
rect=Rect2(-100,-100,200,200);
|
||||
copy_mode=COPY_MODE_RECT;
|
||||
rect = Rect2(-100, -100, 200, 200);
|
||||
copy_mode = COPY_MODE_RECT;
|
||||
_update_copy_mode();
|
||||
}
|
||||
BackBufferCopy::~BackBufferCopy(){
|
||||
|
||||
BackBufferCopy::~BackBufferCopy() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user