Which parts of pipelines are done using CPU and which are done using GPU?
Reading Wikipedia on Graphics Pipeline, maybe my question does not precisely represent what I am asking.
Referring to this question, which "steps" are done in CPU and which are done in GPU?
Edit:
My question is more into which parts of logical high level steps n...
I am leveraging WebKit from QWebFrame to convert HTML pages to PDF. Is it possible to apply some additional rendering logic before the page is sent to the QPrinter?
What I want to do is to be able to convert links and form controls in HTML to interactive counterparts in PDF, instead of just a vector graphic dump?
Thanks a lot for any g...
I have a wpf Window, which has wpf control and windows forms control hosted in WindowsFormsHost.
The expected behavior is that the WPF control should be rendered on top of WindowsFormsHost.
Unfortunately, this is a limitation in the interop story, WindowsFormsHost elements are always drawn on top, and don't get affected by z-order.
http...
I need to do this in XAML :
<Grid x:Name="layoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<SomeUserControl Grid.Row="0" />
<ui:AdditionalView.UseCase1>
<ContentControl>
<TextBlock>aaa</TextBlock>
</ContentC...
We have a pretty big web page with a bunch of javascript. When loading it in Firefox/Chrome, the page gets loaded gradually. First the html that already is received is rendered and shown and then the javascript gets executed.
Internet Explorer 8 however waits until the request is completely received and its javascript executed before it...
Hello everyone,
I have the following XML (it is simplified and most attributes are omitted):
<Document>
<Transfer Name="" From="" To=""/>
<Transfer Name="" From="" To=""/>
<OtherElement/>
<OtherElement/>
<Flight AirLina="" From="" To=""/>
<Flight AirLina="" From="" To=""/>
<OtherElement/>
<Hotel Name="" Duration=""/>
...
Hi,
I'm running Matlab R2009b on Snow Leopard, and I am trying to create a transparent polygon. The following line works fine:
figure,fill([1 0 0 1],[-1e-9 -1e-9 1e-9 1e-9],'r')
But when I set the transparency,
alpha(.5);
the figure collapses in on itself. That is, any title, xlabel, and ylabel I have in th...
Hi,
I have a section like
$myresult .= '<tbody>';
/*start printing the table wth feature and ratings */
for ($i = 1 ; $i < $numProperties; $i++){
if($master_rating_properties['rating'.$i.'_name']){
$myresult .= '<tr>';
$myresult .= '<td width=\'22%\'>';
$indfeature = 0;
$indfeature = $row_product['property'.$i.'_a...
In recently testing a web application on Windows/Mac desktop browsers - and then on an iPad I noticed various differences in Safari that I wasn't expecting. even though the version # is the same.
I'd like to compose a list of those differences (for myself and others) to have as a developer reference.
e.g. in Safari on the iPad
iPad S...
I have an issue with menu dropdowns that use JQuery. Using IE8, take a look at my menu just below the header. Hover over 'Acrylic Awards', then 'Award Plaques', then 'Crystal Awards'.
http://www.blackacedesign.com/
Anyone know what causes this issue in IE8? And how I can fix it?
...
I've been pondering this question awhile now... many 3d engines support advanced terrain rendering using quadtrees, LOD... all the features you expect. But every engine I've seen loads height data from heightmaps... grayscale bitmaps. I just can't understand how this is useful - each point in a heightmap can have one of 256 values. But w...
Hi,
I am trying to use the Sharp-shooter Silverlight report viewer control.
This control has a server side component that renders the reports as XAML for displaying in the client side control. I have tried manually installing the rendering extension, according to the instructions on their website, and also the instructions on MSDN. ...
Hi, we want to test our webpages on linux shell. For that reason I'm looking for a shell tool, which gets the html page from server (like 'wget') and then executes contained Javascript, include pictures and so on. After this, the tool should give me a 'screenshot' of the rendered page, so that I can create a checksum for that screen. (So...
I am developing an application in windows forms that reads a sequence of 2d dicom images and transform them into a 3d object. I can do it pretty well for bones using the VTK framework, but when trying to do the same for the skin, I am getting a blank screen. Does anyone have the same issue? Thanks in advance.
...
Hi.
I've found some wierd behaviour related to scrolling and rendering and javascript.
How to make it happen:
On any webpage that is long enough to scroll on. Start to scroll pretty fast (fling the page). then release the touch.
Now while the page is still scrolling because of the momentum. Tap the screen to stop the scroll.
This ma...
I've been experimenting with Grails for the past two days and, so far, I'm really happy with it.
Coming from Rails, the only thing I've really been missing here is the dev-mode debug information shown after the page has been served.
This is what I mean:
Processing UsersController#show (for 127.0.0.1 at 2010-06-14 10:28:44) [GET]
Par...
Hi everyone,
The project I am working on at the moment basically takes in an image and then renders a video using blender from the command line. At the moment I am using Twisted to deal with the requests but there is certainly something that I am doing wrong as it is not working how I would like it to. You can see the jist of the progra...
I'm trying to encapsulate the logic for generating my sitemap in a separate class so I can use Delayed::Job to generate it out of band:
class ViewCacher
include ActionController::UrlWriter
def initialize
@av = ActionView::Base.new(Rails::Configuration.new.view_path)
@av.class_eval do
include ApplicationHelper
...
what's the best way to present a vector/font in html?
...
I have successfully rendered my scene (simple geometric shapes) using a VisualCollection of DrawingVisuals, and I can successfully hit test them to see when the user clicks on one. I now need to show that element as selected.
sample code I found online changes the opacity of a drawingvisual from 1.0 to 0.4 when clicked, but this is not...