1
vote
1answer
30 views
D3D Performance comparison, shaders vs built in shading
Hi there.
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 …
0
votes
0answers
11 views
XNA .Fbx textures
Hello. I'm using the standard .fbx importer with custom shaders in XNA. The .fbx model is UV wrapped properly and is textured appropriately when I use BasicEffect. However when I u …
0
votes
0answers
7 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
192 views
Help with Pixel Shader effect for brightness and contrast
What is a simple pixel shader script effect to apply brightness and contrast?
I found this one, but it doesn't seem to be correct:
sampler2D input : register(s0);
float brightnes …
-1
votes
0answers
30 views
Shader files for hue\saturation\brightness
I am new to write a shader files(.fx), how can i write shader file to set hue\brigtness\contrast.
0
votes
3answers
24 views
video file + fragment shader under Linux
coming from Windows (MSVC++ 2005):
What SDK or alike do you recommend to port an C++ application (DirectShow+Direct3D) to Linux playing video file + using fragment shaders?
Tom
0
votes
1answer
109 views
Stacking Cg shaders
In my engine I load Cg shaders from pairs of vertex/pixel shader files. I would like to be able to stack shaders to combine them (lighting + material, etc.). Short of breaking up t …
0
votes
1answer
44 views
Creating high performance animations in WPF
Hi All,
I'm in a situation that requires many animations with effects like transparency to be applied but when there are about 10 of them running, my application slows down to a g …
0
votes
1answer
24 views
Hooks for Direct3D 6.1 to replace EMBM with shaders
I am writing Windows Hooks for DirectX 6.1. I want to intercept calls for EMBM (Environment Mapped Bump Mapping) and pass the data to own bump shader, so application which depend o …
2
votes
2answers
183 views
XNA SpriteBatch and BasicEffect not compatible?
I would like to control ambient lighting for a 2D SpriteBatch rendered set of graphics on a global scale. I realise I can do this by blending the color passed into SpriteBatch.Draw …
0
votes
1answer
91 views
wpf shader template
I used the shader templates given through Greg Schechter's blog: http://blogs.msdn.com/greg_schechter/archive/2008/08/11/a-visualstudio-buildtask-and-project-and-item-templates-for …
2
votes
3answers
727 views
Jogl Shader programming
I just started Shader programming(GLSL) and created a few with RenderMonkey. Now I want to use this Shaders in my java code. Are there any simple examples of how I do that?
0
votes
1answer
152 views
WPF pixelshader on writeable bitmap
Hey,
While experimenting with pixel shaders in WPF I decided to draw some pixels onto a fullscreen image through writeable bitmaps based on the MSDN sample
http://msdn.microsoft.c …
1
vote
1answer
86 views
Problem with HLSL looping/sampling
I have a piece of HLSL code which looks like this:
float4 GetIndirection(float2 TexCoord)
{
float4 indirection = tex2D(IndirectionSampler, TexCoord);
for (half mip = indi …
3
votes
2answers
219 views
What options are there for GLSL shader development on OS X?
Apple's Shader Builder is not terribly advanced. I was wondering if there are any better choices for OS X other than running something under bootcamp.
