MCPcopy Create free account
hub / github.com/dfranx/ShaderDebugger / lib_common_mat_operator_increment

Function lib_common_mat_operator_increment

src/CommonLibrary.cpp:722–728  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

720 return ret;
721 }
722 bv_variable lib_common_mat_operator_increment(bv_program* prog, bv_object* me, u8 count, bv_variable* args)
723 {
724 if (count == 0)
725 ((sd::Matrix*)me->user_data)->Data++;
726
727 return bv_variable_create_void();
728 }
729 bv_variable lib_common_mat_operator_decrement(bv_program* prog, bv_object* me, u8 count, bv_variable* args)
730 {
731 if (count == 0)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected