The layer tag has no wiki summary.
0
votes
1answer
721 views
iOS load dynamic layer mask (i.e. layer mask is provided outside the code)
Situation: want to apply interesting photo frame to images, and the photo frame is implemented as layer mask, is it possible to dynamically build the layer mask by load a photo frame template outside ...
0
votes
1answer
572 views
Place an image behind my labels and in front of my plot within my coreplot graph
How can I get an image behind my labels within my graph. I succeeded with putting an image in front of the graph with:
CPTPlotSpaceAnnotation *imageAnnotation;
CGRect imageRect = CGRectMake(0, ...
0
votes
1answer
1k views
Imagebutton from drawable in layer-list?
I've looked for hours for the answer to this seemingly simple issue I'm having.
Basically, how do you make a certain drawable in a layer-list an imagebutton?
Eclipse doesn't mark this code with any ...
0
votes
1answer
122 views
Change object's layer dynamically in WPF
I need to do something like "Move up", "Move down" with the objects on my GRID from C# code while executing, is there any possibilities?
0
votes
1answer
380 views
Pre-rendering, Pre-blending, CoreGraphics, CALayers?
I have 200+ uiLabels added to a long (92000px) uiScrollView. I am getting the impression from some of the QAs that one option to improve performance is to pre-render the whole view into one?
I ...
0
votes
1answer
1k views
layer.zPosition does not work with non-sibling UIViews
I have a reasonably complex hierarchy of UIImageViews. Originally, I was carefully swapping the sibling order when one UIImageView moved in front of another. Then I found out about ...
0
votes
1answer
128 views
table with div layers
I have a table inside a div 1.
Then after that div 1 added another div 2 with position:relative; top:-250; so that div 2 layer will be right on top of the table.
But now below the table there is a ...
0
votes
2answers
1k views
How to collapse five OpenGL textures into one?
I want to merge 5 "sublayers" to one single texture (you know, somethin' like Flatten Image in Photoshop) in OpenGL ES 1.x iPhone. I'm new to OpenGL, and just haven't find the answer yet.