Home
last modified time | relevance | path

Searched refs:Show_outlines (Results 1 – 12 of 12) sorted by relevance

/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/fred2/
H A Dfredrender.h23 extern int Show_outlines;
H A Dfred.cpp147 Show_outlines = GetProfileInt("Preferences", "Show outlines", Show_outlines); in InitInstance()
561 WriteProfileInt("Preferences", "Show outlines", Show_outlines); in write_ini_file()
H A Dfredrender.cpp82 int Show_outlines = 0; variable
737 else if ((objp->type == OBJ_SHIP) && Show_outlines) { in render_one_model_nohtl()
742 } else if ((objp->type == OBJ_START) && Show_outlines) { in render_one_model_nohtl()
749 …if ((Show_ship_models || Show_outlines) && ((objp->type == OBJ_SHIP) || (objp->type == OBJ_START))… in render_one_model_nohtl()
866 else if ((objp->type == OBJ_SHIP) && Show_outlines) { in render_one_model_htl()
871 } else if ((objp->type == OBJ_START) && Show_outlines) { in render_one_model_htl()
878 …if ((Show_ship_models || Show_outlines) && ((objp->type == OBJ_SHIP) || (objp->type == OBJ_START))… in render_one_model_htl()
1882 if ((Show_ship_models || Show_outlines) && (objp->type == OBJ_SHIP)) { in object_check_collision()
1885 } else if ((Show_ship_models || Show_outlines) && (objp->type == OBJ_START)) { in object_check_collision()
H A Dfredview.cpp3697 Show_outlines = !Show_outlines; in OnViewOutlines()
3704 pCmdUI->SetCheck(Show_outlines); in OnUpdateViewOutlines()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/fred2/
H A Dfredrender.h23 extern int Show_outlines; //!< Bool. If nonzero, draw each object's mesh. If models are s…
H A Dfred.cpp219 Show_outlines = GetProfileInt("Preferences", "Show outlines", Show_outlines); in InitInstance()
483 WriteProfileInt("Preferences", "Show outlines", Show_outlines); in write_ini_file()
H A Dfredrender.cpp101 int Show_outlines = 0; variable
1296 if ((Show_ship_models || Show_outlines) && (objp->type == OBJ_SHIP)) { in object_check_collision()
1299 } else if ((Show_ship_models || Show_outlines) && (objp->type == OBJ_START)) { in object_check_collision()
1794 else if ((objp->type == OBJ_SHIP) && Show_outlines) { in render_one_model_htl()
1799 } else if ((objp->type == OBJ_START) && Show_outlines) { in render_one_model_htl()
1806 …if ((Show_ship_models || Show_outlines) && ((objp->type == OBJ_SHIP) || (objp->type == OBJ_START))… in render_one_model_htl()
1949 else if ((objp->type == OBJ_SHIP) && Show_outlines) { in render_one_model_nohtl()
1954 } else if ((objp->type == OBJ_START) && Show_outlines) { in render_one_model_nohtl()
1961 …if ((Show_ship_models || Show_outlines) && ((objp->type == OBJ_SHIP) || (objp->type == OBJ_START))… in render_one_model_nohtl()
H A Dfredview.cpp3755 Show_outlines = !Show_outlines; in OnViewOutlines()
3762 pCmdUI->SetCheck(Show_outlines); in OnUpdateViewOutlines()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/qtfred/src/mission/
H A DEditorViewport.h22 bool Show_outlines = false; member
H A DFredRenderer.cpp810 } else if ((objp->type == OBJ_SHIP) && view().Show_outlines) { in render_one_model_htl()
814 } else if ((objp->type == OBJ_START) && view().Show_outlines) { in render_one_model_htl()
821 …if ((view().Show_ship_models || view().Show_outlines) && ((objp->type == OBJ_SHIP) || (objp->type … in render_one_model_htl()
H A DEditorViewport.cpp725 if ((view.Show_ship_models || view.Show_outlines) && (objp->type == OBJ_SHIP)) { in object_check_collision()
727 } else if ((view.Show_ship_models || view.Show_outlines) && (objp->type == OBJ_START)) { in object_check_collision()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/qtfred/src/ui/
H A DFredView.cpp273 connectActionToViewSetting(ui->actionShow_Outlines, &_viewport->view.Show_outlines); in syncViewOptions()