mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
*** empty log message ***
This commit is contained in:
parent
6420f478e7
commit
a122bab979
@ -1134,8 +1134,6 @@ draw_linestrip(const GeomLinestrip* geom) {
|
||||
p_colr = D3DRGBA(p_color[0], p_color[1], p_color[2], p_color[3]);
|
||||
}
|
||||
|
||||
size_t vertex_size = draw_prim_setup(geom);
|
||||
|
||||
int nVerts = *(plen++);
|
||||
nassertv(nVerts >= 2);
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
#begin lib_target
|
||||
#define TARGET express
|
||||
#define USE_NSPR yes
|
||||
|
||||
#define SOURCES \
|
||||
bigEndian.I bigEndian.cxx bigEndian.h buffer.I buffer.cxx buffer.h \
|
||||
|
@ -1,5 +1,6 @@
|
||||
#define LOCAL_LIBS express pandabase
|
||||
#define OTHER_LIBS interrogatedb:c dconfig:c dtoolutil:c dtoolbase:c dtool:m
|
||||
#define USE_NSPR yes
|
||||
|
||||
#begin lib_target
|
||||
#define TARGET ipc
|
||||
|
@ -37,7 +37,7 @@
|
||||
#begin test_bin_target
|
||||
#define TARGET test_datagram
|
||||
#define LOCAL_LIBS net
|
||||
#define OTHER_LIBS pystub
|
||||
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
||||
|
||||
#define SOURCES \
|
||||
test_datagram.cxx
|
||||
@ -47,7 +47,7 @@
|
||||
#begin test_bin_target
|
||||
#define TARGET test_spam_client
|
||||
#define LOCAL_LIBS net
|
||||
#define OTHER_LIBS pystub
|
||||
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
||||
|
||||
#define SOURCES \
|
||||
datagram_ui.cxx datagram_ui.h test_spam_client.cxx
|
||||
@ -57,7 +57,7 @@
|
||||
#begin test_bin_target
|
||||
#define TARGET test_spam_server
|
||||
#define LOCAL_LIBS net
|
||||
#define OTHER_LIBS pystub
|
||||
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
||||
|
||||
#define SOURCES \
|
||||
datagram_ui.cxx datagram_ui.h test_spam_server.cxx
|
||||
@ -67,7 +67,7 @@
|
||||
#begin test_bin_target
|
||||
#define TARGET test_tcp_client
|
||||
#define LOCAL_LIBS net
|
||||
#define OTHER_LIBS pystub
|
||||
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
||||
|
||||
#define SOURCES \
|
||||
datagram_ui.cxx datagram_ui.h test_tcp_client.cxx
|
||||
@ -77,7 +77,7 @@
|
||||
#begin test_bin_target
|
||||
#define TARGET test_tcp_server
|
||||
#define LOCAL_LIBS net
|
||||
#define OTHER_LIBS pystub
|
||||
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
||||
|
||||
#define SOURCES \
|
||||
datagram_ui.cxx datagram_ui.h test_tcp_server.cxx
|
||||
@ -87,7 +87,7 @@
|
||||
#begin test_bin_target
|
||||
#define TARGET test_udp
|
||||
#define LOCAL_LIBS net
|
||||
#define OTHER_LIBS pystub
|
||||
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
||||
|
||||
#define SOURCES \
|
||||
datagram_ui.cxx datagram_ui.h test_udp.cxx
|
||||
|
@ -99,9 +99,13 @@ write(ostream &out, int indent_level) const {
|
||||
<< _num_instances << " instances).\n";
|
||||
|
||||
indent(out, indent_level)
|
||||
<< _num_transforms << " transforms; "
|
||||
<< 100 * _num_arcs_with_transitions / _num_arcs
|
||||
<< "% of arcs have some transition.\n";
|
||||
<< _num_transforms << " transforms";
|
||||
|
||||
if (_num_arcs != 0) {
|
||||
out << "; " << 100 * _num_arcs_with_transitions / _num_arcs
|
||||
<< "% of arcs have some transition.";
|
||||
}
|
||||
out << "\n";
|
||||
|
||||
indent(out, indent_level)
|
||||
<< _num_geoms << " Geoms ";
|
||||
|
Loading…
x
Reference in New Issue
Block a user