| 35 | } |
| 36 | |
| 37 | static IDrawingEngine* GetDrawingEngine() |
| 38 | { |
| 39 | IDrawingEngine* result = nullptr; |
| 40 | auto context = GetContext(); |
| 41 | if (context != nullptr) |
| 42 | { |
| 43 | result = context->GetDrawingEngine(); |
| 44 | } |
| 45 | return result; |
| 46 | } |
| 47 | |
| 48 | bool DrawingEngineRequiresNewWindow(DrawingEngine srcEngine, DrawingEngine dstEngine) |
| 49 | { |
no test coverage detected