stuarthayhurst / ammonite-engine

A simple OpenGL based graphics engine for experiments
GNU Lesser General Public License v3.0
3 stars 1 forks source link

Use atomic nodes in the work queue #14

Open stuarthayhurst opened 1 month ago

stuarthayhurst commented 1 month ago

Currently the push and pop operations are thread safe, but the contents of the nodes themselves potentially aren't. Look into whether atomic nodes are required, or if it's already safe.

stuarthayhurst commented 1 month ago

Work started on atomic-nodes