forked from AuroraMiddleware/gtk
macos: move setNeedsDisplay helper to GdkMacosCairoView
This isn't needed in the base class, which will eventually get a GL subclass.
This commit is contained in:
parent
931f130377
commit
60e67a62e6
@ -57,12 +57,6 @@
|
|||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
-(void)setNeedsDisplay:(BOOL)needsDisplay
|
|
||||||
{
|
|
||||||
for (id child in [self subviews])
|
|
||||||
[child setNeedsDisplay:needsDisplay];
|
|
||||||
}
|
|
||||||
|
|
||||||
-(void)setOpaqueRegion:(cairo_region_t *)region
|
-(void)setOpaqueRegion:(cairo_region_t *)region
|
||||||
{
|
{
|
||||||
/* Do nothing */
|
/* Do nothing */
|
||||||
|
@ -53,6 +53,12 @@
|
|||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-(void)setNeedsDisplay:(BOOL)needsDisplay
|
||||||
|
{
|
||||||
|
for (id child in [self subviews])
|
||||||
|
[child setNeedsDisplay:needsDisplay];
|
||||||
|
}
|
||||||
|
|
||||||
-(void)setCairoSurface:(cairo_surface_t *)cairoSurface
|
-(void)setCairoSurface:(cairo_surface_t *)cairoSurface
|
||||||
withDamage:(cairo_region_t *)cairoRegion
|
withDamage:(cairo_region_t *)cairoRegion
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user