SharpDX is an open-source project delivering the full DirectX API under the .Net platform, allowing the development of high performance game, 2D and 3D graphics rendering as well as real-time sound application.

learn more… | top users | synonyms

0
votes
0answers
26 views

SharpDX change image contrast and sharpness C#

I'm using SharpDX on Windows 8 to manipulate the image. I want to change its contrast and sharpness, but I cannot find a way how to do this. Does anyone know how to do this on windows 8? Any help ...
1
vote
1answer
41 views

SharpDX. Unsupported pixel format

I use SharpDX and have a problem with PixelFormat. I want to make it A8_UNorm and use an OpacityMask but I get an UnsupportedPixelFormatException. But according to MSDN everything should be alright. ...
1
vote
2answers
68 views

Using XNA content pipeline with SharpDX game for Windows Phone 8

I've decided to try out SharpDX for my first Windows Phone game but I'm having troubles setting up Content Pipeline working. I have tried creating an XNA Content Project and dummy XNA Game Library ...
3
votes
1answer
198 views

How to create bitmap from Surface (SharpDX)

I am new to DirectX and trying to use SharpDX to capture a screen shot using the Desktop Duplication API. I am wondering if there is any easy way to create bitmap that I can use in CPU (i.e. save on ...
0
votes
0answers
101 views

Add photo frame to image in Direct2D using C#

I'm developing a windows store app using C#. I want to add photo frame to an image using Direct2D. How do I this photo frame effect in Direct2D? This is my code: using (Graphics grfx = ...
0
votes
1answer
76 views

DirectX texture sharing: same data, different formats?

I'm using SharpDX but this is really a general DirectX question. I have a D3D10 Texture2D. How do I create a D3D11 Texture2D that points to the same pixel data but specifies a different pixel format? ...
1
vote
1answer
159 views

SharpDX: Create a D3D11.Texture2D from D3D10.Texture2D?

I'm using SharpDX and trying to create a D3D11.Texture2D that points to the same data as an existing D3D10.Texture2D. I think that I need to get a DXGI.Surface and use that to create the new texture, ...
0
votes
1answer
157 views

How can I use SharpDX.Toolkit to manage constant buffers for compute shaders?

I'm using SharpDX to run compute shaders and I use constant buffers for some inputs. I create the constant buffers myself and use them in compute shaders like this: // 'device' type is ...
0
votes
1answer
46 views

SharpDX, can't find a function

I am trying to use the CreateRenderTargetView function since I am transcribing C++ DirectX over to C#. I am using D3D11. It there a substitution for CreateRenderTargetView that I could use?
0
votes
0answers
84 views

Xaudio2 crashes windows8 app

We have a windows8 metro app that plays sounds using xaudio (we use monogame which uses sharpdx) We get a crash report quite often and in the windows event viewer we see: (Any idea what might be the ...
9
votes
1answer
314 views

Now that Xna is unsupported, what is a better choice? [closed]

Xna is unsupported, and unfortunately I started game programming recently(~9 months). What is a better choice, DirectX or OpenGl. Now, I don't think DirectX or OpenGl have official libraries for C#, ...
0
votes
0answers
124 views

SharpDX and VS2012 Shader Debugging: Shader Variables Values Wrong or Non sense

I encountered a strange problem that I can't solve. In graphics debugging the pixel history show correct values but if i debug any shader, debugger watch variables, show strange values sometimes ...
-1
votes
1answer
51 views

StackOverflowException in RenderTarget.EndDraw();

i'm new to DirectX (And lower level drawing libraries in general) and I have what might be a pretty stupid question. I have a draw loop, and after a while it gives me a stack overflow tracing back to ...
1
vote
1answer
187 views

Creating a dummy HWND to pass to Direct3D

I'm trying to translate the D3DImage sample to pure C# with SharpDX. Direct3D requires a HWND to initialize, and this is how it's done in C++: WNDCLASSEX g_wc = { sizeof(WNDCLASSEX), CS_CLASSDC, ...
0
votes
1answer
283 views

SharpDX. truble with lighting

I'm using SharpDX d3d9 to make sphere with lighting effect. so, I tryed below code. var direct3D = new Direct3D(); var device = new SharpDX.Direct3D9.Device(direct3D, 0, ...
0
votes
2answers
99 views

How to convert a pixel array to a dds

I have an array of pixels (WriteableBitmap.Pixels), and I need to save it as a DDS image. Does anyone have any advice on how to do this? I have looked at the Humus image converter, aswell as DevIL, ...
1
vote
1answer
831 views

Can I code Windows 8 RT Games in C#

Is it possible to code a Windows 8 RT and/or Windows 8 Phone game using C#?
0
votes
0answers
118 views

SharpDX.MediaFoundation in WinRT

I'm new to MediaFoundation and I want to use it's functionality with SharpDX, because I prefer C#. I'm making an Windows store App that would: *1)*overlay two images(e.g background + ...
1
vote
1answer
94 views

Finding width of the GlyphRun in sharp dx

I could not manage to calculate the width of the glyphRun using the sharp DX. Below is the code I use to render the glyphRun and the string needs to be rendered as char as below. private void ...
0
votes
1answer
312 views

Resizing and position a SharpDX sprite

I'm trying to resize a DirectX Texture and place it in the top right corner of the window. I am drawing the texture using a sprite, here's is my code (I am using SharpDX): albumArtSprite.Begin(); ...
0
votes
0answers
125 views

sharpdx xaml interop

I've started to play with SharpDX toolkit and I'm trying to use XAML UI for my experiments. Yesterday I've stumbled upon a very strange problem. I was trying to show all currently pressed keys in a ...
2
votes
2answers
1k views

Best way to play two audio files simultaneously in Windows Phone 8

Currently looking into how I can go about playing two mp3 or aac format files at the same time in Windows Phone 8. At the moment I am using the XNA SoundEffect class but that only allows WAV files ...
0
votes
1answer
166 views

DirectX Unproject troubles

I have an orthographic projection and I try to unproject a point from screen space. Following are the view and projection matrices: var w2 = ScreenWidthInPixels/2; var h2 = ScreenHeightInPixels/2; ...
1
vote
0answers
296 views

WP8 video streaming with Media Foundation

I wish to streaming H264 video to Windows Phone 8 application. So how I can do it with ShardDX? (Or maybe native function from Media Foundation). I found MediaEngine class for playing video, but I ...
0
votes
1answer
143 views

Is it possible to always draw a 1 pixel (device independent) line direct2d?

I'm using the DrawLine function on the render target and would like to always draw a line that is one (device independent) pixel thick. My problem is that I have a transform which has wildly ...
0
votes
1answer
293 views

How to print the content rendered to SurfaceImageSource?

I am using SharpDx to render some shapes in the Image control in WinRt. How can I print the content rendered to a printer? private void RenderGraphics() { KSurfaceImageSourceManager ...
0
votes
1answer
75 views

Performing World <--> Device transforms in Direct2D

In GDI+, the Graphics object has a TransformPoints function which allows you to specify coordinate transforms for either device to world or world to device. In SharpDX I can take device (independent) ...
1
vote
1answer
270 views

How can I play multiple sounds at the same time using SharpDX in WinRT?

I am trying to make a musical instrument type of application. The problem I am having is that a new sound will only play if the old one is finished. I would like to be able to play them ...
0
votes
0answers
235 views

Can anybody provide WinRt SharpDx samples and Blog links? [closed]

I am very new to DirectX, I am doing winrt application so I need to do some sharpDX coding, but I did not get the good documentation in sharpDX website. If anybody provides SharpDx with winRT sample ...
2
votes
1answer
727 views

Optimal vertex buffer handling in DirectX11

I'm writing some code that is drawing 2D sprites using D3D11 (SharpDX for WinRT apps). All of this is working, however it is not fast. Here's a bit of the code I'm using: // Setup local ...
0
votes
0answers
128 views

Render streaming from webcam to texture in background

I'm writing an application on Windows 8 and encountered one major problem. Namely, I want to display 3D objects on an image from a webcam, which should be in the background. I have already 3D models ...
0
votes
0answers
179 views

Windows 8/WinRT: Background support for sharpdx (playing wav with xaudio2)

I have a working app that loops wav files using SharpDX. But the only issue is that it does not have background support. So if you switch to another app it stops playing. Does anyone know if it is ...
2
votes
1answer
91 views

Set zoomvalue of a perspective equal to perspective

I'm building a little shape editor with two viewmodes: orthogonal and perspective view. So i found it would be nice, if the zoomvalues of the perspective and the ortho are equal (or as equal as they ...
3
votes
1answer
384 views

How do I choose a pixel format when creating a new Texture2D?

I'm using the SharpDX Toolkit, and I'm trying to create a Texture2D programmatically, so I can manually specify all the pixel values. And I'm not sure what pixel format to create it with. SharpDX ...
0
votes
1answer
109 views

Access Violation at SwapChain.Present

I have a very annoying problem at the following lines of code: try{ mSwapChain.Present(0, PresentFlags.None); //AccessViolationException, caught by debugger }catch(Exception Ex){ throw Ex; ...
2
votes
0answers
67 views

camera as the background

I've ran into a couple of problems when trying to use notebook webcam preview in app. I'm trying hard to use the camera as the background for 3D models in Xaml. Let me put it that way: - XAML is ...
6
votes
1answer
232 views

Difficult Marshalling DirectX array of structs from C++ to C#

Goal: Marshal C++ (pointer to an?) array of structs to C#. C++: CreateVertexDeclaration() HRESULT CreateVertexDeclaration( [in] const D3DVERTEXELEMENT9 *pVertexElements, ...
0
votes
1answer
463 views

Performance Issues with SharpDX and D3DImage

I have a control that uses D3DImage to host a SharpDX DirectX9 surface and allows use to pan, zoom, and interact with world objects and the result is really awesome. Performance is actually an ...
4
votes
3answers
378 views

A function like “glReadPixels” in DirectX / SharpDX

I'm searching for a way to read a pixels color at the mousepoint. In OpenGL it was done by calling the function "glReadPixels" after drawing the scene (or parts of it). I want to make a simple color ...
0
votes
1answer
337 views

Generate Image as byte[] in WinRT with SharpDX

I'm trying to generate a simple image and display it in WinRT/XAML. For that I want the byte[] of an image drawn with SharpDX. My Approach so far seems fine but the resulting buffer is empty. I tried ...
1
vote
0answers
115 views

Error compiling a pixel shader

I am trying to compile a pixel shader to be used in SharpDX - more specifically, as an Effect (to apply to an image). I am compiling it using their tkfxc compiler. The shader code is: float4 ...
0
votes
0answers
75 views

How to apply video processing on the GPU

I have a issue in programming for the graphics Card. I write a shader for Image processing (I use DirectX 11 in combination with SharpDX), but the Transfer from the CPU to the GPU is really slow ...
1
vote
1answer
589 views

SharpDX: Initializing a Texture2D from a DataStream fails (though Texture1D works fine)

I'm trying to create a SharpDX.Direct3D11.Texture2D from in-memory data but always get a SharpDXException (HRESULT: 0x80070057, "The parameter is incorrect."). I have used a Texture1D for this ...
1
vote
1answer
362 views

Multisampling (MSAA) for DirectX11/DirectX10 with D3DImage shared resource

I am trying to get MSAA in DX11 using D3DImage, but is seems, it is not possible, since shared multisampling texture are not allowed, as stated here: ...
0
votes
1answer
216 views

How can I play a .wav file using SharpDX DirectSound in a C# WPF project?

I want to be able to precisely control the timing of .wav files played in my program. I also want to be able to play more than one .wav file at the same time. The SoundPlayer was not good enough ...
-1
votes
1answer
222 views

Create cube in a Windows 8 metro app with textures [closed]

I have to develop a 3D Cube in a XAML/C# metro app for win8. The cube should have different textures, one on each side. I startet with SharpDX to create 3d devices. I created one ...
0
votes
0answers
219 views

Media Extension Sample Sharpdx.MediaFoundation winrt

Being new to Media Foundation, I was wondering if anyone with SharpDX.MediaFoundation experience knows if it is technically possible to convert the ...
1
vote
0answers
483 views

2D sprite game for WinRT: Should I use Direct2D BitmapSourceEffect or use custom simple shaders to do the rendering?

Context I am building this multiplayer D&D encounter tool (in C# for WinRT) which is a simple 2D grid based utility where each player can control their character with the DM being able to control ...
0
votes
1answer
419 views

SharpDX Texture2D to Bitmap

I have a problem with using SharpDX. I convert a Bitmap, lock the bits with the lockBits method and then create a DataStream and build a Texture2D from it. This seems to work quite well, no error ...
0
votes
1answer
306 views

Getting a SharpDX XAudio2 custom XAPO working in Windows 8 app

I'm using SharpDX and XAudio2 in a Windows Store app. I'm trying to create a custom XAPO and I can't even get started. OnNavigatedTo method for the app: protected override void ...

1 2