Merge "Modify the GL renderer's functor to pass the clip to WebView" into honeycomb-mr1

This commit is contained in:
Romain Guy 2011-03-16 17:24:32 -07:00 committed by Android (Google) Code Review
commit a0f38d2785

View File

@ -25,8 +25,7 @@ class Functor {
public:
Functor() {}
virtual ~Functor() {}
virtual status_t operator ()() { return true; }
virtual status_t operator ()(float* data, uint32_t len) { return true; }
virtual status_t operator ()(int what, void* data) { return NO_ERROR; }
};
}; // namespace android