Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
47 views

multisampled FBO depth/stencil and OpenGL specs

the OpenGL 4.2 specs (section 3.3.1) clearly states that: Because each sample includes color, depth, and stencil information, the color (including texture operation), depth, and stencil ...
2
votes
1answer
219 views

Color picking with AntiAliasing in OpenGL?

I'm having a problem with color picking and antialiasing in OpenGL. When AA is activated results from glReadPixels are obviously wrong on object edges and object intersections. For example: I render ...
2
votes
3answers
907 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
2answers
202 views

OpenGL Multisampling Lines

Is there a way to just use multisampling on just lines drawn with OpenGL and not with the entire program? Thanks in advance!
2
votes
3answers
4k 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
0answers
50 views

SDL Multisampling

I've been trying to get SDL FSAA with Multisampling working, but it doesn't want to. I started with something simple: SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1); ...
1
vote
0answers
32 views

What is the smoothest parameters for texturing with multi-sampling mode?

what is the smoothest parameters for texturing with multi-sampling mode. I mean to say I am using GL_LINEAR, GL_CLAMP, and GL_MODULATE. What should I choose here to get smoothest texture. ...
1
vote
1answer
705 views

Problem in Reading data using glReadPixel()

Presently i am trying to read the pixel data from the frame Buffer in order to capture the screen in IOS. GlreadPixels command work fine when using the following code to setup frame buffer :- ...
1
vote
0answers
298 views

SDL/opengl multisampling not working

I'm trying to do multisampling with SDL/opengl but SDL won't accept setting SDL_MULTISAMPLEBUFFERS and SDL_MULTISAMPLESAMPLES. Instead these are left at 0 and SDL_SetVideoMode() will fail afterwards. ...
1
vote
1answer
261 views

Multisampling on iPad

Is it possible to use multisampling on iPad ? Apple's documentation say: "iOS4.0 and later devices", but all tutorials in inet says: "iPhone XX, IPAD" I can't run my app under 3.2 sdk with ...
1
vote
2answers
420 views

How to detect in glsl if fragment is multisampled?

Is there any fast(for performance) way to detect in glsl if fragment has been multisampled, but in second(light) pass using textures where been 1st pass rendered. Or how is opengl storing informations ...
1
vote
2answers
3k 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 ...
1
vote
3answers
833 views

OpenGL: Enabling multisampling draws messed up edges for polygons at high zoom levels

When im using this following code: glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 6); and then i enable multisampling, i notice that my program no longer cares about the max mip level. Edit: ...
1
vote
1answer
1k views

XNA Antialias question!

I've got problems with XNA and antialiasing. I can activate it using graphics.PreferMultiSampling = true; graphics.ApplyChanges(); however - it's only 2x antialiasing. Even if I set ...
1
vote
3answers
2k views

Antialiasing/Multisampling in D3D9

I'm writing a 3d modeling application in D3D9 that I'd like to make as broadly compatible as possible. This means using few hardware-dependent features, i.e. multisampling. However, while the ...
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
1answer
41 views

How does multisample really work?

I am very interested in understanding how multisampling works. I have found a large literature on how to enable or use it, but very little information concerning what it really does in order to ...
0
votes
0answers
44 views

multisampling and fragment shaders in GLSL 330

Im trying to understand how a fragment shader is invoked during a multisampled rendering, Ive carefully read the specs but Im a bit confused.. I setup a multisampled FBO with a color and a ...
0
votes
2answers
152 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
0answers
122 views

DirectX10 Multisampling / Anti-aliasing

Here's what I know: I'm confused about what you do with what data structures to accomplish this. I know you need the swap chain to have increased SampleDesc.Quality/Count values to make the back ...
0
votes
1answer
365 views

How do you use CheckMultisampleQualityLevels and enable multisampling

I'm learning directx 11 and trying to set up multisampling. For some reason every tutorial on the internet disables multisampling and never goes over how to enable it. First: I've searched around ...
0
votes
3answers
573 views

multi-sampling opengl?

I run sample of multi sampling but it work incorrect it seems that multi sampling don't applied because of sample buffers & samples is 0. what should i do to make it correct? thanks. this is my ...
0
votes
1answer
714 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 ...
0
votes
1answer
504 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. doubke ...
0
votes
1answer
440 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 ...