| 79 | _on_delete(mEcoreEvas); |
| 80 | } |
| 81 | EvasApp::EvasApp(int w, int h) |
| 82 | { |
| 83 | if (!ecore_evas_init()) |
| 84 | return; |
| 85 | mw = w; |
| 86 | mh = h; |
| 87 | //setenv("ECORE_EVAS_ENGINE", "opengl_x11", 1); |
| 88 | mEcoreEvas = ecore_evas_new(NULL, 0, 0, mw, mh, NULL); |
| 89 | if (!mEcoreEvas) return; |
| 90 | } |
| 91 | |
| 92 | void |
| 93 | EvasApp::setup() |
nothing calls this directly
no outgoing calls
no test coverage detected