Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
324 views

Invalidate into own bitmap

I wish to off-screen render a Control to some bitmap so that I have quick access to it. Unfortunately Control.DrawToBitmap seems to draw the entire control on which it is called including all it's ...
5
votes
2answers
729 views

android taking screenshot of offscreen page

I am working on an android application. I have an activity, say A, which fills the entire screen with views..On a button click in A I want to start another activity, say B, which also has some views ...
5
votes
3answers
5k views

UIView: how to do non-destructive drawing?

My original question: I'm creating a simple drawing application and need to be able to draw over existing, previously drawn content in my drawRect. What is the proper way to draw on top of ...
4
votes
1answer
134 views

Painting TRichEdit to a canvas

I'm trying to implement an RTF-capable tool tip window in Delphi XE. To render the rich text, I'm using an off-screen TRichEdit. I need to do two things: Measure the size of the text. Paint the text ...
4
votes
1answer
5k views

OpenGL: Fast off-screen rendering

I need to render quite alot (tens of thousands) images off-screen using OpenGL. I am running under Windows and using QT as a framework. the solution can be windows only, it doesn't really matter. ...
2
votes
1answer
125 views

Showing JFrame in a non Raster Graphics Configuration

Greetings, I'm trying to get a JFrame drawing in a non screen device. The JFrame constructor has a JFrame(GraphicsConfiguration) to seemingly allow this: My First attempt was to create my own ...
2
votes
3answers
391 views

how move a single div offscreen

i have 2 overlapping divs like so: div.back { background:url(brick.png); background-attachment:fixed; background-position:right top; background-repeat:no-repeat; height:765px; ...
1
vote
1answer
79 views

iOS - off-screen rendering using OpenGL ES2

I want to implement image edition using OpenGL shaders. I have found some examples how to implement off-screen rendering using OpenGL ES1. Do you now any example about off-screen rendering using ...
1
vote
1answer
40 views

Flipping the View horizontally - How?

I am very new to Java 3D. Recently I've found that all of my scene objects are in left-handed coordinates, but Java 3D uses right-hand coordinates. There is a solution: flipping the scene Z-axis and ...
1
vote
2answers
1k views

WPF - simulate mouse events on off-screen rendered Grid

I'm rendering a WPF grid with multiple elements (buttons, textbox, ...) to a bitmap which is then used as a texture for a 3D surface in a Direct3D scene. For user interaction I create a 3D ray from ...
0
votes
0answers
5 views

CSS Tabs overlap with small windows

I made tabs just like on this site: They are based around a list inside of a div. http://www.marcofolio.net/css/sweet_tabbed_navigation_using_css3.html I love them, except when the window is too ...
0
votes
0answers
159 views

Off screen rendering mode in iOS

In CALayer class, there's a property named shouldRasterize. In documentation, it say that when this property is set to YES, the layer is rendered as a bitmap.In WWDC 2010 videos, session 123: Building ...
0
votes
3answers
184 views

CSS: Floating two div elements with 100% width off screen?

I remember asking this question a while back but i can't seem to find it again! I've searched but i can't seem to find the solution i'm looking for. Let's say i have two divs with 100% width floated ...
0
votes
1answer
81 views

Can I use direct2d hardware-acceleration in serverside scenarios?

Browsing through direct2d resources it seems hardware-acceleration is not available for server-side scenarios. My requirement is to render images off-screen. While this is easy to achieve using ...
0
votes
0answers
329 views

screen capture in IOS

Iam trying to make an application which takes screenshot of an IOS. I want to take screenshot of device not the user interface of my application. i.e. i want to start a service that give me ...
0
votes
3answers
152 views

Expanding DIV how to check when it has exceeded screen size

We have a DIV that is loaded with content based on user options in a form. The DIV can grow to large to be seen on screen as it is also a sticky element and follows the user on the screen. How would ...
0
votes
2answers
323 views

iPad - No user interaction on view animated on-screen

Alright this is a newbie question, so I apologize in advance. I have a UIView which I laid out in Interface Builder off-screen. When the user presses a button, I would like to animate this view ...
0
votes
1answer
64 views

Do graphic operations off-screen incur a processing overhead?

I'm trying to optimise some graphical routines for an app, and I'd like to know if off-screen animations (eg, [object startAnimating]) or just plain moving of a UIImageView by setting its rect ...
-1
votes
1answer
30 views

Understanding onscreen and offscreen in graphics programming

I assume that onscreen and offscreen are defined as below Onscreen : You can see something rendered. If it support double buffering, it has front buffer and back buffer. so, you can render ...