HLSL(High Level Shader Language) is a proprietary shading language developed by Microsoft for use with the Microsoft Direct3D API

learn more… | top users | synonyms

0
votes
1answer
16 views

HLSL compiler optimizes strange?

I am not an expert in HLSL compilers and how they work with branches but I have read different opinions about this issue. So to be concrete: In C/C++ it would make perfect sense to implement something ...
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 ...
0
votes
0answers
25 views

HLSL Matrix Storage

I recently came along an article that states the following for direct3d and hlsl: Matrix in memory normally. 11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44 Normally a vector * matrix (ex. a ...
1
vote
1answer
26 views

HLSL mul() variables clarification

The parameters for HLSL's mul( x, y) indicated here: say that if x is a vector, it is treated as a row vector. if y is a vector, it is treated as a column vector. Does this then follow through ...
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 ...
3
votes
0answers
52 views

Projection matrix causing inaccuracy in clip-space depth calculation?

Currently working with SlimDX's Direct3D 11 bindings and having significant difficulty with my shader, the source of which follows: /* * * * * * * * * * PARAM STRUCTS * * * * * * * * * */ struct ...
1
vote
1answer
26 views

Multi-Texturing - Interpolation between two layers of an 3D texture

I'm trying to achieve terrain texturing using 3D texture that consists of several layers of material and to make smooth blending between materials. Maybe my illustration will explain it better: ...
0
votes
1answer
21 views

Custom WPF ShaderEffect alpha channel has unusual behavior

I've got a fairly straightforward pixel shader—set alpha channel to zero and return. sampler2D tex : register(s0); float4 PS(float2 uv : TEXCOORD) : COLOR { float4 color = tex2D(tex, uv); ...
0
votes
1answer
61 views

Using Bloom effect makes black background blue/indigo in MonoGame (Xna)

My game, made in MonoGame (Xna clone to Mac), needs to use the Bloom effect. I followed the code in the sample over at MSDN (http://xbox.create.msdn.com/en-US/education/catalog/sample/bloom). When I ...
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
30 views

Rendering from bottom to top Directx HLSL

I want to write a fur shader like the one used in Lost Planet. After searching the net and reading a small article in real-Time Rendering I gathered some information on how to program the shader. The ...
0
votes
1answer
41 views

Direct3d and hlsl varying size vertices and multiddimensional geometric objects?

I'm new to direct3d , graphics, HLSL , c++ , and I'm trying to write a program to render different geometric multidimensional shapes (for example a hypercube), the program is supposed to receive ...
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
1answer
27 views

When using Direct 3D, what should be processed in code and what should be processed in HLSL?

I am very new to 3D programming, namely with DirectX. I have been trying to follow tutorials on how to do basic things, and I have been looking at the samples provided by Microsoft. One of the big ...
0
votes
1answer
19 views

HLSL and DirectX

For Windows Mobile DirectX: does it support HLSL or is it only for use on desktop DirectX? I tried doing some Google searches however it doesn't seem to give me anything although I am probably not ...
0
votes
1answer
56 views

is it worth it to use hlsl shaders for 2D drawing

I was wondering if it is worth it to use shaders to draw a 2D texture in xna. I am asking because with openGL it is much faster if you use GLSL.
1
vote
1answer
40 views

BasicEffect fog, code used

I want to copy BasicEffect's fog method to use in my own shader so I don't have to declare a basiceffect shader and my own. The HLSL code of the basic effect was released with one of the downloadable ...
0
votes
1answer
38 views

GPU Texture Splatting

Just as a quick example, I'm trying to do the following: + + = With the third image as an alpha map, how could this be implemented in a DX9-compatible pixel shader to "blend" between the ...
1
vote
1answer
44 views

HLSL float4x4 individual floats

Simple question, but how can I access single floats or float4's in a 4x4 matrix in HLSL? I tried: matrix._m00_m01_m02 for a float3 to no avail. I also tried matrix._00_01_02 to no avail. What is the ...
0
votes
1answer
103 views

HLSL color bleeding when using a texture atlas

I'm making a game in C# / XNA. I'm currently working on the shader I'll be using for the terrain. I'm using a texture atlas for speed and efficiency but I'm experiencing texture/color bleeding between ...
0
votes
1answer
72 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
0answers
28 views

converting hybrid cg/hlsl shaders to glsl es

I am looking for a tool that can convert cg/hlsl hybrid shaders to glsl es shaders. I have tried hlsl2glsl which doesnt understand the keyword 'extern' although it is a viable hlsl keyword and have ...
2
votes
1answer
69 views

Bind Texture2D and TextureCube

I need to pass both a Texture2D and a TextureCube to my pixel shader at the same time. I was previously sending an array of texture's but found that I was not able to send a textureCube as well as ...
0
votes
2answers
30 views

FXC error “maximum temp register index exceeded”

I'm working in HLSL, and I'm getting this error from one of my shaders: error X4505: maximum temp register index exceeded The line that's causing this is: int count = Passes[input.Tex.y].y; ...
1
vote
3answers
147 views

How to use shader constant-buffers?

tI'm struggling to understand constant buffers in DirectX. I've seen two syntaxes float4 myVar; declared at top level of the shader file and cbuffer myBuffer { float4 myVar; } as detailed on ...
0
votes
1answer
54 views

How do I combine the bump map normal and the real normal?

I'm trying to create a shader with bump-mapping. I have the real normal of the object, and I have the bump-map sampled normal. What I would like to do is rotate the sampled normal, so that "up" on ...
0
votes
0answers
36 views

Finding correct input for tessellated terrain using 16 control point Bezier patches

Ok, so I'm trying to clue up on DirectX 11 based tessellation and how it can increase the level of detail of relatively low polygon models. I am reaching a point that I am consistently getting stuck ...
0
votes
0answers
42 views

Changing shader variables within the same frame

This is perhaps a newbie question again as I've just inherited a lot of 3D code that I need to maintain. On a broad level, my question is that is it possible to use a single shader technique to ...
0
votes
0answers
47 views

hlsl bounds value Map values

I,m trying to find or do a function in hlsl DirectX11 where you can find the Max,Min,Center values of a buffer or array something like bounds values , the idea is to get a buffer and map from the ...
0
votes
0answers
48 views

Pixel Shader not being used after geometry shader?

I am trying to implement a particle system using geometry shader with dx11: the geometry shader streams out a set of points into a buffer and is passed through the pipeline again to be processed into ...
1
vote
1answer
53 views

Strange number error in HLSL

I have a very-very strange problem with my project. I tried to send an index number with my vertices, and use this number in the HLSL shader. But, when I set this number to a value, like, 1, the ...
0
votes
1answer
97 views

andoid player not working with akamai token authentication

i am developing an android application that contains a videoview that plays hls streaming from akamai CDN . the thing is the streaming url has a token authentication generated using Akamai API. the ...
0
votes
1answer
58 views

How to Apply a Texture to an Orthographic Plane Using DirectX11 Shaders

I'm currently trying to apply a texture image to an orthographic plane so that it can be used as a kind of 'U.I. decoration'. The plane is made up of two tri's in a ...
0
votes
1answer
98 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: ...
0
votes
2answers
37 views

What does uv.zw mean in HLSL?

I am trying to use HLSL code as a basis for an experiment, but I don't understand what uv.zw represent? It shows: float4 uv0 : TEXCOORD0 ... uv0.zw; Isn't uv only 2? I know uvw supports 3 but ...
1
vote
1answer
79 views

Vertex Shader - Constant Buffer Array

I'm having problems with the use of constant buffers with arrays, currently I'm sending an array of size 100 for my vertex shader, like this: ///////////// // DEFINES // ///////////// #define ...
0
votes
2answers
147 views

DirectX texture sampling function SampleCmpLevelZero returns blank intermittently?

I'm trying to write a pixel shader - I'd like to use Texture.SampleCmpLevelZero as this is usable in loop constructs where Texture.Sample is not. I've constructed a texture and can sample it fine ...
1
vote
1answer
70 views

Un/pack additional set of UV coordinates into a 32bit RGBA field

I'm modding a game called Mount&Blade, currently trying to implement lightmapping through custom shaders. As the in-game format doesn't allows more than one UV map per model and I need to carry ...
2
votes
1answer
141 views

Using VS2012 Shader Designer to create XNA shader

I created a shader that seems to work nicely in the VS2012 shader designer. It saves it in DGSL format, which I then exported to HLSL. I thought I'd be able to use this in an XNA project, but there ...
2
votes
2answers
384 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
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
3answers
86 views

Strange rendering with Direct3D10

I'm writing an application which renders graphics on the screen. The application can switch between Direct3D9 and Direct3D10 graphics modules (I wrote DLLs that wrap both D3D9 and D3D10). When trying ...
2
votes
1answer
91 views

HLSL projection shader

I am rendering a scene to a texture and then drawing a water plane with that texture using projection. Most of the samples I have seen on the web pass in a view/projection matrix to the vertex shader ...
2
votes
1answer
66 views

HLSL shaders and accessing current location the GPU is at in the index buffer

My question is very basic. Is there an HLSL shader instruction or any way within shader code to access the current location that the GPU is up to within the array of the index buffer? I am using XNA ...
2
votes
1answer
238 views

Implementing Normal Mapping HLSL

So, ok. I'm trying to implement normal mapping in my small game engine and I just cannot get it to work. When I do the lighting with only per-vertex normals everything is fine, but if I try to do it ...
1
vote
1answer
77 views

Managing HLSL effects

Let say, for this example, that I have World class. World has collection of Models : class World { public: map<string, Model*> Models; }; Model would be abstract class for all ...
1
vote
1answer
107 views

Constant buffer members access the same memory

I'm using a constant buffer to pass data to my shaders at every frame, and I'm running into an issue where the values of some of the members of the buffer point to the same memory. When I use the ...
0
votes
1answer
88 views

Multiple light sources in HLSL

I am learning shader programming. I've got some basics down, but multiple light sources with different types are challenging. Do I need to use a single render pass for each light type or multiple ...
0
votes
1answer
82 views

HLSL Dot Product Returning Unexpected Results

In an effort to spare you all of having to navigate my actual code, I have tried to reduce my problem down to simplest form. I’m unable to produce the expected result while using the dot function ...
1
vote
2answers
245 views

DirectX: Object space to screen space

This is driving me crazy! Any help would be appreciated. I have a 3d model that is drawn to the screen. This definitely works, and the model lies within the screen bounds. I want to calculate the ...

1 2 3 4 5 10