summaryrefslogtreecommitdiff
path: root/src/glx/glxextensions.h
AgeCommit message (Collapse)AuthorFilesLines
2012-10-29glx: Add the extension string for GLX_ARB_framebuffer_sRGBIan Romanick1-0/+5
From the GLX perspective, the ARB and EXT extensions are identical. Use a single bit for both. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Cc: Maciej Wieczorek <maciej.t.wieczorek@intel.com>
2012-07-11glx/dri2: Add support for GLX_ARB_create_context_robustnessIan Romanick1-0/+1
Add the infrastructure required for this extension. There is no xserver support and no driver support yet. Drivers can enable this be advertising DRI2 version 4 and accepting the __DRI_CTX_FLAG_ROBUST_BUFFER_ACCESS flag and the __DRI_CTX_ATTRIB_RESET_STRATEGY attribute in create context. Some additional Mesa infrastructure is needed before drivers can do this. The GL_ARB_robustness spec, which all Mesa drivers already advertise, requires: "If the behavior is LOSE_CONTEXT_ON_RESET_ARB, a graphics reset will result in the loss of all context state, requiring the recreation of all associated objects." It is necessary to land this infrastructure now so that the related infrastructure can land in the xserver. The xserver has very long release schedules, and the remaining Mesa parts should land long, long before the next xserver merge window opens. v2: Expose robustness as a DRI2 extension rather than bumping __DRI_DRI2_VERSION. v3: Add a comment explaining why dri2->base.version >= 3 is also required for GLX_ARB_create_context_robustness. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
2012-01-02glx: Enable GLX_EXT_create_context_es2_profileIan Romanick1-0/+1
This extension is only enabled if the underlying driver advertises support for OpenGL ES 2.0. This happens either through the getAPIMask function in version 2 of the DRI2 extension or implicity through version 2 of the DRISW extension. Since there is no OpenGL ES 2.0 protocol, this extension is marked as only available with direct-rendering. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2012-01-02glx: Add extension strings for GLX_ARB_create_context and ↵Ian Romanick1-1/+3
GLX_ARB_create_context_profile Note that these extensions are not automatically enabled for screens capable of direct-rendering. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2011-12-19glx: Remove some extensions that are not, and never will be, supportedIan Romanick1-9/+0
There are a few unsupported extensions (e.g., the ATI and NV float extensions) that are still in the list. There is some small chance that these may be supported some day. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Eric Anholt <eric@anholt.net>
2011-03-06glx: add initial GLX_EXT_framebuffer_sRGB support.Dave Airlie1-0/+2
this doesn't bind to drivers yet, just enough to in theory make indirect work against other servers. I'm really not sure what the rules for adding extensions to the known_gl_extensions list as it looks to be missing a few. are these GL extensions that have GLX protocol?? Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-02-26mesa: Add new MESA_multithread_makecurrent extension.Eric Anholt1-0/+1
This extension allows a client to bind one context in multiple threads simultaneously. It is then up to the client to manage synchronization of access to the GL, just as normal multithreaded GL from multiple contexts requires synchronization management to shared objects.
2010-10-01ARB_texture_rg: Add GLX protocol supportIan Romanick1-0/+1
2010-07-28glx: Rename __GLXcontext and __GLXdisplayPrivate to struct types.Kristian Høgsberg1-3/+3
2010-07-28glx: Rename __GLXscreenConfigs to struct glx_screenKristian Høgsberg1-5/+4
Because double underscores in private type names is painful.
2010-07-19glx: Drop support for GLX_MESA_allocate_memoryKristian Høgsberg1-1/+0
Only r200 implemented it.
2010-02-09Retire miniglx and move the actual glx code up to src/glxKristian Høgsberg1-0/+292