The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
12 views

backbone modelbinder converter ajax request

Does anyone know how to cause modelbinder's converter to wait until a ajax request is complete? I'm trying to use backbone's modelbinder on my view but the converter is failing because it is not ...
0
votes
3answers
51 views

How exactly does deferred shading work in LWJGL?

I want to start a deferred shading project with GLSL , Java & openGl 1. How does a deferred rendering pipeline works, does it render the scene for each image? For example when I want to create a ...
0
votes
0answers
46 views

reconstructed world position from depth is wrong

I'm trying to implement deferred shading/lighting. In order to reduce the number/size of the buffers I use I wanted to use the depth texture to reconstruct world position later on. I do this by ...
0
votes
0answers
113 views

Opengl deferred lighting shader

I just started to learning OpenGL 3.1 and I'm trying to implement deferred shading to my engine(framework?). I wrote simple shaders for first stage, lighting stage and deferred stage. Lighting stage ...
2
votes
1answer
169 views

Deferred Rendering with Tile-Based culling Concept Problems

EDIT: I'm still looking for some help about the use of OpenCL or compute shaders. I would prefer to keep using OGL 3.3 and not have to deal with the bad driver support for OGL 4.3 and OpenCL 1.2, but ...
2
votes
0answers
60 views

Profiling JOGL with Java VisualVM

I am working on an OpenGL 3D renderer. I am using Java and the JOGL API. Right now I am trying to performance tweak my deferred renderer. For this, I am using the VisualVM Profiler, in order to see ...
2
votes
1answer
99 views

Unity3D Point lights in large scene

I'm currently building a large scene in Unity that has a lot of point lights. Each room in the scene (~40 rooms) has 2 point lights and I am using deferred rendering (to enabled shadows so that light ...
2
votes
1answer
247 views

Shadow map projection in deferred rendering (OpenGL 3.3)

I have a working G-buffer (color, normal, depth) and for each spot light, I have the depth map from the light's point of view. The problem is in the lighting map phase, I can't get it to work. Could ...
0
votes
2answers
471 views

Crash at draw call in nvoglv32.dll on new video card

Some days ago I set up my computer and installed a new copy of Windows 8 because of some hardware changes. Among others I changed the video card from Radeon HD 7870 to Nvidia GTX 660. After setting ...
0
votes
1answer
166 views

Is a position buffer required for deferred rendering?

I'm trying to avoid the uses of a Position Buffer by projecting Screen Space Points back into View Space to use with lighting. I have tried multiplying by the inverse projection matrix, but this does ...
1
vote
1answer
119 views

Deferred Rendering Pipeline Not Working On Laptop Graphics Cards, and Odd “Model Ghosting” Problems (glBlendFunc)

EDIT: Changing the fragment shader so only one light per-run was possible solved my first problem. My second problem still stands. thanks in advance for any help you can offer. I have been working on ...
1
vote
2answers
358 views

opengl multitexturing glsl - only one texture at a time

It seems like if i use texture(texture0,textCoord) for one time and then i try to use it again with an other texture texture(texture1,textCoord); it returns (0,0,0,0); and i just dont know why . In ...
1
vote
0answers
168 views

Can't create Ajax deferred dataTable

I want to make lazy initialization dataTable that load data when clicking over page number. I make like this to load data on request, but the table render empty table at the beginning, when click on ...
4
votes
1answer
294 views

Ogre3d / Deferred rendering / Point light

Im trying to set up deferred renderer using ogre compositor framework. I tried to implement a point-light shader (as a fullscreen quad effect, without attenuation or specular calculations) in the code ...
2
votes
1answer
239 views

Pre-Pass Lighting OpenGL implementation artifact

I am implementing Pre-Pass Lighting algorithm in OpenGL for my master dissertation project, after implementing a Deferred renderer as well. The Deferred renderer works perfectly and I based the ...
0
votes
0answers
112 views

XNA Deferred Shader, Replace BasicEffect

I have implemented deferred shading in my XNA 4.0 project, meaning that I need all objects to start out with the same shader "RenderGBuffer.fx". How can I use a custom Content Processor to: Not load ...
1
vote
1answer
186 views

Visualizing the Stencil Buffer to a texture

I'm trying to put the stencil buffer into a texture for use in a deferred renderer. I'm getting other Color and Depth Attachments with glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, ...
1
vote
0answers
215 views

Irradiance Volumes vs. Tiled Deferred Shading

I have a renderer in DirectX 11 that uses deferred shading and tiled light culling on the compute shader. I can run 1024-2048 point lights with a steady framerate of 30-35 FPS. I however do not have ...
1
vote
2answers
66 views

which event gets fired when an element is shown to the user?

i have a page with lots of images. it doesn't make sense to have the browser load them all, if the user hasn't scrolled down yet to where the images are. i thought of binding the img element to an ...
1
vote
1answer
239 views

Light accumulation in deferred rendering

I'm looking into converting my forward-renderer into a a deferred renderer, but there's one problem that I can't find (or can't conceptualize), and that is how all of the lights in the scene are ...
-1
votes
1answer
332 views

How to Render 2D Sprites with Deferred Shading

with deferred shading you have several buffers to hold information like depth, normal and so on. In the final stage you just need to "combine" them and process lighting, but how is it done, when you ...
1
vote
1answer
174 views

Any good looking 3D Game or Techdemo that makes use of deferred rendering?

For a research work arround the topic of deferred rendering/shading I'm looking for some opensource 3D game, benchmark or Techdemo upon which I can develop my examples. Of course it would be good if ...
0
votes
1answer
231 views

Uninitialized/unreserved GPU memory in textures, OpenGL

(This is actually a crosspost from gamedev , but I thought you guys and girls might be helpful too!) Edit: I elaborated about what I mean with overlay. After some sleep I have found that my call to ...
4
votes
1answer
1k views

Deferred rendering and moving point light

I know there are couple of threads on the net about the same problem but I haven't got help from these because my implementation is different. I'm rendering colors, normals and depth in view space ...
2
votes
1answer
424 views

Deferred Rendering - Rendering models with individual effects

I have read a few tutorials (Catalin Zima, TheCansin) regarding Deferred Rendering in XNA. They all seem to use a Deferred Rendering Pipeline for rendering the models. This is great, but they only ...