mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 00:32:57 -04:00
*** empty log message ***
This commit is contained in:
parent
d00bed0d84
commit
73fca1857a
@ -66,6 +66,10 @@ const bool pipe_spec_is_remote = config_display.Defined("pipe-machine")
|
||||
|| config_display.GetBool("pipe-remote",
|
||||
false);
|
||||
|
||||
const float gsg_clear_r = config_display.GetFloat("gsg-clear-r", 0.0);
|
||||
const float gsg_clear_g = config_display.GetFloat("gsg-clear-g", 0.0);
|
||||
const float gsg_clear_b = config_display.GetFloat("gsg-clear-b", 0.0);
|
||||
|
||||
|
||||
Config::ConfigTable::Symbol::iterator pipe_modules_begin(void) {
|
||||
return disp->begin();
|
||||
|
@ -22,6 +22,10 @@ extern const int pipe_spec_pipe_number;
|
||||
extern const bool pipe_spec_is_file;
|
||||
extern const bool pipe_spec_is_remote;
|
||||
|
||||
extern const float gsg_clear_r;
|
||||
extern const float gsg_clear_g;
|
||||
extern const float gsg_clear_b;
|
||||
|
||||
extern Config::ConfigTable::Symbol::iterator pipe_modules_begin(void);
|
||||
extern Config::ConfigTable::Symbol::iterator pipe_modules_end(void);
|
||||
extern Config::ConfigTable::Symbol::iterator gsg_modules_begin(void);
|
||||
|
@ -89,7 +89,7 @@ reset() {
|
||||
_state.clear();
|
||||
|
||||
_buffer_mask = 0;
|
||||
_color_clear_value.set(0.0, 0.0, 0.0, 0.0);
|
||||
_color_clear_value.set(gsg_clear_r, gsg_clear_g, gsg_clear_b, 0.0);
|
||||
_depth_clear_value = 1.0;
|
||||
_stencil_clear_value = 0.0;
|
||||
_accum_clear_value.set(0.0, 0.0, 0.0, 0.0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user