Thread-safe setting of currently used technique (Note: dealing with cases of per-thread technique switching)
(technique)
| 1216 | return retVal |
| 1217 | |
| 1218 | def setTechnique(technique): |
| 1219 | """ |
| 1220 | Thread-safe setting of currently used technique (Note: dealing with cases of per-thread technique switching) |
| 1221 | """ |
| 1222 | |
| 1223 | getCurrentThreadData().technique = technique |
| 1224 | |
| 1225 | def getTechnique(): |
| 1226 | """ |
searching dependent graphs…