Checks if task is ready to render. True if is ready, otherwise false
| 113 | /// </summary> |
| 114 | /// <returns>True if is ready, otherwise false</returns> |
| 115 | virtual bool IsReady() const |
| 116 | { |
| 117 | // Skip rendering for the hidden windows |
| 118 | return GetWidth() > 0 && (_window->IsVisible() || _window->_showAfterFirstPaint); |
| 119 | } |
| 120 | |
| 121 | public: |
| 122 | /// <summary> |