You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many of the cgo calls that just mutate state could be turned into pure Go calls (probably with unsafe), allowing them to be avoid the cost of cgocalls, and potentially be inlined. The majority of the cost in the bgfx-17-drawstress example is cgo overhead.
Tests should check for the expected side effects by comparing the entire internal C structure.
The text was updated successfully, but these errors were encountered:
Many of the cgo calls that just mutate state could be turned into pure Go calls (probably with unsafe), allowing them to be avoid the cost of cgocalls, and potentially be inlined. The majority of the cost in the bgfx-17-drawstress example is cgo overhead.
Tests should check for the expected side effects by comparing the entire internal C structure.
The text was updated successfully, but these errors were encountered: