Home
last modified time | relevance | path

Searched refs:fWind (Results 1 – 13 of 13) sorted by relevance

/external/skia/experimental/iOSSampleApp/Shared/
DSkUIView.mm12 @synthesize fWind, fTitleItem, fOptionsDelegate;
15 fWind = NULL;
36 if (NULL != fWind) {
37 fWind->setVisibleP(true);
38 fWind->resize(self.frame.size.width, self.frame.size.height);
43 delete fWind;
53 SkCanvas canvas(fWind->getBitmap());
54 fWind->draw(&canvas);
55 CGImageRef cgimage = SkCreateCGImageRef(fWind->getBitmap());
64 fWind->handleClick(loc.x, loc.y, SkView::Click::kDown_State, touch);
[all …]
DSkUIDetailViewController.mm15 fWind = (SampleWindow*)fSkUIView.fWind;
35 [fOptionsController registerMenus:fWind->getMenus()];
78 fWind->previousSample();
80 fWind->nextSample();
97 for (int i = 0; i < fWind->sampleCount(); ++i) {
98 [rootVC addItem:[NSString stringWithUTF8String:fWind->getSampleTitle(i).c_str()]];
103 fWind->goToSample(index);
114 fWind->saveToPdf();
116 fData = fWind->getPDFData();
DSkUIView.h28 SkOSWindow* fWind; variable
32 @property (nonatomic, readonly) SkOSWindow *fWind;
DSkUIDetailViewController.h22 SampleWindow* fWind; variable
/external/skia/src/views/mac/
DSkNSView.mm25 @synthesize fWind, fTitle, fOptionsDelegate, fGLContext;
50 fWind = NULL;
59 if (fWind) {
60 fWind->setVisibleP(true);
65 fWind->resize((int) size.width, (int) size.height);
112 if (fWind && (fWind->width() != newSize.width || fWind->height() != newSize.height)) {
113 fWind->resize((int) newSize.width, (int) newSize.height);
134 delete fWind;
135 fWind = nil;
142 if (fWind) {
[all …]
DSkSampleNSView.mm16 fWind = new SampleWindow(self, *_NSGetArgc(), *_NSGetArgv(), NULL);
24 ((SampleWindow*)fWind)->previousSample();
26 ((SampleWindow*)fWind)->nextSample();
28 ((SampleWindow*)fWind)->showOverview();
Dskia_mac.mm30 delete self.fWind;
35 self.fWind = create_sk_window(self, *_NSGetArgc(), *_NSGetArgv());
DSkNSView.h49 @property (nonatomic, readwrite) SkOSWindow *fWind;
/external/skia/experimental/iOSSampleApp/
DSkSampleUIView.mm336 fWind = new SampleWindow(self, argc, argv, fDevManager);
338 fWind->resize(self.frame.size.width, self.frame.size.height);
388 fWind->resize(W, H);
389 fWind->inval(NULL);
397 fWind->draw(canvas);
400 fWind->inval(NULL);
402 fFPSState->flush(fWind);
425 sk_sp<SkSurface> surface(fWind->makeSurface());
431 fWind->forceInvalAll();
442 sk_sp<SkSurface> surface(fWind->makeSurface());
[all …]
/external/skia/experimental/SimpleiOSApp/
DSimpleApp.mm71 fWind = new SkOSWindow(self);
72 fWind->setLayout(new FillLayout, false);
73 fWind->attachChildToFront(new SkSampleView)->unref();
/external/skia/example/mac/
DHelloWorldNSView.mm17 fWind = create_sk_window(self, *_NSGetArgc(), *_NSGetArgv());
23 delete fWind;
DHelloWorldDelegate.mm13 // [fOptions registerMenus:fView.fWind->getMenus()];
/external/skia/experimental/SimpleCocoaApp/
DSimpleApp.mm298 fWind = new SkOSWindow(self);
299 fWind->setLayout(new FillLayout, false);
300 fWind->attachChildToFront(new SkSampleView)->unref();
307 SkCGDrawBitmap(ctx, fWind->getBitmap(), 0, 0);