active questions tagged direct3d - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T05:39:12Zhttp://stackoverflow.com/feeds/tag/direct3dhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1504808/are-there-any-libraries-for-loading-and-processing-disassembling-direct3d-shader0Are there any libraries for loading and processing/disassembling Direct3D shader bytecode?jrk2009-10-01T15:56:25Z2009-11-25T02:00:04Z
<p>Are there any libraries for loading and processing/disassembling the Direct3D (10,11) shader bytecode files generated by fxc?</p>
<p>I know that many developers (and hardware vendors) have internal tools to load and process the D3D shader bytecode formats, but since the shader bytecode format is private and binary-only as of D3D10, I wonder whether there are any public resources for working with it.</p>
http://stackoverflow.com/questions/1769568/d3d-performance-comparison-shaders-vs-built-in-shading1D3D Performance comparison, shaders vs built in shadingBurre2009-11-20T10:22:10Z2009-11-23T18:09:58Z
<p>Hi there.</p>
<p>I have a running 3D engine built in D3D (via SlimDX). To avoid interupting the rendering pipeline I have batched together many objects with the same material into bigger meshes (to reduce state switching). This have worked well and gives a good performance level for my need.</p>
<p>The issue I am running into is that I, during runtime, need to change material properties on some subsets of those larger batched meshes. I'm using the attribute buffer for that and it have been working reasonably well. I have been using a limited number of active attributes earlier (ca 5 per mesh), but now find the need to have much more variations on the materials (different shades of opacity/colorblends) and thus ending up with possibly hundred or more combinations. And since those changes happens during runtime I can't bundle them together before rendering starts. Sure I could re-construct meshes, but I rather not since it is slow and switching back and fourth between materials needs to be done at interactive speeds.</p>
<p>So my question is, what is the best route to take?</p>
<ul>
<li><p>Should i implement a more robust attribute handling system that dynamically masks faces with available attribute IDs on demand and then resets them when done? I have heard that fragmentation in the attribute buffer generates added performance hit and I am also unsure about the performance hit of subsequent DrawSubset() calls with material switches in between (i.e when is too much and when should i optimize my attribute arrays?). Anyone with any experience on this?</p></li>
<li><p>My other idea is to use a parametrized pixel shader. I don't need any fancy effects, just the bare minimum (current is the built in flat-shader with color only and transparency on some objects), so shader model 1 is more than enough for my needs. The idea here is to use one all-purpose shader and instead of switching material between calls just alter some shader parameters. But I don't know if this is faster than switching materials and/or if programmable shaders are slower than the build in ones (given the same result).</p></li>
</ul>
<p>I'm also curious about the difference in performance hit between switching mesh or drawing different subsets in one big mesh (given the same number of material switches for both cases).</p>
<p>I understand that these questions might differ some between GFX-cards and their respective performance/age but I'm just looking for general guidelines here on what to focus most effort on (i.e what type of state switches/CPU-interference that gives the biggest GPU-hit). Memory is a concern also, so any implementations that duplicates whole (or large parts) of meshes are not possible for me. </p>
<p>My focus is performance on older(5y)/less capable/integrated GFX cards and not necessarily top of the line gamer cards or work station cards (like Quadro). Which I guess could make or break the solution using shaders depending on how good the shader performance is on a particular board.</p>
<p>Any and all suggestions and feedback are greatly appreciated.</p>
<p>Many thanks in advance!</p>
http://stackoverflow.com/questions/124851/opengl-still-better-than-direct3d-for-non-games9OpenGL still better than Direct3D for non-games ?mgb2008-09-24T01:15:50Z2009-11-22T00:25:56Z
<p>The standard model has been that OpenGL is for professional apps (CAD) and Direct3D is for games. </p>
<p>With the debacle of openGL 3.0, is openGl still the natural choice for technical 3D apps (cad/GIS)?<br />
Are there scenegraph libraries for Direct3D? </p>
<p>(Of course Direct3D is windows only.)</p>
http://stackoverflow.com/questions/286274/direct3d-geometry-rotation-matrix-from-two-vectors0Direct3D Geometry: Rotation Matrix from Two VectorsAgnel Kurian2008-11-13T04:41:58Z2009-11-17T12:02:39Z
<p>Given two 3D vectors A and B, I need to derive a rotation matrix which rotates from A to B.</p>
<p>This is what I came up with:</p>
<ol>
<li>Derive cosine from <strike>acos</strike>(A . B)</li>
<li>Derive sine from <strike>asin</strike>(|A x B| / (|A| * |B|))</li>
<li>Use A x B as axis of rotation</li>
<li>Use matrix given near the bottom of <a href="http://www.euclideanspace.com/maths/geometry/rotations/conversions/angleToMatrix/index.htm" rel="nofollow">this page</a> (axis angle)</li>
</ol>
<p>This works fine except for rotations of 0° (which I ignore) and 180° (which I treat as a special case). Is there a more graceful way to do this using the Direct3D library? I am looking for a Direct3D specific answer.</p>
<p>Edit: Removed acos and asin (see <a href="http://stackoverflow.com/questions/286274/direct3d-geometry-rotation-matrix-from-two-vectors#286300">Hugh Allen's post</a>)</p>
http://stackoverflow.com/questions/1740093/unable-to-use-settransform-in-d3d90Unable to use SetTransform in D3D9Kevin Laity2009-11-16T04:44:24Z2009-11-17T00:19:51Z
<p>What might stop IDirect3DDevice9::SetTransform from working? I've looked at alot of tutorials for using transformation matrices in Direct3D9, including <a href="http://www.riemers.net/eng/Tutorials/DirectX/C++/Series1/tut8.php" rel="nofollow">this one here</a>. And as far as I can tell, they all do it the same way.</p>
<p>I'm trying to write some code just to translate a texured polygon. I call SetTransform with a matrix initialized with D3DXMatrixTranslation, and it returns S_OK. However the actual polygons drawn to the screen do not get transformed.</p>
<pre><code>D3DXMATRIX m_Translation;
D3DXMatrixTranslation(&m_Translation,100,100,0);
d3dDevice->SetTransform(D3DTS_WORLD, &m_Translation);
d3dDevice->SetFVF(D3DFVF_TLVERTEX);
d3dDevice->SetStreamSource(0, vertexBuffer, 0, sizeof(TLVERTEX));
HRESULT hr = d3dDevice->DrawPrimitive(D3DPT_TRIANGLEFAN, 0, 2);
</code></pre>
http://stackoverflow.com/questions/1671062/no-thumbnails-showing-in-aero-flip-thumbnail-for-full-screen-direct3d-9-applicati0No thumbnails showing in Aero flip/thumbnail for full screen direct3d 9 applicationChris Blackwell2009-11-04T00:39:11Z2009-11-09T22:40:01Z
<p>I'm sure this is on the web somewhere, but I'm having trouble with the search terms (getting lots of non-relevant stuff.) Anyway, I've got a Direct3D9 application. When it runs in full screen, on Vista and Windows 7, and you hit Alt-Tab or Win-Tab, my application just shows up blank in the thumbnail/preview/live view (not sure of the correct term.) Is there an API or notification I can respond to where I can draw my backbuffer to the thumbnail?</p>
http://stackoverflow.com/questions/1666132/drawing-targetting-circle-in-3d-application1Drawing targetting circle in 3d applicationJB2009-11-03T09:09:52Z2009-11-03T09:13:04Z
<p>I'm working on a 3d game just for learning.</p>
<p>I have a 3d world generated from a heightmap and various mesh based objects overlayed onto that world.</p>
<p>I want the player to be able to target objects in the world which I can do, but I want to draw a targetting circle on the terrain or object that the targetted thing is standing on. If you've played world of warcraft you'll know what I mean, when you target someone it draws a red circle onto the floor below them.</p>
<p>But it's projected onto whatever they are standing on. Which might be the terrain - and therefore might need projecting onto different mesh polygons with different slopes, part o fthe circle on one and part on the other. Or might need projecting onto an item. Or possibly part on one and part on the other.</p>
<p>Any ideas how to do this efficiently? Cheats and approximations are welcome too, as usual in games I'm looking for something looks effective rather than 100% correctness.</p>
<p>Using directx9 and shader model 2 if that matters at all for any solutions.</p>
http://stackoverflow.com/questions/916663/would-it-be-possible-to-write-a-3d-game-as-large-as-world-of-warcraft-in-pure-pyt5Would it be possible to write a 3D game as large as World of Warcraft in pure Python?BCharles2009-05-27T16:16:05Z2009-11-01T09:16:19Z
<p>Would it be possible to write a 3D game as large as World of Warcraft in pure Python?
Assuming the use of DirectX / D3D bindings or OpenGL bindings.</p>
<p>If not, what would be the largest hold-up to doing such a project in Python? I know games tend to fall into the realm of C and C++ but sometimes people do things out of habit!</p>
<p>Any information would help satisfy my curiosity.</p>
<h3>Edit:</h3>
<p>Would the GIL post a major issue on 3d client performance? And what is the general performance penalty for using say, OpenGL or DirectX bindings vs natively using the libraries?</p>
http://stackoverflow.com/questions/1327172/combining-direct3d-axis-to-make-multiple-ip-camera-gui0Combining Direct3D, Axis to make multiple IP camera GUISodrohu2009-08-25T09:41:56Z2009-10-27T13:00:03Z
<p>Right now, what I'm trying to do is to make a new GUI, essentially a software using directX (more exact, direct3D), that display streaming images from Axis IP cameras.</p>
<p>For the time being I figured that the flow for the entire program would be like this:
1. Get the Axis program to get streaming images
2. Pass the images to the Direct3D program.
3. Display the program, on the screen. </p>
<p>Currently I have made a somewhat basic Direct3D app that loads and display video frames from avi videos(for testing). I dunno how to load images directly from videos using DirectX, so I used OpenCV to save frames from the video and have DX upload them up. Very slow.</p>
<p>Right now I have some unclear things:
1. How to Get an Axis program that works in C++ (gonna look up examples later, prolly no big deal)
2. How to upload images directly from the Axis IP camera program.</p>
<p>So guys, do you have any recommendations or suggestions on how to make my program work more efficiently? Anything just let me know.</p>
http://stackoverflow.com/questions/1618724/project-a-grid-in-screenspace-on-the-world-xz-plane0Project a grid in screenspace on the world xz plane.Heinrich2009-10-24T18:40:25Z2009-10-25T11:00:43Z
<p>Hi,</p>
<p>I want to project a grid on the xz-plane like shown here:
<a href="http://habibs.files.wordpress.com/2009/07/2-1.jpg" rel="nofollow">http://habibs.files.wordpress.com/2009/07/2-1.jpg</a></p>
<p>To do that, I created a vertex grid with x and z range [-1|1]. In the shader I multiply the xz screen coordinate of a vertex with the inverse of the View-Projection matrix. Then I want to adjust the height, depending on the new world xz coordinates and finally I transform these coordinates back to screenspace by multiplying them with the View-Projection matrix.</p>
<p>I dont know why, but I get a very strange plane shown on the screen. Are the mathematical oprations I use correct?</p>
<p>Best,
erik</p>
http://stackoverflow.com/questions/1613600/direct3d-rendering-2d-images-with-multiply-blending-mode-and-alpha0Direct3D rendering 2D images with "multiply" blending mode and alpha gummikana2009-10-23T13:51:49Z2009-10-23T15:12:38Z
<p>I'm trying to replicate the Photoshop filter multiply with Direct3D. I've been reading and googling about the different render states and I've got the effect almost working. The problem is that it's ignoring the alpha value of the textures.</p>
<p>Here's an image that explains the sitution:</p>
<p><a href="http://www.kloonigames.com/petri/stackoverflow_doesnt_allow_.jpg" rel="nofollow">http://www.kloonigames.com/petri/stackoverflow_doesnt_allow_.jpg</a></p>
<p>I found one solution to this, which was to save the images with no transparency and white background. But I'm not satisfied with this solution. The problem is that I really need to use the alpha value. I want to fade out the images gradually. And I cannot do this if the blending mode is ignoring the alpha value. </p>
<p>So the question is how to render the images with alpha?</p>
<p>Here's the blending mode code:</p>
<pre><code>dev->SetRenderState(D3DRS_ALPHABLENDENABLE, TRUE);
dev->SetRenderState(D3DRS_SRCBLEND, D3DBLEND_ZERO);
dev->SetRenderState(D3DRS_DESTBLEND, D3DBLEND_SRCCOLOR);
</code></pre>
<p><strong>Edit added the SetTextureStageState</strong></p>
<pre><code>dev->SetTextureStageState(0, D3DTSS_ALPHAARG1, D3DTA_TEXTURE);
dev->SetTextureStageState(0, D3DTSS_ALPHAOP, D3DTOP_MODULATE);
dev->SetTextureStageState(0, D3DTSS_ALPHAARG1, D3DTA_TEXTURE);
dev->SetTextureStageState(0, D3DTSS_ALPHAARG2, D3DTA_DIFFUSE);
</code></pre>
http://stackoverflow.com/questions/1601165/sharing-a-texture-between-direct3d-and-opengl0Sharing a texture between direct3d and opengl?VilleK2009-10-21T14:23:58Z2009-10-21T19:20:44Z
<p>I know mixing OpenGL and DirectX is not recommended but I'm trying to build a bridge between two different applications that use separate graphics API:s and I'm hoping there is a technique for sharing data, specifically textures.</p>
<p>I have a texture that is created in Direct3D like this:</p>
<pre><code>d3_device-> CreateTexture(width, height,
1, D3DUSAGE_RENDERTARGET, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT,
&texture, NULL);
</code></pre>
<p>Is there any way I can use this texture from OpenGL without taking a roundtrip through system memory? </p>
http://stackoverflow.com/questions/1282045/hlsl-compiler-error1HLSL Compiler error?gufftan2009-08-15T14:48:54Z2009-10-21T09:00:02Z
<pre><code>float4x4 matInvViewProj;
float4 GetPointPosition(float2 Tex0)
{
float4 PosImageSpace;
PosImageSpace.xy = float2(Tex0*2-1);
PosImageSpace.z = tex2D(DepthTextureSampler,Tex0).r;
return mul(PosImageSpace,matInvViewProj);
}
</code></pre>
<p>That's a part of my pixelshader. Why is there a compiler error?
I'm compiling it in <code>ps_3_0.</code>
Without the <code>mul()</code> it compiles.</p>
http://stackoverflow.com/questions/1593389/drect3d-create-device-is-giving-anerror0drect3d _create device is giving anerror maya2009-10-20T09:17:18Z2009-10-20T09:17:18Z
<p>hai
When i am running the sample code from windows mobile 6.0 tutorial for creating a 3d device
am getting a message "operation cannot be completed the file cannot be found" ,i Am using visual studio 2008.In my computer "d3dmref.dll"is not existing.What can be done for this?
maya</p>
http://stackoverflow.com/questions/1575003/direct3d-texture-post-processing-copying1Direct3D Texture Post-Processing/CopyingMatt Fichman2009-10-15T20:53:47Z2009-10-16T14:34:55Z
<p>So I'm trying to implement some Direct3D post-processing, and I'm having issues rendering to textures. Basically, my program looks like this:</p>
<pre><code>// Render scene to "scene_texture" (an HDR texture)...
...
device->SetRenderTarget(0, brightpass_surface);
device->SetTexture(0, scene_texture);
// Render "scene_texture" to "brightpass_texture" using full-screen quad.
// This involves passing the quad geometry through a brightpass shader.
...
device->SetRenderTarget(0, ldr_surface);
device->SetTexture(0, brightpass_texture);
// Render "brightpass_texture" to "ldr_surface" using full-screen quad...
</code></pre>
<p>I've left out some parts b/c there is a fair amount of code (I'm just trying to get across the general idea). Unfortunately, the above results in a blank screen. Here is what I want to happen:</p>
<ol>
<li>Render scene to a texture (HDR)</li>
<li>Render that texture to a second texture THROUGH a brightpass shader </li>
<li>Render the second texture to the visible LDR surface</li>
</ol>
<p>Note that if I change the last line above from</p>
<pre><code>device->SetTexture(0, brightpass_texture);
</code></pre>
<p>to</p>
<pre><code>device->SetTexture(0, scene_texture);
</code></pre>
<p>Then everything works. Note that I've tried skipping the brightpass shader and simply passing the pixels through, but that doesn't work either.</p>
http://stackoverflow.com/questions/1559809/multiple-meshes-in-one-vertex-buffer3Multiple meshes in one vertex buffer?Electro2009-10-13T12:08:40Z2009-10-16T07:35:59Z
<p>Do I need to use one vertex buffer per mesh, or can I store multiple meshes in one vertex buffer? If so, should I do it, and how would I do it?</p>
http://stackoverflow.com/questions/1541961/direct3d-c-blur-area-under-a-rectangle-drawn-on-a-sprite0Direct3d/C# - Blur area under a rectangle drawn on a spriteAOI Karasu2009-10-09T05:32:45Z2009-10-09T16:32:01Z
<p>Any idea how to do it? I am drawing a rectangle that is supposed to be a half-transparent window. I managed to do the transparency by drawing a half-transparent texture, but I also want to blur whatever is under the window. </p>
<p>Normally (eg. using GDI) I would create a bitmap of the area, blur it and paint it as the background of my window. With Direct3D I don't even know how to get the area with whatever is already rendered on it. Or even there can be a different approach, can't it. Please help.</p>
http://stackoverflow.com/questions/1033445/what-exactly-is-a-surface-in-opengl-es-or-direct3d2What exactly is a surface in OpenGL ES or Direct3D?nschmidt2009-06-23T15:48:28Z2009-10-05T11:06:33Z
<p>I did not find a good definition of the concept of a drawing surface. What properties are associated with a surface? In the context of pure OpenGL there is no surface, since OpenGL has no notion of window system specific things. In OpenGL ES though you have the EGL API, which introduces the concept of a drawing surface, without defining it properly.
What is your concise definition of a drawing surface?</p>
http://stackoverflow.com/questions/1507973/mouse-click-detection-and-transformation2d-in-direct3d0Mouse click detection and Transformation2D in Direct3DAOI Karasu2009-10-02T06:18:44Z2009-10-02T06:18:44Z
<p>I use Sprites to draw images in a D3D window. I draw an image on every sprite within a rectangle (0, 0, width, height) and use Matrix.Transformation2D to place the image in the rendered view. </p>
<p>Example:</p>
<pre><code>using (Sprite s = new Sprite(device))
{
s.Begin(SpriteFlags.AlphaBlend);
Matrix tranz = new Matrix();
tranz =
Matrix.Transformation2D(new Vector2(0, 0), 0.0f,
new Vector2(scale, scale),
new Vector2(0, 0), Geometry.DegreeToRadian(angle),
new Vector2(positionX, positionY));
s.Transform = tranz;
Vector3 spriteCenter = new Vector3(0.0f, 0.0f, 0.0f);
Vector3 sprPosition = new Vector3(0.0f, 0.0f, 0.0f);
s.Draw(someTexture, new Rectangle(0, 0, width, height),
spriteCenter, sprPosition,
Color.FromArgb(0xff, 255, 255, 255));
s.End();
}
</code></pre>
<p>How can I detect that a certain image was clicked?</p>
<p>Known parameters:
1. Mouse position: mouseX, mouseY
2. All transformation2D parameters
3. Size and position of the image within a sprite.</p>
<p>This should be enough data to get what I want, but I have no clue what to do.</p>
<p>BTW - no world transformation nor other to include in the calculation. I Just transform the sprites.</p>
http://stackoverflow.com/questions/1481373/vb-net-direct3d-drawing-jpgs-bitmap0VB.NET Direct3D Drawing Jpg's BitMapioudas2009-09-26T14:54:28Z2009-09-26T14:54:28Z
<p>Hello I have taken on a spare learning project and I am tackling direct3d in vb.net</p>
<p>So far I have found initialization code and can draw a black screen or what ever color I want and I have played around with customizing things and learning about what I can find. </p>
<p>However my next attempt in my game loop is to at least render an object from a jpeg or any form of a picture file.</p>
<p>I have tried to find VB.NET code for this or documentation and its scarce at best if its even on topic. MSDN has most defiantly been a big help but I cant get past this hump. I was wondering if anyone could show me some sites/documentation/example code that would point me in the right direction?</p>
<p>I can also post my existing code base somewhere for viewing as well (it will be open sourced)</p>
<p>Thanks, Greg.</p>
http://stackoverflow.com/questions/1462078/why-wont-direct3d-recover-after-unplugging-a-monitor-in-windows-xp2Why won't Direct3D recover after unplugging a monitor in Windows XP?bsruth2009-09-22T19:21:20Z2009-09-24T20:56:58Z
<p>An interesting bug came up that I'm having no luck with. In a windowed Direct3D9 program using native code, I handle a device lost using something similar to the following:</p>
<pre><code>void MyClass::RecoverFromDeviceLost(LPDIRECT3DDEVICE9 deviceToRecover, D3DPRESENT_PARAMETERS devicePresentParams )
{
HRESULT hr = deviceToRecover->TestCooperativeLevel();
if(hr == D3DERR_DEVICELOST ) {
//Code to shutdown all D3DPOOL_DEFAULT allocated objects
}else if(hr == D3DERR_DEVICENOTRESET){
hr = deviceToRecover->Reset(&devicePresentParams);
if(SUCCEEDED(hr))
{
//Code to rebuild all D3DPOOL_DEFAULT objects
}
}
}
</code></pre>
<p>This works fine on Vista, but seems to have major problems on XP. If the monitor is unplugged, or switched away from the PC via a KVM, I never receive the <code>D3DERR_DEVICELOST</code>. The only return value from TestCooperativeLevel I ever receive is <code>D3DERR_DEVICENOTRESET</code>. And every call to Reset gives a D3DERR_INVALIDCALL. I tried forcing the program to use the shutdown code by doing this:</p>
<pre><code>...
else if(hr == D3DERR_DEVICENOTRESET){
hr = deviceToRecover->Reset(&devicePresentParams);
if(SUCCEEDED(hr))
{
//Code to rebuild all D3DPOOL_DEFAULT objects
}else {
//Duplicate of code to shutdown all D3DPOOL_DEFAULT objects
}
}
...
</code></pre>
<p>But there was no change. This problem only seems to affect Windows XP (so far tested on SP2, SP3). I am using the August 2007 DXSDK, and can't update at this time. Has anyone seen this problem before, or have any idea why I can't reset my device?</p>
<p><strong>UPDATE:</strong> I believe I have <a href="http://stackoverflow.com/questions/1462078/why-wont-direct3d-recover-after-unplugging-a-monitor-in-windows-xp/1474071#1474071">found a solution</a>, but am still perplexed by the failure of the second code segment listed above. After getting the DirectX Debug runtime to work over remote debugging, I realized the reason that the Reset function kept failing was because there were unreleased resources. However, the exact same release code, when applied as shown in the answer, resolved the issue. I did verify that the program was not creating D3DPOOL_DEFAULT objects between calls to the recover function. Is there something in the structure of Direct3D that could cause a problem if performing a reset as shown in the this question's code segments? </p>
http://stackoverflow.com/questions/1437667/extract-images-from-running-2d-game0Extract images from running 2d-gamekds2009-09-17T09:13:48Z2009-09-17T09:56:45Z
<p>There is a 2d-game based on Direct3D. This game has a lot of graphics and animations. What is the best way to extract animation image sequences from the running game (e.g. using memory dump)? Is there any special tools for such purposes?</p>
http://stackoverflow.com/questions/1421487/directx-9-or-10-overlay0DirectX 9 or 10 Overlayplucked2009-09-14T13:15:07Z2009-09-14T13:21:21Z
<p>Hi,</p>
<p>How is it possible to draw an overlay over an game with DirectX 9 or 10?</p>
<p>I found code with depricated DirectShow code, but it will not run.</p>
<p>Thanks for tipps.</p>
http://stackoverflow.com/questions/243554/rendering-strategy-for-a-window-system-in-xna-rendertarget-performance2Rendering strategy for a window system in XNA (RenderTarget performance)OregonGhost2008-10-28T14:34:07Z2009-09-10T19:27:50Z
<p>I'm currently creating a window system for XNA games from scratch. I'm developing primarily for Windows, but who knows what platforms I might support in the future. Feel free to answer if you know this for native Direct3D, since the performance semantics should be similar. If possible, consider what would change if the target platform was X-Box 360.</p>
<p>I'm making good progress, but now I am unsure on how to exactly render the windows. I came up with four approaches:</p>
<ul>
<li><p>Just render all controls directly onto the screen. This is what I do now. Controls can be animated by blending between states as long as they are not semi-transparent. I did not find a good way to animate between an arbitrary number of states (suppose a button that is currently animating from button-up to button-down and from mouse-out to mouse-over, and then it is being disabled. It should smoothly blend from its last state to the new state. With this approach, this only works if one animation is played after the last one finished, or you'll have jumps in animation.</p></li>
<li><p>Render each top-level window and all controls into a render target, and then use that to render the top-level windows with semi-transparency onto the screen. This makes semi-transparency at top-level work and is easy to manage, but doesn't change the thing with the animations.</p></li>
<li><p>Render each control into a render target, which is only updated when the control becomes dirty (i.e. must animate or the text has been changed). This way, per-control semi-transparency would work.</p></li>
<li><p>Like the previous, but in addition to solve the animation problem have a second render target for each control. Whenever an animation starts, swap render targets, so we have the state when the animation starts, and blend it with the destination state into the other render target. This should not add overhead over the previous approach, we just had twice as many render targets, of which in any given frame only one would be rendered to (at maximum). But here comes the problem: For this to work, I would need to have the "old" render target preserve its contents. This should work with good performance on Windows, but appears to have a serious performance impact on X-Box 360. On the other hand, the "preserve" bit is only necessary while an animation is active.</p></li>
</ul>
<p>And here come the actual questions. Anything that clarifies is welcome. With the performance questions, remember that this would just be the window system of a game - the game behind might use many render targets and suck up performance as well, and likely much more than the window system. Assume that we might have five top-level windows with 20-40 controls each on the screen in absolute worst-case.</p>
<ul>
<li>Which of these approaches, if any, would you recommend and why? Feel free, of course, to add another approach.</li>
<li>Is there a performance impact when just having let's say 200 or 400 render targets available, provided that only maybe 20 of them are being rendered to each frame?</li>
<li>Is the performance impact of PreserveContents really that bad on X-Box 360? How bad is it on Windows?</li>
<li>The RenderTarget2D.RenderTargetUsage property can be written to. Is switching this at runtime a good idea, to enable PreserveContents only as needed?</li>
<li>Would you (as a player) mind if control animations would jump in certain situations, like hovering over a button, moving the mouse out and then in again, so the "normal->hover" animation is played twice from the beginning because it is slower than you?</li>
</ul>
http://stackoverflow.com/questions/1390367/3d-modeling-problem-revisited13D modeling problem - revisitedeverwicked2009-09-07T17:48:26Z2009-09-07T20:14:51Z
<p>This is a follow-up to a previous question I posted, this time with a better description, I hope.</p>
<p>I have made a pair of glasses that have a pinhole camera attached onto them that records the person's eye movements. The camera sits below the eye and is hence looking UP at the eye. There is also a slight rotation around the Y-axis (i.e. the camera has a slight left- or right-wards slant) and the Z-axis (i.e the camera is slightly twisted clock-wise or anti-clockwise).</p>
<p>From the video, I extract a set of points in the image, that should appear to be roughly linear but do not because the camera is not oriented to look straight at the person's eye.</p>
<p>If I know of a unit vector U that describes the camera orientation as well as the image point IP1(x,y) where the camera is looking, how can I work out the coordinates of these image points if the camera was sitting at (0, 0, -z)?</p>
http://stackoverflow.com/questions/1381736/initialize-direct3d-when-not-logged-in-or-automating-windows-login0Initialize Direct3d when not logged in -or- Automating Windows loginwdbdesign2009-09-04T21:52:08Z2009-09-05T18:13:25Z
<p>I need to automate a build process that makes use of an app that initializes Direct3d as part of its initialization - even when it never needs to create a window.</p>
<p>I'm trying to automate this task using Windows Task Scheduler (on XP), and I've configured the task scheduler service to allow interaction with the desktop.</p>
<p>The problem I'm running into is that when the user isn't fully logged in, or if the task starts when the user is logged in but the computer is locked, the app in question fails with a message that Direct3d failed to initialize.</p>
<p>Can anyone think of a way around this? Am I missing some configuration option (in Windows, the task scheduler, or DirectX)? Is there something I can do before launching this app that will force Direct3d to initialize? Is there a way to script a windows logon, so the user could be logged in (or the computer unlocked) before launching the app?</p>
<p>Ultimately I could leave the user logged in all the time, and the computer unlocked, but obviously this isn't a desirable solution.</p>
<p>Thanks for any ideas!</p>
http://stackoverflow.com/questions/1373195/does-wpf-rely-on-direct3d-calls-even-for-standard-controls0Does WPF rely on Direct3D calls even for standard controls?JohnIdol2009-09-03T12:42:37Z2009-09-03T13:00:10Z
<p>As a follow up tho <a href="http://stackoverflow.com/questions/1363308/can-wpf-run-without-directx/1363335#1363335">this</a> and <a href="http://stackoverflow.com/questions/149763/how-do-you-determine-if-wpf-is-using-hardware-or-software-rendering">this</a> other question, I am now trying to understand (out of curiosity) if WPF totally/mostly relies on Direct3D calls (and not 2D DirectDraw ones) even for standard controls, such as buttons or even the container window itself.</p>
<p><a href="http://en.wikipedia.org/wiki/Windows%5FPresentation%5FFoundation" rel="nofollow">Wikipedia</a> states:</p>
<blockquote>
<p><strong>All graphics, including desktop items like windows, are based on
Direct3D</strong></p>
</blockquote>
<p>Is this true? Can someone expand and provide further resources on the subject?</p>
<p>Any help appreciated!</p>
http://stackoverflow.com/questions/1345179/how-to-draw-two-detached-rectangles-in-directx-using-the-d3dpttrianglestrip-prim2How to Draw Two Detached Rectangles in DirectX using the D3DPT_TRIANGLESTRIP Primitive Typesobbayi2009-08-28T05:29:42Z2009-09-03T11:52:44Z
<p>I am new to DirectX and I am trying to draw two rectangles in one scene using <code>D3DPT_TRIANGLESTRIP</code>. One Rectangle is no problem but two Rectangles is a whole different ball game. Yes i could draw them using four triangles drawn with the <code>D3DPT_TRIANGLELIST</code> primitive type. My curiosity is on the technic involved using <code>D3DPT_TRIANGLESTRIP</code>.
Parts of the code i am using for one Rectangle using <code>D3DPT_TRIANGLESTRIP</code> is as follows:</p>
<pre><code>CUSTOMVERTEX recVertex[] = {
{ 10.0f, 10.0f, 0.10f, 1.0f, 0xffffffff, }, // x, y, z, rhw, color
{ 220.0f, 10.0f, 0.10f, 1.0f, 0xffffffff, },
{ 10.0f, 440.0f, 0.10f, 1.0f, 0xffffffff, },
{ 220.0f, 440.0f, 0.10f, 1.0f, 0xffffffff, },
};
if( FAILED( g_pd3dDevice->CreateVertexBuffer( 4 * sizeof( CUSTOMVERTEX ),
0, D3DFVF_CUSTOMVERTEX, D3DPOOL_DEFAULT, &g_pVB, NULL ) ) )
{
return E_FAIL;
}
</code></pre>
<p>More vital code...</p>
<pre><code>VOID* precVertex;
if( FAILED( g_pVB->Lock( 0, sizeof( recVertex ), ( void** )&pGameField, 0 ) ) )
{
return E_FAIL;
}
memcpy( precVertex, recVertex, sizeof( recVertex ) );
</code></pre>
<p>then Render like so...</p>
<pre><code>g_pd3dDevice->SetStreamSource( 0, g_pVB, 0, sizeof( CUSTOMVERTEX ) );
g_pd3dDevice->SetFVF( D3DFVF_CUSTOMVERTEX );
g_pd3dDevice->DrawPrimitive( D3DPT_TRIANGLESTRIP, 0, 2 );
</code></pre>
<p>Based on this model I could easily duplicate the code change the x and y values on the Custom Vertex and create another vertex buffer and it would work. </p>
<p>Personally i feel this is not the best way to go especially considering a situation when i have to draw say 100 rectangles or something like that. The thing is, I don't have other ideas. So my question is, what is the most efficient way to draw two Rectangles with <code>D3DPT_TRIANGLESTRIP</code>? Also is there a possible way of duplicating and transforming the current rectangle?</p>
http://stackoverflow.com/questions/1358896/why-is-duplicate-text-being-rendered-onto-the-z-buffer-of-a-different-texture-whe0Why is duplicate text being rendered onto the Z buffer of a different texture when using D3DXFont::DrawText?bsruth2009-08-31T19:00:39Z2009-09-01T20:19:01Z
<p>I've been stumbling over this for a while and was wondering if anyone has run into this problem before.</p>
<p>The application I'm working on is divided into multiple data plots and a single timeline at the bottom of the screen. Each plot (which is actually multiple textures layered on top of each other) as well as the timeline is rendered to a separate texture. The timeline texture is rendered first, followed by each of the plot textures from the top of the screen to the bottom. I am using DXUT and DirectX9 (March 2009).</p>
<p>After adding time text to the timeline texture, I noticed that the text was repeated in the title bar of every data plot. Here's a screencap of a portion of the display, it shows just a single plot, but the text repeats on every plot opened:</p>
<p><img src="http://i777.photobucket.com/albums/yy53/bsruth/d3dxfont%5Frepeat.png" alt="alt text" /></p>
<p>It seems like it is tied directly to the DrawText being called in the timeline's render function. I do use relative coordinates as the rect being passed to DrawText, but since I've already set the render target to the desired texture it should only affect the current texture. Not every texture rendered afterward. </p>
<p>Has anyone ever run into any problems similar to this using D3DXFont?</p>
<p><strong>EDIT</strong>: After some more experimentation, it looks like it has something to do with the Z buffer. By adding D3DCLEAR_ZBUFFER to the clear on each texture surface, the duplicate text is gone. While the problem seems bypassed for now, I'm still curious as to why the Z buffer for a completely separate texture was being written during my DrawText call.</p>
http://stackoverflow.com/questions/331449/pass-texture-using-pointer-across-process0Pass texture using pointer across processfaulty2008-12-01T16:58:24Z2009-08-29T03:36:21Z
<p>It's hard to put this into the title, so let me explain.</p>
<p>I have an application that uses Direct3D to display some mesh and directshow(vmr9 + allocator) to play some video, and then send the video frame as texture to the Direct3D portion to be applied onto the mesh. The application needs to run 24/7. At least it's allowed to be restarted every 24hours but not more frequent than that.</p>
<p>Now the problem is that directshow seems to be giving problem after a few hours of playback, either due to the codec, video driver or video file itself. At which point the application simply refuse playing anymore video. But the Direct3D portion is still running fine, mesh still displayed. Once the application is restarted, everything back to normal. </p>
<p>So, I'm thinking of splitting the 2 parts into 2 different process. So that when ever the video process failed to play video, at least I could restart it immediately, without loosing the Direct3D portion.</p>
<p>So here comes the actual question, whether it's possible to pass the texture from the video player to the direct3d process by passing the pointer, aka retrieve the texture of another process from pointer? My initial guess is not possible due to protected memory addressing.</p>
<p>I have TCP communication setup on both process, and let's not worry about communicating the pointer at this point.</p>
<p>This might be a crazy idea, but it will work wonder of it's ever possible</p>