Hey Cary,
When I marked the functions as virtual like so....
virtual SkCanvas* createCanvas() {
std::cout << "Canvas ";
std::cout.flush();
return NULL;
}
virtual void draw(SkCanvas* canvas) {
std::cout << "Draw";
std::cout.flush();
}
No change.
I haven't been able to find an example that uses a main function. If you know of one, that would help. I've been looking at the SampleApp.cpp (and related files) to get this far. Clearly I am missing something.
I just noticed onEvent is working! Progress. I can't be too far off.
-Bryan