Pixel shaders, also known as fragment shaders, compute color and other attributes of each fragment. Pixel shaders range from always outputting the same color, to applying a lighting value, to doing bump mapping, shadows, specular highlights, translucency and other phenomena.
0
votes
1answer
18 views
DirectX: Get Filter Type in Shader
I am trying to get the filter type set in the sampler stat in the Shader code. I am not getting a way to retrieve that. Can someone suggest me a way to do that??
Texture2D InputTexture;
SamplerState ...
1
vote
1answer
16 views
DirectX: Calculate Gradient in the shader code
I am using a pixel shader code that uses the Sample Function. I want to use SampleGrad and hence want to calculate the derivatives in my shader code. Is there a way to do the same?
Thanks.
0
votes
1answer
31 views
HLSL Normal Mapping Matrix Multiplication
I'm currently working in directx9 and have the following code for my normal mapping:
(Vertex Shader):
float4x4 gWorldMatrix;
float4x4 gWorldViewProjectionMatrix;
float4 gWorldLightPosition;
float4 ...
1
vote
1answer
17 views
Is the distinction between vertex and pixel shader necessary or even beneficial?
From what I've been able to get, both vertex and pixel shader operations boil down to passing data and doing a lot of the same with it for every available unit. Surely, vetex and pixel shaders are in ...
0
votes
1answer
31 views
Image Effect with Dark Borders
I was creating an effects library for a PhotoBooth App. I have created effects like Black/White, Vintage, Sepia, Retro etc. etc.
I wanted to create a few effects now in which I wanted to have a Dark ...
1
vote
1answer
39 views
HLSL: Getting texture dimensions in a pixel shader
I have a texture and I need to know its dimensions within a pixel shader. This seems like a job for GetDimensions. Here's the code:
Texture2D t: register(t4);
...
float w;
float h;
t.GetDimensions(w, ...
0
votes
0answers
29 views
tex2Dlod in HLSL ps_4_0
My question is about using tex2Dlod in Windows Phone 8 app.
When I want to use tex2Dlod in my pixel shader (ps_4_0 level 9_3), I got error about using intrinsic-style texture lookup functions. So as ...
0
votes
0answers
50 views
C#, windows forms, is there a way to apply resize filter or some effects to video?
I'm writing small media player as a university task. It's in C#, windows forms.
For video/audio playback i'm using microsoft.directx.audiovideoplayback library, then the video is displayed in the ...
0
votes
1answer
71 views
Performance of dynamic constant buffer indexing in pixel shaders
I have a pixel shader, written in HLSL, that declares the following constant buffer:
cbuffer RenderParametersData : register(b2)
{
float4 LineColor[16];
};
In one of the shader functions, I ...
0
votes
1answer
36 views
Efficient pixel shader when only u-axis varies?
I'm writing a pixel shader that has the property where for a given quad the values returned only vary by u-axis value. I.e. for a fixed u, then the color output is constant as v varies.
The ...
0
votes
1answer
97 views
How to achieve supersampling / anti-aliasing in pixel shaders?
I am trying to write a couple pixel shaders to apply to images similar to Photoshop effects. For example this effect:
...
2
votes
0answers
44 views
VS2012 Shader Designer broken algorithm?
I was having no end of trouble with this function, emitted by the shader designer in VS2012. If you look at the code below, you can see the difference between the VS Version and MY Version.
In the ...
2
votes
1answer
78 views
Can a pixel shader run more than once per pixel per draw call in DirectX 9?
If I have multiple overlapping triangles in the same draw call, is my pixel shader entered for each pixel once per primitive that covers it? Or is the depth test performed first, and the shader is ...
2
votes
1answer
162 views
Reading from multiple render targets in DirectX
I have two render target views, my back buffer and a Texture2D that represents a specialized mask (I can't use the stencil buffer for what I need). My render method looks roughly like this:
// clear ...
2
votes
2answers
382 views
HLSL Pixel shader lighting performance (XNA)
I have a simple enough shader that supports multiple point lights.
Lights are stored as an array of Light structs (up to a max size) and I pass in the number of active lights when it changes.
The ...
0
votes
0answers
48 views
How to convert a 8bits color FF FF FF FF to a 32bits color in a shader
I want to convert, in a pixel shader, a 8bits color (3bits for red, 3bits for green, 2bits for blue so RRRGGGBB) to a standard 32bits (r:FF g:FF b:FF a:FF).
8bits encode shader can be changed if ...
1
vote
0answers
48 views
Multiplying every pixel by its alpha Open GLES 1.1 (premultiplication) & then reverse
I am working on a project that is in GLES 1.1. It has to be GLES 1.1.
But it has to do some premultiplication i.e. get every pixel, and change it from rgba = r*a,b*a,g*a,a. And then later reverse ...
0
votes
1answer
57 views
Writing only red color component to AGAL pixel shader output
I want a pixel shader om AGAL that instead of simply copying the color passed to it from the vertex shader to the output, only copies the red component from the passed color and sets the green and ...
0
votes
0answers
95 views
Painting texture layers - pixel shader
I'm creating a little editor for my terrain so I can "paint" the terrain, but I'm getting something around 20 FPS using 8 textures and 2 alphamaps from now.
My HLSL code for pixel shader:
...
0
votes
1answer
67 views
How to set multiple times, in a single spritebatch, the same pixel shader parameter
I make a test with Effect class in XNA and I want to set multiple times the same parameters (MyParameter in below code).
My code is :
[...]
//In Engine class
Effect ShaderEffect = ...
2
votes
1answer
104 views
Where to call SetRenderTarget?
I'd like to change my RenderTargets between SpriteBatch.Begin and SpriteBatch.End. I already know this works:
GraphicsDevice.SetRenderTarget(target1);
SpriteBatch.Begin()
SpriteBatch.Draw(...)
...
0
votes
0answers
50 views
HLSL and Pix number of questions
I'm having a number of isses with HLSL and Pix.
1) Can you in HLSL 3, declare a Pixel shader alone without a Vertex Shader? If not, what can I do to get around this?
2) Why does Pix skip code? I ...
2
votes
3answers
404 views
Passing colors through a pixel shader in HLSL
I have have a pixel shader that should simply pass the input color through, but instead I am getting a constant result. I think my syntax might be the problem. Here is the shader:
struct ...
0
votes
1answer
192 views
Per Instance Textures, and Vertex And Pixel Shaders?
How do you implement per instance textures, vertex shaders, and pixel shaders, in the same Vertex Buffer and/or DeviceContext?
I am just trying to find the most efficient way to have different pixel ...
2
votes
2answers
256 views
Rendering a circle with a pixel shader in DirectX
I would like to render a circle on to a triangle pair using a pixel shader written in HLSL. There is some pseudocode for this here, but I am running in to one problem after another while implementing ...
1
vote
1answer
41 views
HLSL error X3082
I have the following pixel shader function in HLSL:
float GammaCorrectA(float3 color, float alpha) {
float a = 1 - sqrt(1 - alpha);
float b = sqrt(alpha);
float t = (color.x + color.y + ...
0
votes
2answers
331 views
How to manually or automatically optimize HLSL (pixel) shader code?
What are successful strategies to optimize HLSL shader code in terms of computational complexity (meaning: minimizing runtime of the shader)?
I guess one way would be to minimize the number of ...
0
votes
0answers
38 views
CG compilation error when using ps_4_0 profile
I am trying to write a shader for DirectX 11 Render System for a compositor, Ogre3D. Because of this I need at least ps_4_0 profile for pixel shader. But I can't compile my code.
I only get some ...
1
vote
1answer
137 views
How to update Texture2D in pixel shader every frame (in D3D10)?
Using D3D10, I am drawing a 2d rectangle and want to fill it with a texture (bitmap) that should change a few times every second (like displaying video).
I am using a shader effect, with a Texture2D ...
3
votes
1answer
151 views
What causes the periodic performance spikes that are seen when doing computationally expensive array processing on the Nexus 4?
I'm new to threads (don't kill me for my implementation below :) and I need to do multiple blurring passes of pixels on a separate thread (see below). It's not the most efficient implementation of box ...
0
votes
0answers
43 views
How does pixel shading work for ambient occlusion volumes?
I'm trying to understand the ambient occlusion technique described here, but I've trouble comprehending what exactly is the pixel shader doing.
Is the pixel shader invoked on points that belong to ...
0
votes
1answer
43 views
Scriptable image manipulation
I'm desperately in need of some software. What I'm looking for is some type of image editor that has support for pixel level manipulation by means of some type of scripting language (think HLSL/GLSL ...
0
votes
1answer
476 views
How to apply the perlin noise on a sphere?
I'm trying to create an animated sun in HLSL for an XNA project.
I'm generating its texture in the pixel shader by using the Perlin Noise algorithm, which I learned from this site.
This is the hlsl ...
10
votes
2answers
415 views
Combining multiple pixel shaders efficiently
So I'm making a thing with XNA 3.1, and I have a lot of separate effects that are applied via pixel shaders. These come from all sorts of sources, such as special attacks, environment, and so forth. ...
0
votes
1answer
301 views
0
votes
0answers
70 views
Vertex shader works in feature level 10_0 but not 9_3
people. I have tried searching for the answer both on MSDN and various keywords (HLSL, ASM, Shader Profile, etc) but since I don't know what the root cause is, I don't get the answer.
Here is a very ...
0
votes
0answers
89 views
XNA Stencil Buffer AA
I'm currently using stencil buffer data for visualisation.
These data are generated by pixel shader using the clip/discard
and stencil buffer logical operations. But I need to modify this
method to ...
2
votes
1answer
220 views
How to return a texture from pixel shader in Unity 3d shaderlab?
How to create a simple pixel color shader that say takes a texture, applyes something like masking:
half4 color = tex2D(_Texture0, i.uv.xy);
if(distance(color, mask) > _CutOff)
{
return color;
...
7
votes
1answer
121 views
Can I create a tile engine in a pixel shader?
I am attempting to create a tile engine using a pixel shader and two textures. One texture will hold the tileset and one the map.
Is it possible to read the texture data as actual (unsampled) data ...
2
votes
0answers
961 views
Trying to make Gaussian Blur stronger/blurrier - XNA 4.0 HLSL
I'm trying to implement a gaussian blur on a Texture2D and have had trouble trying to find any good tutorials etc.
I've finally managed to find a nice piece of one-pass sample code and it visibly ...
2
votes
1answer
426 views
Calculating world space coordinates in the pixel shader
I have a pixel shader and I want to calculate the position of each pixel in terms of my world space coordinates. How would I do this? What would I need?
I have a ps_input structure which has a float4 ...
0
votes
0answers
164 views
Pixel Shader effects incompatible with newest version of DirectX
I used to be able to build my pixel shader effects library when no problems.
Now I can no longer build even the default example project in the Visual Studio add-in written by Greg Schechter and ...
0
votes
1answer
434 views
Error when writing a very simple HLSL pixel shader
I am writing I SlimDX application to test color contrast sensitivity thresholds of the human visual system. The subject is presented with a large letter that is at low contrast with with the ...
1
vote
1answer
865 views
Rendering to multiple textures with one pass in directx 11
I'm trying to render to two textures with one pass using C++ directx 11 SDK. I want one texture to contain the color of each pixel of the result image (what I normally see on the screen when rendering ...
0
votes
0answers
247 views
Copying Resources Between two textures
I have a RWStructuredBuffer<int> outputtexture : register(u0) decalared in the ComputeShader. I also have a Texture2D decal : register(t0) declared in the pixel shader.
Now, the compute shader ...
1
vote
1answer
271 views
xna 4.0 sprite + MRT + pixelshader
I'm trying to combine 2 rendertargets, color and normal, for diffuse lightning and to render the result on screen. The idea is to use a sprite with an effect containing only a pixelshader to combine ...
2
votes
0answers
139 views
Seems like my Pixel Shader is not being called
I ve been messing around with DirectX and I ve been working on this weird idea of mine for some time now. It seems as if my pixel shader is not being invoked for some odd reason. I dont know if thats ...
0
votes
0answers
78 views
Can the position of pixel be changed from Pixel Shader in XNA 4.0?
I need to change the position of each pixel: ex. (33,30) -> (40,55) and so on.
Can it be done inside Pixel Shader in XNA 4.0?
0
votes
1answer
318 views
How to pass a Texture2D object to Pixel Shader in XNA 4.0?
I want to capture each frame and change the position of each pixel according to a lookup table. So for example pixel (30,35) -> (40,50) and so on.
So what I have done is to capturing a frame by ...
0
votes
2answers
171 views
pixel bender 4-color shader
I have no experience with Pixel Bender, and shading languages seem like gibberish to me, so I was wondering if anybody could help me rewriting the following as3 code to function as a Pixel Bender ...