The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
6k views

How do you activate multisampling in OpenGL ES on the iPhone?

I'm experimenting w/ improving the "resolution" of an OpenGL ES based app. Apple mentions here (developer.apple.com) that OpenGL ES in iOS 4 supports multisampling... and this can improve the ...
4
votes
1answer
3k views

Reading data using glReadPixel() with multisampling

Presently I am trying to read the pixel data from the frame Buffer in order to capture the screen in IOS. GlreadPixels command works fine when using the following code to setup frame buffer :- ...
4
votes
3answers
5k views

glReadPixels from FBO fails with multisampling

I have an FBO object with a color and depth attachment which I render to and then read from using glReadPixels() and I'm trying to add to it multisampling support. Instead of glRenderbufferStorage() ...
1
vote
1answer
507 views

With OpenGL ES 2.0 on Android, is there a way preserve multisampling when rendering on a framebuffer?

I am developing a 2d game on Android ICS using OpenGL es 2.0 and java. I am trying to use a lighting system and to do that I render all the lights on a framebuffer and the scene on another, with the ...
1
vote
1answer
759 views

FBO Blitting is not working

I'm trying to render a multisampled scene to texture, here is the code I'm using. I'm getting a black screen. I check the fbo completeness at the end of init, and they report that both fbo's are ...
0
votes
1answer
194 views

Enabling antialising in SlimDX (D3D9)

I would like to enable antialiasing when drawing triangles like on the following picture: I found a way to do it with XNA on this page but I want to do the same with SlimDX.
5
votes
1answer
155 views

Multisampling doesn't work in exclusive mode

I would like to enable multisampling when drawing triangles like on the following picture: I found a way to do with SlimDX in another question but it doesn't work in exclusive mode. Here is my ...
2
votes
1answer
1k views

How to render Framebuffer Objects on multi-sampled textures?

I currently have a rendering engine using multiple passes in which various parts of the image are rendered on textures, and then combined using shaders. It works, and now I would like to activate ...
2
votes
4answers
3k views

where is GL_MULTISAMPLE defined?

Although I have been discouraged from reading the OpenGL redbook, I am still doing it, because it is the only book designed for beginners, and tutorials and/or documentation don't quite substitute for ...
2
votes
1answer
647 views

How are depth values resolved in OpenGL textures when multisampling?

I'm using an FBO to render my scene to a depth texture (GL_DEPTH_COMPONENT). When I enable multisampling in my application, those samples are resolved to a single texel, but how are they combined? Is ...
1
vote
1answer
809 views

WGL: No double buffering + multi sampling = FAIL?

I usually create a pixel format using wglChoosePixelFormatARB() with these arguments (among others): WGL_DOUBLE_BUFFER_ARB = GL_TRUE WGL_SAMPLE_BUFFERS_ARB = GL_TRUE WGL_SAMPLES_ARB = 4 i.e. double ...
1
vote
1answer
2k views

How to enable multisampling for a wxWidgets OpenGL program?

Multisampling is a way of applying full screen anti-aliasing (FSAA) in 3D applications. I need to use multisampling in my OpenGL program, which is currently embedded in a wxWidgets GUI. Is there a way ...
0
votes
0answers
252 views

Multisampling and Direct3D10 / D3DImage interop

I'm trying to implement a renderengine using Direct3D 10 (SlimDX) and WPF. I create my device and rendertargetview with the right MultiSample parameters ( 1,0 / 2,0 and 4,0 are working) ...
0
votes
1answer
393 views

ResolveMultisampleFramebufferAPPLE generates INVALID_OPERATION

I can't figure out, why glResolveMultisampleFramebufferAPPLE generates error 1282 (0x0502, GL_INVALID_OPERATION). Setup code: glGenFramebuffers(1, &framebuffer); ...
0
votes
3answers
645 views

XNA 4.0 in a window having jagged edges issues…Know of a method for high quality output?

I'm using this example project's XNA 4.0 form control in an application I'm writing: http://creators.xna.com/en-US/sample/winforms_series1 It's working great and I've done quite a bit with visuals ...
0
votes
1answer
1k views

Blitting multisampled FBO with multiple color attachments in OpenGL

I have a frame buffer object in an OpenGL program with multiple colour attachments, and am trying to upgrade it to a multisampled FBO. As I understand it, a multisampled FBO is only able to use ...