Lines Matching defs:GraphicMutex
46 class GraphicMutex {
48 GraphicMutex()
55 ~GraphicMutex()
67 GraphicMutex(const GraphicMutex&) = delete;
68 GraphicMutex(const GraphicMutex&&) = delete;
69 GraphicMutex& operator=(const GraphicMutex&) = delete;
70 GraphicMutex& operator=(const GraphicMutex&&) = delete;
76 class GraphicMutex {
78 GraphicMutex() = default;
79 ~GraphicMutex() = default;
82 GraphicMutex(const GraphicMutex&) = delete;
83 GraphicMutex(const GraphicMutex&&) = delete;
84 GraphicMutex& operator=(const GraphicMutex&) = delete;
85 GraphicMutex& operator=(const GraphicMutex&&) = delete;
92 explicit GraphicLockGuard(GraphicMutex& mutex) : mutex_(mutex)
120 GraphicMutex& mutex_;