Tagged Questions
SlimDX is an MIT-licensed, open-source framework that allows developers working with managed languages like C# and IronPython to leverage DirectX and many of Microsoft's other gaming-related multimedia APIs.
14
votes
2answers
602 views
What is a good code structure for api-independant vertex processing?
Currently working on a 3D media engine using C# and I have come across a little conundrum. I have my rending loop figured out, I got a great plug-in architecture and content management system and even ...
6
votes
1answer
413 views
Threading with the Kinect
I am writing a C# application that is using the Kinect, i am taking the output currently and writing it to a Shader Resource and rendering it as a texture, my issue is that the Kinect (apparently) ...
6
votes
2answers
468 views
Big and/or open source games based on SlimDX
Are there any major titles or open source games based on SlimDX framework out there? I understand that it's pretty much just a wrapper on top of DirectX, but it would still be interesting to see it ...
6
votes
3answers
2k views
D3DImage using DX10
Is it possible to use DirectX 10 (I am using SlimDX) with WPF's D3DImage? The only examples and docs I can find only show using DX9 surfaces.
5
votes
3answers
3k views
SlimDX viewports in WPF controls
I am transitioning from WinForms/XNA to WPF/SlimDX because:
a) all of the benefits of WPF over
WinForms (but learning curve = ouch!)
b) I would like to have multiple
SlimDX viewports attached to ...
4
votes
1answer
379 views
DirectX11: Pass data from ComputeShader to VertexShader?
Is it possible to apply a filter to the geometry data that is to be rendered using Compute Shader and then use the result as an input buffer in the Vertex Shader? That would save me the trouble ...
4
votes
2answers
2k views
playing sound with SlimDX and DirectSound (C#)
(apologies if this is a duplicate ... i posted but saw no evidence that it actually made it to the forum)
I've been trying to get SlimDX DirectSound working. Here's the code I have. It fills the ...
4
votes
5answers
1k views
SlimDX - how did you find it?
Has anyone out there used the SlimDX library for something serious (e.g., commercial) work? How did you find the library? Is it production-ready?
3
votes
1answer
346 views
Multiple Render Targets not saving data
I'm using SlimDX, targeting DirectX 11 with shader model 4. I have a pixel shader "preProc" which processes my vertices and saves three textures of data. One for per-pixel normals, one for per-pixel ...
3
votes
1answer
247 views
How to make primitives correctly overlay sprites in DirectX (2D)
I've got a problem with rendering sprites and primitives in Direct3D9. I'm trying to make a simple 2D game using sprites, however I've found out that I'll also need primitives to draw simple squares, ...
3
votes
3answers
575 views
WPF, XNA, SlimDX … suggestion for a CAD-like desktop application? (C#)
This is what I have to do:
To build a CAD-like application that loads a point cloud (i.e. thousands of 3D points representing a 3D object) from file, allows the users to manipulate the points (i.e. ...
3
votes
2answers
167 views
API agnostic Vector3, Matrix, etc.?
I'm trying to keep my game logic API-agnostic. In doing so, I don't want to use Unity3D's Vector3 struct, or XNA's, etc. What's the best way to do this? It seems like it would be awfully cast-heavy if ...
3
votes
3answers
1k views
Which would be the best 2D graphics library?
Okay, I bet this question might have been asked dozens of times before, but at the end of the day, I am still confused.
I am working on a charting/plotting application. My application will also have ...
2
votes
0answers
86 views
Marshalling C# Structs into DX11 cbuffers
I'm having some issues with (i think) the packing of my structure in C# and passing them through to cbuffers i have registered in HLSL. When i pack my struct in one manner the information seems to be ...
2
votes
1answer
133 views
Incorrect Clipping and 3D Projection when using SlimDX
I am working on a simple project whereby I wish to display a 3D object within a WinForms application using SlimDX. I have created a small project to do this, but I am encountering a problem where the ...
2
votes
1answer
267 views
NV_STEREO_IMAGE_SIGNATURE and DirectX 10/11 (nVidia 3D Vision)
I'm trying to use SlimDX and DirectX10 or 11 to control the stereoization process on the nVidia 3D Vision Kit. Thanks to this question I've been able to make it work in DirectX 9. However, due to ...
2
votes
1answer
350 views
C# Capturing A Fullscreen Game With SlimDX
I have recently made an application that takes screenshots of games.
First I used GDI to capture the game but for that I had to disable aero at win7/vis and I had some issues on windows XP.
Than I ...
2
votes
2answers
356 views
PIX Call that Previously Succeeded Failed During Playback error on IASetVertexBuffers()
I'm trying to debug the shaders in a SlimDX DirectX11 game I've been coding for a while. The code runs fine and executes without a hitch (albeit seemingly ignoring my textures) and when I run an ...
2
votes
1answer
136 views
2
votes
1answer
287 views
How to Unproject in SlimDX
I am new to game programming as well as new to DirectX & SlimDX. Currenty I am converting a MDX code to SlimDX code and I got stuck into an issue which I am unable to find out in the SlimDX ...
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
565 views
SlimDX Constant Buffer Creation Causes an Invalid Parameter Exception
I have the following code to instantiate a constantbuffer and bind it to the pixel shader. ConstantBuffers.EveryFrame is a struct in the ConstantBuffers class which holds all of the data I need to ...
2
votes
1answer
552 views
Direct3D 11 WorldViewProjection Matrix Transformation Not Working
I have a simple square I'm drawing in 3D space using Direct3D 11 and SlimDX, with the following coordinates (I know it renders)
0,0,0.5
0,0.5,0.5
0.5,0.5,0.5
0.5,0,0.5
I have a camera class that ...
2
votes
2answers
1k views
SlimDX and WPF via D3DImage
I've written some code using SlimDX and WPF where I would expect the end result to be a red screen.
Unfortunately all I get is a black screen.
This is on windows 7.
Can anyone see anything major ...
2
votes
1answer
3k views
SlimDX Device.Reset crashes with a “D3DERR_INVALIDCALL: Invalid call (-2005530516)” error
We recently upgraded from 2005 to VS 2008 (Windows XP). We use SlimDx in one of our projects. All was working ok after the upgrade, except my "Recover" function, which gets called on devicelost/device ...
2
votes
3answers
187 views
GC collecting…what?
I am trying to optimize my engine (C# + SlimDX) to make as less allocations as possible (to prevent the GC from firing too often) using as guide a profiler that gives me where the garbaged object are ...
2
votes
1answer
2k views
What to use for C# SlimDX Game UI
I am currently developing a 3d game using C#/SlimDX (The target is Direct3D 9). I've been looking for a suitable Game UI toolkit for a while, but I was unable to make up my mind.
The Game UI will be ...
2
votes
2answers
4k views
Drawing 2D with SlimDX
Hello I'm having trouble rendering correctly sprite with SlimDX. It draws a little scaled just like .NET Drawing DrawImageUnscaled does. I'm not using any transformations.
Init:
Vector2 position;
...
2
votes
2answers
3k views
Efficient Line Drawing In Direct3D (Transformation2D?)
Background: I'm using the SlimDX C# wrapper for DirectX, and am drawing many 2D sprites using the Sprite class (traditionally from the Direct3DX extension in the underlying dlls). I'm drawing ...
1
vote
0answers
34 views
SlimDX Learning resources
I don't have much experience with DirectX 11 and I would prefer to use C# instead of C++. What would be a good start with SlimDX? Does it support things like texture or model loading? It seems to ...
1
vote
1answer
81 views
WPF UI not rendered when Direct3D content is rendered using SlimDX
I'm working on a project where I have a D3DImage hosted in a WPF application. I have other WPF controls being rendered over the D3DImage, each with transparent backgrounds. However, when I render my ...
1
vote
0answers
125 views
SLIMDX antialising
I try to get the high qulity antialiasing from a tuturial I found on the internet ...
1
vote
1answer
67 views
SlimDX - Set state block
I want to set states in SlimDX Direct3d9 device.
I have that code at the beging of frameRender function.
device.BeginStateBlock();
device.SetRenderState(RenderState.ZEnable, false);
...
1
vote
1answer
67 views
SlimDX - Terminate Thread
I created new window and I used SlimDX.Windows.MessagePump.Run on a new thread.
How can I stop that loop?
1
vote
1answer
93 views
Why does a valid Texture not reach the Shader? (Direct3D9)
Hello everyone I'm currently trying to create a deferred renderer for my graphics engine using c# and SlimDX. As a resource I use this tutorial which is very helpful eventhough it's intended for XNA.
...
1
vote
1answer
482 views
SlimDX/DirectX9/C# - How to access pixel-data in a Texture
This is my first question ever on StackOverflow, hurray! I can honestly say I use StackOverflow on daily basis for both my work and personal programming mysteries. 99,9% of the time I actually find ...
1
vote
0answers
545 views
SlimDx D3DERR_INVALIDCALL: Invalid call (-2005530516)
So, I'm trying to render a circle and a line in SlimDx, but I keep getting this exception:
Error: SlimDX.Direct3D9.Direct3D9Exception: D3DERR_INVALIDCALL: Invalid call (-2005530516)
at ...
1
vote
1answer
140 views
Drawing lines with rounded endings with Direct3D
Is there any way to draw a line using ID3DXLine with round endings? I am trying to draw a curve from number of line segments, but getting the empty areas where the line segments are connecting.
...
1
vote
1answer
119 views
Performance using D3D10/11 and MDI windows
I'm working on an MDI app that might hold some a lot (>40) real-time (30 fps) updating graphs; each graph has to potentially render 3D geometry in it. I've tried using Direct2D for each window using ...
1
vote
1answer
182 views
How do I set the value of a HLSL uniform variable with SlimDX?
I haven't been able to find the documentation for this, but it's probably pretty simple. I have a pixel shader which needs variables to be updated. The only thing I've come close with is the ...
1
vote
2answers
217 views
Prevent Direct3D viewport image from scaling (SlimDX)
I have a Direct3D11 scene set up in SlimDX in a window. The rendering is done in a separate thread.
Is there a way to keep the renderer from stretching the image when it draws to the resized ...
1
vote
1answer
134 views
SlimDX VertexDeclaration memory leak? - How to avoid it?
I've got a problem with my SlimDX / DirectX application. I've got a loop made using SlimDX's MessagePump, and I had a problem with my application using excessive amount of memory, which was ...
1
vote
0answers
175 views
SlimDX rendering a visual to a bitmap
I want to render a viewport3d visual to an image using hardware rendering. How could I do that using SlimDX? I'm using WPF & VB.NET 4.0 and SlimDX. Any tips will help, thanks in advance. :)
Here ...
1
vote
4answers
380 views
SlimDX vs. SDL - Which is the best?
For those who have experience, working with VB.NET, it's easier to use SlimDX or SDL? The tutorials for SlimDX are already written for .NET, but I've read that SDL it's a lot easier than DirectX ...
1
vote
1answer
186 views
WPF D3DImage loses front buffer
I am writing code using VS.Net 10 and SlimDX to render 3D content on a D3DImage. It works perfectly under 32 Bit Windows XP. However, after migrating to 64 bit Windows 7 (quad core and 4 GB Ram), the ...
1
vote
3answers
1k views
SlimDX and WPF (DirectX 11)
I want to use SlimDX (DirectX 11) to render the contents of an Image in WPF.
The problem is that I can't find a way to link the SwapChain to a D3DImage. (The DirectX 11 example uses the SlimDX ...
1
vote
1answer
134 views
Find out which display belongs to which adapter?
I'm working on a SlimDX apps which works for multiple display. The apps will occupy the selected display, and it's selection is input via commandline, as int. I then use ...
1
vote
1answer
572 views
Passing parameters to the constant buffer in SlimDX Direct3D 11
this is related to Setting up the constant buffer using SlimDX
I have a shader, which is very simple and looks like this:
cbuffer ConstantBuffer : register(b0)
{
float4 color;
}
float4 ...
1
vote
1answer
882 views
Setting up the constant buffer using SlimDX
I've been following the Microsoft Direct3D11 tutorials but using C# and SlimDX. I'm trying to set the constant buffer but am not sure how to either create or set it.
I'm simply trying to set three ...
1
vote
3answers
706 views
SlimDx FullScreen Switching Problem to Window Mode
// handle alt+enter ourselves
form.KeyDown += (o, e) =>
{
if (e.Alt && e.KeyCode == Keys.Enter) {
bool Full;
Output ThisOut;
...