Tagged Questions
1
vote
1answer
149 views
Use multiple pixel shaders?
I just started using pixel shaders with xna, but I can't wrap my head around several things, and it seems there is no clear answer anywhere...
I use spriteBatch.Begin(SpriteSortMode.Immediate, ...
0
votes
1answer
112 views
Silverlight Custom effect, get parent
I am trying to create a custom effect by inheriting from Effect.
<Ellipse Width="75" Height="75" Stroke="LightGray">
<Ellipse.Effect>
<local:GlowEffect GlowRadius="10"/>
...
1
vote
1answer
777 views
Directx 11 HLSL Glow Effect
In Directx 11 how can you make an outline glow effect for an object (yes, I do understand that I have to pass only this shader for the object), so it seems like it's kind of selected.
I have seen ...
0
votes
0answers
188 views
XNA: Draw primitives (lines) with pencil effect?
(Sorry if my english is bad)
It's posible to draw a line with pencil effect in HSLS effect file?
With a sample texture, maybe?
This is the effect that i want to reach. (the outline/edges)
...
0
votes
1answer
173 views
How to store Effect parameters in class ?
How to store Effect parameters in class ?
I'm stuck in this problem for the 3rd day now and I think I'm slowly going to be insane.
I tried to create a class named EffectParameter so I can store/set ...
0
votes
1answer
539 views
DirectX: How to apply an Effect to a texture drawn with ID3DXSprite.Draw(..)
I want to write a very simple Effect for a DirectX program which uses the ID3DXSprite interface to draw a 2D-Hud. In XNA I simply called
spriteBatch.Begin(SpriteBlendMode.AlphaBlend, ...