Skip to content

Commit 515ce93

Browse files
committed
Merge branch 'release/1.10.x'
2 parents c9520c8 + 17776b0 commit 515ce93

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

makepanda/makewheel.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,10 @@ def makewheel(version, output_dir, platform=None):
745745
pylib_path = os.path.join(libdir, pylib_arch, pylib_name)
746746
else:
747747
pylib_path = os.path.join(libdir, pylib_name)
748-
whl.write_file('deploy_libs/' + pylib_name, pylib_path)
748+
749+
# If Python was linked statically, we don't need to include this.
750+
if not pylib_name.endswith('.a'):
751+
whl.write_file('deploy_libs/' + pylib_name, pylib_path)
749752

750753
whl.close()
751754

panda/src/collide/collisionHandlerPusher.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ handle_entries() {
173173
const CollisionSolid *s2 = sd2._entry->get_into();
174174
if (s1 != nullptr &&
175175
s2 != nullptr &&
176-
s1->is_exact_type(CollisionPolygon::get_class_type()) &&
177-
s2->is_exact_type(CollisionPolygon::get_class_type()) &&
176+
s1->is_of_type(CollisionPolygon::get_class_type()) &&
177+
s2->is_of_type(CollisionPolygon::get_class_type()) &&
178178
sd._entry->get_into_node_path() ==
179179
sd2._entry->get_into_node_path()) {
180180
const CollisionPolygon *p1 = DCAST(CollisionPolygon, s1);

panda/src/glstuff/glGraphicsStateGuardian_src.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4148,6 +4148,7 @@ end_frame(Thread *current_thread) {
41484148
_current_shader = nullptr;
41494149
_current_shader_context = nullptr;
41504150
}
4151+
_state_shader = nullptr;
41514152
#endif
41524153

41534154
// Respecify the active texture next frame, for good measure.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy