Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
465 views

Recommended way to work with audio in .NET applications?

I'm trying to get started with a simple audio application under .NET 3.5 (preferably in VB.NET, but will happily use C#). What I'd like to do is: Continuously record audio from (the default) Windows ...
3
votes
1answer
221 views

DirectX Z-Buffer Issue

Does anyone knows what might be causing the weird artifacts I am seeing in my C# Managed DirectX application. Here is a screenshot of the problem I am having: What you are looking at is some ...
3
votes
1answer
630 views

Managed DirectX as prerequisites

I am packaging an vb.net application which uses managed DirectX and I am not using vs deployment project etc. Now, I want to check managed directX 9 C is installed on the client or not. If not ...
2
votes
1answer
137 views

Getting hardware GUID for video adapter in C#

I'm developing a launcher application for a 3D game on Windows. The configuration "ini" file requires the user to specify the hardware GUID for the desired device, as in, the Device Identifier GUID ...
2
votes
2answers
246 views

Error calling C++/CLI constructor from C#

I am trying to save and restore state by using a StateBlock in SlimDX via the following snippet: StateBlockMask mask = new StateBlockMask(null) { RasterizerState = true }; var sb = new ...
2
votes
1answer
497 views

C#: Unable to create DirectX device. Neither Hardware type or Software type works

I'm trying to create a DirectX device through the following code: Caps deviceCapability; int deviceAdapter = Manager.Adapters.Default.Adapter; try { deviceCapability = Manager.GetDeviceCaps( ...
2
votes
1answer
361 views

Managed Direct3D: Lock entire Vertex Buffer

I have a Mesh object returned from Mesh::TextFromFont and I am trying to set the color of each vertex. I am calling the vertex buffer's Lock function like this: mesh->VertexBuffer->Lock(0, ...
1
vote
1answer
18 views

Transparency between RenderToSurface

In my DirectX application, I need to display some image over the background video/image. I am using RenderToSurface to draw all small images on a single surface and then try to draw over the ...
1
vote
1answer
246 views

Quick code to get a WPF Visual to DirectX Texture (performance wise)

Well, the problem is simple, I have something rendered on a WPF Visual. I want to get it to on a DirectX Texture. At present, I using the following code to get the job done. var bmp = new ...
1
vote
1answer
74 views

Is Managed implementation of DirectX discontinued

I just wanted to know whether Microsoft has dropped the Managed implementation of DirectX as mentioned here is it true? Please if you can get any link directly from Microsoft website about the same.
1
vote
1answer
2k views

Simple HLSL glow/blur effect in DirectX9

I have been struggling for days to find any resources to help me write a simple glow/blur shader using High Level Shader Language and DirectX 9 Managed Libraries. All I need to do is have an array of ...
1
vote
1answer
374 views

DirectX 9 - Create device and render to texture inside DLL?

I am trying to create a Managed DirectX 9 Device in a DLL and then use that DLL to render scenes to an offscreen surface. I know how to do the offscreen rendering, but my question is: Is it ...
1
vote
1answer
136 views

System.ExecutionEngineException Help

Background: I am using DirectX 9.0 Managed Libraries to transform arrays of 3d points to 2d screen coordinates. For speed I use the UnsafeNativeMethods to do all the transformations. The Problem: ...
1
vote
0answers
627 views

WPF doesn't always repaint when using WindowsFormsHost

I have a simple application which is hosting a Managed DirectX Control using WindowsFormsHost. I've overridden the paint methods in the Control to prevent flicker: protected override void ...
1
vote
1answer
361 views

Is D3DImage causing airspace problem?

A DirectX scene can be drawn inside of a WindowsFormsHost, but this solution concerns struggling with some interop issues, mainly the 'airspace' problem. Thus, before creating whole framework for ...
1
vote
1answer
122 views

Managed DirectX

This is a pretty deep topic I guess, so any url's with insight info is also gladly accepted. I've been working a lot with native directx, never managed. On the other hand, mostly when developing other ...
0
votes
0answers
41 views

Getting E_NOTIMPL while loading Effect file in DX 9.0

i m trying to load effect file in C# using Managed DirectX 9.0, but i am getting E_NOTIMPL error while loading effect file. I have build effect using nVidia FX Composer 2.5 and it doesn't give any ...
0
votes
2answers
174 views

Managed DirectX: Specifying the Depth (Z-Order) of Sprites containing Texture and Text

I am using managed DirectX to try and draw a texture and a piece of text to the screen using a Sprite. Unfortunately, if I place the text and the texture in the same sprite, the texture overwrites ...
0
votes
0answers
40 views

Need help in shader file with multipass

I need help to apply shader effect in multipass . I need to apply two different effect in two different passes when i combine this in single pass it working fine but not working with two passes. i am ...
0
votes
2answers
97 views

Combine multiple small texture into large texture

Sorry for this, may be this is very basic question, I have multiple small texture with different size and co-ordinate, and i want apply some transition on this. So i need to combine all this textures ...
0
votes
0answers
259 views

DirectX camera positioning into different method

I've just started the DirectX using C# tutorial series on riemers.net but I've stucked at the 5th tutorial, Rotation - Translation. The issue appears when I move the camera positioning code into ...
0
votes
2answers
1k views

SlimDX DirectInput Initialization

I've recently swapped from MDX 2.0 to SlimDX, using Direct3D 11, but I'm struggling to implement keyboard and mouse controls. In MDX you can use keyb = new ...
0
votes
1answer
260 views

Flickering Mesh Problem: DirectX HLSL

The Problem: I am rendering a mesh using HLSL (High Level Shader Language) in Managed DirectX 9. Depending on the complexity of the mesh (number of vertices and faces) I sometimes get problems with ...
0
votes
1answer
201 views

Saving a non-pow-2 dimension screen capture in Managed DirectX

I'm attempting to capture a rendered screen from a Managed DirectX application. Typically, the way to do this is as follows: Surface renderTarget = device.GetRenderTarget(0); ...
0
votes
1answer
135 views

Not able to get stencil to work

Was trying to get Stencil to work in my app. I use Sprites to render content on to the Device. Content could be movies, pictures or text. Can I set the stencil buffer using these Sprites, which can ...
0
votes
1answer
463 views

Managed DirectX Camera Issue

I am a bit new to the DirectX library and I am wondering if anyone can help me with a camera issue. In my main form I load a set of polygon data representing a 3D object and then pass that polygon ...
0
votes
2answers
960 views

Missing Direct3D.dll dependency while using MDX

I have taken a perfectly working MDX piece of code to Windows 2008R2 (all DX drivers installed) and am getting the following, rather bizarre, error. Any idea what this could mean? ...
0
votes
2answers
148 views

Managed DirectX as a starting point

I know the difference between manage and unmanaged DirectX. My question is if I decided to do managed directX as a starting point, would it help me to better understand unmanaged DirectX. Honestly, ...
0
votes
1answer
471 views

Rotate text - Managed DirectX (C#)

I am currently developing a little application with a highly-dynamic GUI which needs a lot of refreshing and drawing. To archive this, I am using managed DirectX. I successfully painted a little ...
0
votes
1answer
152 views

How do I check for a 32-bit z-buffer using Managed Direct3D?

I understand that a call to Manager::CheckDepthStencilMatch should get me an answer, but so far I have not been able to gather the pieces required to make this call effectively. In particular, I need ...
0
votes
1answer
121 views

Tracing unmanaged DirectX objects allocated through Managed DirectX

I have a problem where Device.Dispose() is taking a long time to execute when the application is closed. I am investigating whether this is due to unmanaged objects not being freed properly thus ...
0
votes
1answer
198 views

Basic samples for shader in Managed DirectX

I am new write a pixel shader and use in my managed directx project, where i can get some basic sample to start it.
0
votes
1answer
111 views

Determining adaptor identifier with Managed DirectX

Creating a new Managed DirectX device on a single monitor setup is easy, I call the device constructor with adapter identifier 0 ( or Manager.Adapters.Default.Adapter). On a multiple monitor setup I ...
0
votes
1answer
192 views

What does SetPrivateData does in Managed DirectX?

Iv'e seen this method for a Texture, would someone explain me what does it do?
0
votes
1answer
249 views

directx basic capability testing

I have a managed directx 9.0c application that fails to run on some low spec machines (ones without graphics card). I am wondering if anyone has any suggestions with regards to the minimum directx ...
0
votes
2answers
514 views

How to redistribute Managed DirectX?

I've developed an app which uses the Microsoft.DirectX.Direct3D namespace. The app runs on computers which have the Managed DirectX SDK installed, but not on those which have only the usual DirectX. ...