Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
424 views

What's the best tool you can use to learn to program shaders?

I've recently been doing some DirectX 10 work and I'm looking to move to DirectX 11 and Shader Model 5.0. I've written a few very simple shaders in the past and I'm looking to broaden my horizons and ...
4
votes
1answer
830 views

How to properly update vertex buffers in DirectX 10

For a little background: I am working on a project in C++ in which I am trying to draw 3D representations of objects based on real time profile data. The profiling data is gathered from external ...
4
votes
2answers
723 views

DirectX 10 video mode switching and performance

In a DirectX 10 application, does switching between fullscreen and windowed mode incur any sort of overhead like having to recreate textures and/or vertexbuffers? In other words, can I build an ...
3
votes
2answers
91 views

Important reads before porting c++ application from Directx9 to Directx10

I'm on the edge of starting a large refactor round in our software. At the moment, the render component is still based upon DX9. The new version will use DX10. Before I start, are there any ...
3
votes
1answer
617 views

Ideal choice for this game, XNA or SlimDX (DirectX 10)?

I'm looking to develop a multitouch rhythm game in C#. So far, I've decided on several requirements for the game that must absolutely be present: 1) Unicode text display, without the characters ...
3
votes
1answer
231 views

.NET How to detect if DirectX 10 is supported?

I would like to find out from .NET code whether DirectX 10 is supported on the machine, preferably without using managed DirectX or XNA assemblies. Thank you in advance!
3
votes
2answers
1k views

Disable alt-enter in a Direct3D (DirectX) application

I'm reading Introduction to 3D Game Programming with DirectX 10 to learn some DirectX, and I was trying to do the proposed exercises (chapter 4 for the ones who have the book). One exercise asks to ...
2
votes
1answer
503 views

DXUT Configuration

This is actually 2 questions in one, but both relate to DXUT. How do you configure a project to use DXUT in Visual Studio 2010? Do I need to add all of the header and source files to any project I ...
2
votes
1answer
161 views

DirectX11 and packetoffset

Does anyone know how to use "packetoffset" with a bool type in DirectX10/11? I am not sure how this should be aligned cbuffer SomeBuffer : register( b1 ) { float3 SomeFloat3: packoffset(c0); ...
2
votes
1answer
1k views

How to save backbuffer to file in DirectX 10?

I want to render a video frame-by-frame using DirectX 10. The frames would be processed later by some other tool like mencoder or ffmpeg. I had no problems doing so in DX9 using ...
2
votes
2answers
338 views

Primitive thickness - DX10

i recently stepped into primitive rendering in directX10. I need that because i want to convert my ingame chat from directx9 to 10 due my huge performance lag being forced by the games weak dx9 ...
2
votes
1answer
650 views

DirectX 10 Primitive is not displayed

I am trying to write my first DirectX 10 program that displays a triangle. Everything compiles fine, and the render function is called, since the background changes to black. However, the triangle I'm ...
2
votes
2answers
597 views

Direct3D 10 and Shader Management

I am coding a 3d Application with DirectX 10 and I am wondering how the tackeling of the Shadermanagement is. Is it most effective to preload all shaders there are on application start and then use ...
1
vote
1answer
88 views

DirectX10 Skydomes

I'm currently trying to implement a skydome in DirectX10 but I am having real problems trying to find a good tutorial online as to how I go about this. I even looked through all four pages of results ...
1
vote
1answer
114 views

Problems with creating a DirectX 10 device and swap chain

I am having some problems with creating a valid DirectX 10 device and swap chain using D3D10CreateDeviceAndSwapChain. I think it might be my window creation that something goes wrong in since it says ...
1
vote
1answer
210 views

Importing .x model in DirectX 10

I know that using DXUT you can import a .x model using the CDXUTSDKMesh::Create() method: g_Mesh.Create( pd3dDevice, L"tiny.x", (D3D10_INPUT_ELEMENT_DESC*)layout, 3 ); Without using DXUT, is there ...
1
vote
1answer
214 views

Geometry Shader won't compile in DirectX10 HLSL

I've been trying to code a geometry shader in order to generate billboard systems as explained in Frank Luna's book Introduction to 3D Game Programming with DirectX. I insert the shader into my ...
1
vote
1answer
272 views

How do I draw a large (500+) number of sprites to build an isometric tiled map in DirectX 10?

So, I've been puttering around with a few books on DirectX (specifically 10) and am trying my hand at building a game that uses it, but I'm stumped by a problem that none of the books seem to mention: ...
1
vote
1answer
191 views

HRESULT 0x8876086a after front buffer lost

I am using DirectX to render images in unmanaged code and a D3DImage in WPF to host the surface. When the system goes to sleep, the frontBufferLost event is raised. The event is handled and all the ...
1
vote
3answers
98 views

“Extern” with DirectX variables?

For some reason, whenever I declare a directx variable as extern, I receive a linking error. Example: In some header file: extern ID3D10EffectMatrixVariable* pWorldVariable; In some other cpp ...
1
vote
2answers
1k views

DirectX 10 Draw Text to texture

I am atempting to draw text to a textured mesh object. The mesh is basically a cube which has been pasted up to the front of the screen. (overall I'm aiming for a menu system). After a bit of googling ...
1
vote
1answer
518 views

DirectX 10 HUD in C++

I'm attempting to make a custom HUD system in DirectX 10. My current method of attack is to simply use a tree of meshes to represent different levels of the menu. I believe that by disabling the ...
1
vote
2answers
735 views

How to enable vsync in DirectX10

I'm working on a apps that's based on DirectX10 by using SlimDX. I would like to enable vsync similar to DirectX9, but the fps doesn't seems to lock to 60Hz(which happens if I'm using Direct9). I'm ...
1
vote
1answer
495 views

Copy Texture to Texture

I've done 2 programs to use Shared Resources, running on SlimDX & DirectX10. One program will display the shared texture on a 3D mesh. The 2nd program will load an image as texture. So far I need ...
1
vote
3answers
575 views

error C2228: left of '.DXGI_MODE' must have class/struct/union Direct X

I am trying to setup my swap chain Buffer but I get the following error error C2228: left of '.DXGI_MODE' must have class/struct/union 1> type is 'DXGI_MODE_SCANLINE_ORDER' Note sure what ...
1
vote
2answers
263 views

Releasing a vertex/index buffer causes warning

When releasing (Release()) a vertex buffer (ID3D10Buffer / D3D10_BIND_VERTEX_BUFFER) which has been used for rendering in the previous frame I get a warning that the buffer is bound: D3D10: INFO: ...
1
vote
1answer
513 views

How to load animaton on DirectX 10

I am a bigginer on game development. I wont write simple game with DirectX 10 and need to load animaton like man playing cards. I don't know how to strat. As I know I must kreate my own file format ...
1
vote
2answers
907 views

DirectX Device CAPS

I read the following in the DirectX 10 documentation: "Legacy hardware capability bits (caps) have been removed in favor of a rich set of guaranteed functionality, which targets Direct3D 10-class ...
1
vote
1answer
753 views

Reading output from geometry shader on CPU

I'm trying to read the output from a geometry shader which is using stream-output to output to a buffer. The output buffer used by the geometry shader is described like this: D3D10_BUFFER_DESC ...
0
votes
3answers
59 views

What type of string is best to use for Win32 and DirectX?

I am in the process of developing a small game in DirectX 10 and C++ and I'm finding it hell with the various different types of strings that are required for the various different directx / win32 ...
0
votes
2answers
39 views

How can I utilise a vector in a method call that requires an array?

For example, this method: memcpy(pVoid, MyStructArray, sizeof(MyStructArray)); This used to be fine because I was calling this method once on instantiation where the array was sa pre-defined size. ...
0
votes
2answers
33 views

Why does D3DXVec3Project return a D3DXVECTOR3?

This function converts a 3D point into screen coordinates but it returns a vector3. What is the point in the Z value? why doesn't it just return a D3DXVECTOR2?
0
votes
1answer
22 views

Using shader resources in HLSL (Port DX9->DX10)

I'm trying to port my DX9 volume renderer to a DX10 version. Currently, i'm stuck at the following error: D3D10: ERROR: ID3D10Device::DrawIndexed: The view dimension declared in the shader code ...
0
votes
1answer
49 views

Usage of DirectX 10.0 or 11.0 Vertex or Pixel Shaders other than Draw() API call within graphics driver

Our project is to profile the various Vertex and Pixel, Geometry shaders used within DirectX 10 or 11 SDK application or with Game (BioShock, Far Cry etc..) applications. Now we need an technical ...
0
votes
1answer
53 views

DirectX frame work failing to create swapchain and device

I am having major issues with my DirectX10 frame work code. The code stops in the D3D10CreateDeviceAndSwapChain() function on the ID3D10Device argument and outputs: pD3DDevice CXX0017: Error: ...
0
votes
1answer
22 views

Linking error (involving a DirectX library) using Visual Studio 2008

I'm trying to look at a DirectX example provided to me by my University, however when I try to compile it (in Debug mode) in Visual Studio 2008 it gives me the following error - Error 1 fatal ...
0
votes
1answer
64 views

If you want to fix bug between f5 and ctrl + F5 on Visual Studio 2008?

When I build my project and run game, I get this error always. Unhandled exception at 0x76fb2073 in Screen.exe: 0xC0000005: Access violation writing location 0x00000338 or sometimes 0x00000000. ...
0
votes
1answer
78 views

Multiple subdivision of an icosahedron using HLSL Geometry Shader

Currently I'm subdividing an icosahedron once by using the following Geometry Shader: [maxvertexcount(8)] void gs(triangle VS_OUT gin[3], inout TriangleStream<GS_OUT> s) { // p1 ...
0
votes
1answer
63 views

Drawing a IDirect3DSurface9 in DirectX10

I've worked with DirectX 9 a fair amount, and just recently switched to DirectX 10. I've noticed that a lot of 9's device methods have gone missing or been changed. For instance, in DX9, the method ...
0
votes
0answers
40 views

DirectX10 samples in MFC?

Do you know of any 3D DirectX10 samples in MFC, like... inside a CView? The ones on the SDK are command-line apps. The ones using MFC I found were quite old using 3D8: ...
0
votes
2answers
151 views

Best 2D integration with Direct3D 10?

I have an application that, to this point, is mostly DirectX 10 3D graphics. Now we are wanting to generate some real-time 2D images to display on a portion of the screen. The 2D graphics will be ...
0
votes
2answers
87 views

How to draw the heightmap onto the screen?

I'm using DiretX10 to simulate a water surface, and I'm now with a height map,which is a 2D array of the heights(y) at the points (x,z). But to draw it on the screen, I must turn it into a mesh or ...
0
votes
0answers
121 views

DirectX10 Multisampling / Anti-aliasing

Here's what I know: I'm confused about what you do with what data structures to accomplish this. I know you need the swap chain to have increased SampleDesc.Quality/Count values to make the back ...
0
votes
0answers
88 views

A RSSetViewports and DrawText problem

While learning DirectX 10 from Frank Luna's book "Introduction to 3D Game Programming with Direct3D 10.0" I stumbled upon the following problem. When I try modify the viewport of my application using ...
0
votes
1answer
192 views

Order of operations for multisampling in DirectX 10

I'm confused on the process that needs to be done for anti-aliasing in DirectX 10. I haven't done it at all before, so it may just be that I'm confused on the procedure in general. Here's what I know ...
0
votes
1answer
64 views

How to record video in game

I'm developing an overlay widget to record video in a DirectX 10 game while playing. Now I can get the bitmap of each frame. The problem now is how to put those bitmaps of each frame into video ...
0
votes
1answer
138 views

Multiple textures doesn't show

I'm a newbie of DirectX10. Now I'm developing a Direct10 application. It mixes two textures which are filled manually according to user's input. The current implementation is Create two empty ...
0
votes
1answer
205 views

Clear single viewport in DirectX 10

I am preparing to start on a C++ DirectX 10 application that will consist of multiple "panels" to display different types of information. I have had some success experimenting with multiple viewports ...
0
votes
0answers
93 views

ID3D10InfoQueue: Remove any messages from the message queue once readed (c++)

Is there any way of removing a message from the message queue once readed? (ID3D10InfoQueue Interface, messages from directX 10) The method GetMessage does not remove any messages from the message ...
0
votes
0answers
108 views

Chroma Keying with Windows 7

I'm working on an application that keys out the background of images acquired from a camera via a frame-grabber. Images can be either in RGB24 or YUV format. The application was designed using ...

1 2