OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkExample
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/skia/experimental/SkiaExamples/
SkExample.h
22
class
SkExample
: SkNoncopyable {
24
SkExample
(SkExampleWindow* window) : fWindow(window) {}
26
virtual ~
SkExample
() {}
33
typedef SkTRegistry<
SkExample
*(*)(SkExampleWindow*)> Registry;
72
SkExample
* fCurrExample;
73
const
SkExample
::Registry* fRegistry;
HelloSkiaExample.cpp
10
#include "
SkExample
.h"
17
class HelloSkia : public
SkExample
{
19
HelloSkia(SkExampleWindow* window) :
SkExample
(window) {
101
static
SkExample
* MyFactory(SkExampleWindow* window) {
106
SkExample
::Registry registry(MyFactory);
SkExample.cpp
10
#include "
SkExample
.h"
41
fRegistry =
SkExample
::Registry::Head();
48
SkDebugf("No matching
SkExample
found.\n");
163
const
SkExample
::Registry* begin = fRegistry;
167
fRegistry =
SkExample
::Registry::Head();
169
SkExample
* next = fRegistry->factory()(this);
185
SkDebugf("No
SkExample
that matches your query\n");
Completed in 65 milliseconds