blob: 1fecc62420841162c86db925e790696a7294edc9 [file] [log] [blame]
Brian Paul9b0bbe12009-12-30 10:39:20 -07001
2Status of OpenGL 3.x features in Mesa
3
4
5Note: when an item is marked as "DONE" it means all the core Mesa
6infrastructure is complete but it may be the case that few (if any) drivers
7implement the features.
8
9
Marek Olšákc40f8d02013-07-30 22:29:11 +020010OpenGL Core and Compatibility context support
11
12OpenGL 3.1 and later versions are only supported with the Core profile.
13There are no plans to support GL_ARB_compatibility. The last supported OpenGL
14version with all deprecated features is 3.0. Some of the later GL features
15are exposed in the 3.0 context as extensions.
16
17
Brian Paul9b0bbe12009-12-30 10:39:20 -070018Feature Status
19----------------------------------------------------- ------------------------
20
Emil Velikovb8a11152013-11-16 22:26:09 +000021GL 3.0 --- all DONE: i965, nv50, nvc0, r600, radeonsi
Brian Paul9b0bbe12009-12-30 10:39:20 -070022
Joerg Mayerf9868922013-11-16 22:13:03 +000023 GLSL 1.30 DONE ()
24 glBindFragDataLocation, glGetFragDataLocation DONE
25 Conditional rendering (GL_NV_conditional_render) DONE (r300, swrast)
26 Map buffer subranges (GL_ARB_map_buffer_range) DONE (r300, swrast)
27 Clamping controls (GL_ARB_color_buffer_float) DONE (r300)
28 Float textures, renderbuffers (GL_ARB_texture_float) DONE (r300)
29 GL_EXT_packed_float DONE ()
30 GL_EXT_texture_shared_exponent DONE (swrast)
31 Float depth buffers (GL_ARB_depth_buffer_float) DONE ()
32 Framebuffer objects (GL_ARB_framebuffer_object) DONE (r300, swrast)
Ian Romanick1edca152014-01-13 15:23:48 -080033 GL_ARB_half_float_pixel DONE (all drivers)
Marek Olšák0ad57be2013-12-04 00:25:55 +010034 GL_ARB_half_float_vertex DONE (r300, swrast)
35 GL_EXT_texture_integer DONE ()
36 GL_EXT_texture_array DONE ()
Joerg Mayerf9868922013-11-16 22:13:03 +000037 Per-buffer blend and masks (GL_EXT_draw_buffers2) DONE (swrast)
38 GL_EXT_texture_compression_rgtc DONE (r300, swrast)
Marek Olšák0ad57be2013-12-04 00:25:55 +010039 GL_ARB_texture_rg DONE (r300, swrast)
Joerg Mayerf9868922013-11-16 22:13:03 +000040 Transform feedback (GL_EXT_transform_feedback) DONE ()
Marek Olšák0ad57be2013-12-04 00:25:55 +010041 Vertex array objects (GL_ARB_vertex_array_object) DONE (all drivers)
Joerg Mayerf9868922013-11-16 22:13:03 +000042 sRGB framebuffer format (GL_EXT_framebuffer_sRGB) DONE ()
43 glClearBuffer commands DONE
44 glGetStringi command DONE
45 glTexParameterI, glGetTexParameterI commands DONE
46 glVertexAttribI commands DONE
47 Depth format cube textures DONE ()
48 GLX_ARB_create_context (GLX 1.4 is required) DONE
Marek Olšák0ad57be2013-12-04 00:25:55 +010049 Multisample anti-aliasing DONE (r300)
Brian Paul9b0bbe12009-12-30 10:39:20 -070050
51
Emil Velikovb8a11152013-11-16 22:26:09 +000052GL 3.1 --- all DONE: i965, nv50, nvc0, r600, radeonsi
Brian Paul9b0bbe12009-12-30 10:39:20 -070053
Joerg Mayerf9868922013-11-16 22:13:03 +000054 GLSL 1.40 DONE ()
55 Forward compatible context support/deprecations DONE ()
56 Instanced drawing (GL_ARB_draw_instanced) DONE (swrast)
57 Buffer copying (GL_ARB_copy_buffer) DONE (r300, swrast)
Ian Romanickbc0ed682014-01-13 14:48:16 -080058 Primitive restart (GL_NV_primitive_restart) DONE (r300)
Joerg Mayerf9868922013-11-16 22:13:03 +000059 16 vertex texture image units DONE ()
60 Texture buffer objs (GL_ARB_texture_buffer_object) DONE for OpenGL 3.1 contexts ()
61 Rectangular textures (GL_ARB_texture_rectangle) DONE (r300, swrast)
62 Uniform buffer objs (GL_ARB_uniform_buffer_object) DONE (swrast)
63 Signed normalized textures (GL_EXT_texture_snorm) DONE (r300)
Brian Paul9b0bbe12009-12-30 10:39:20 -070064
65
Dave Airlie16215a92014-02-05 07:52:48 +100066GL 3.2 --- all DONE: i965, nv50, nvc0, r600, radeonsi
Brian Paul9b0bbe12009-12-30 10:39:20 -070067
Joerg Mayerf9868922013-11-16 22:13:03 +000068 Core/compatibility profiles DONE
69 GLSL 1.50 DONE ()
70 Geometry shaders DONE ()
Dave Airlie16215a92014-02-05 07:52:48 +100071 BGRA vertex order (GL_ARB_vertex_array_bgra) DONE (r300, swrast)
72 Base vertex offset(GL_ARB_draw_elements_base_vertex) DONE (r300, swrast)
73 Frag shader coord (GL_ARB_fragment_coord_conventions) DONE (r300, swrast)
74 Provoking vertex (GL_ARB_provoking_vertex) DONE (r300, swrast)
75 Seamless cubemaps (GL_ARB_seamless_cube_map) DONE ()
76 Multisample textures (GL_ARB_texture_multisample) DONE ()
77 Frag depth clamp (GL_ARB_depth_clamp) DONE (swrast)
78 Fence objects (GL_ARB_sync) DONE (r300, swrast)
Joerg Mayerf9868922013-11-16 22:13:03 +000079 GLX_ARB_create_context_profile DONE
Brian Paul9b0bbe12009-12-30 10:39:20 -070080
81
Dave Airlie16215a92014-02-05 07:52:48 +100082GL 3.3 --- all DONE: i965, nv50, nvc0, r600, radeonsi
Brian Pauld35c2ca2010-05-11 21:03:53 -060083
Joerg Mayerf9868922013-11-16 22:13:03 +000084 GLSL 3.30 DONE ()
Dave Airlie16215a92014-02-05 07:52:48 +100085 GL_ARB_blend_func_extended DONE (softpipe)
Ian Romanickbc0ed682014-01-13 14:48:16 -080086 GL_ARB_explicit_attrib_location DONE (all drivers that support GLSL)
Dave Airlie16215a92014-02-05 07:52:48 +100087 GL_ARB_occlusion_query2 DONE (r300, swrast)
Ian Romanickbc0ed682014-01-13 14:48:16 -080088 GL_ARB_sampler_objects DONE (all drivers)
Dave Airlie16215a92014-02-05 07:52:48 +100089 GL_ARB_shader_bit_encoding DONE ()
90 GL_ARB_texture_rgb10_a2ui DONE ()
91 GL_ARB_texture_swizzle DONE (r300, swrast)
92 GL_ARB_timer_query DONE ()
93 GL_ARB_instanced_arrays DONE (r300)
94 GL_ARB_vertex_type_2_10_10_10_rev DONE ()
Brian Pauld35c2ca2010-05-11 21:03:53 -060095
96
97GL 4.0:
98
Joerg Mayerf9868922013-11-16 22:13:03 +000099 GLSL 4.0 not started
Ilia Mirkin35186062014-01-21 00:26:14 -0500100 GL_ARB_draw_buffers_blend DONE (i965, nv50, nvc0, r600, radeonsi, softpipe)
Chris Forbese6a0eca2013-09-30 21:16:40 +1300101 GL_ARB_draw_indirect DONE (i965)
Joerg Mayerf9868922013-11-16 22:13:03 +0000102 GL_ARB_gpu_shader5 started
Chris Forbes9578bb22014-04-27 16:03:57 +1200103 - 'precise' qualifier DONE
Chris Forbesed663122014-06-27 22:13:21 +1200104 - Dynamically uniform sampler array indices started (Chris)
105 - Dynamically uniform UBO array indices started (Chris)
Chris Forbes4312e972014-06-04 19:31:30 +1200106 - Implicit signed -> unsigned conversions DONE
Chris Forbes87502bb2014-04-08 18:55:06 +1200107 - Fused multiply-add DONE
108 - Packing/bitfield/conversion functions DONE
109 - Enhanced textureGather DONE
110 - Geometry shader instancing DONE
Chris Forbesed663122014-06-27 22:13:21 +1200111 - Geometry shader multiple streams started (Iago)
Chris Forbes87502bb2014-04-08 18:55:06 +1200112 - Enhanced per-sample shading DONE
Chris Forbesed663122014-06-27 22:13:21 +1200113 - Interpolation functions started (Chris)
Chris Forbes7bf768b2014-06-04 20:12:58 +1200114 - New overload resolution rules DONE
Chris Forbesed663122014-06-27 22:13:21 +1200115 GL_ARB_gpu_shader_fp64 started (Dave)
Marek Olšákf98a7d82014-05-07 13:15:41 +0200116 GL_ARB_sample_shading DONE (i965, nv50, nvc0, radeonsi)
Joerg Mayerf9868922013-11-16 22:13:03 +0000117 GL_ARB_shader_subroutine not started
Chris Forbesed663122014-06-27 22:13:21 +1200118 GL_ARB_tessellation_shader started (Fabian)
Ilia Mirkin734fe2d2014-02-26 23:35:14 -0500119 GL_ARB_texture_buffer_object_rgb32 DONE (i965, nvc0, r600, radeonsi, softpipe)
Marek Olšák2484daa2014-04-22 21:23:29 +0200120 GL_ARB_texture_cube_map_array DONE (i965, nv50, nvc0, r600, radeonsi, softpipe)
Marek Olšákc7b5a5c2014-06-06 03:00:18 +0200121 GL_ARB_texture_gather DONE (i965, nv50, nvc0, radeonsi)
Marek Olšák57f3da92014-06-16 16:53:42 +0200122 GL_ARB_texture_query_lod DONE (i965, nv50, nvc0, radeonsi)
Ilia Mirkin35186062014-01-21 00:26:14 -0500123 GL_ARB_transform_feedback2 DONE (i965, nv50, nvc0, r600, radeonsi)
124 GL_ARB_transform_feedback3 DONE (i965, nv50, nvc0, r600, radeonsi)
Marek Olšák2892c8b2010-11-21 22:54:33 +0100125
126
127GL 4.1:
128
Joerg Mayerf9868922013-11-16 22:13:03 +0000129 GLSL 4.1 not started
Ilia Mirkin35186062014-01-21 00:26:14 -0500130 GL_ARB_ES2_compatibility DONE (i965, nv50, nvc0, r300, r600, radeonsi)
Joerg Mayerf9868922013-11-16 22:13:03 +0000131 GL_ARB_get_program_binary DONE (0 binary formats)
Ian Romanicka06c9792014-05-02 17:19:48 -0700132 GL_ARB_separate_shader_objects DONE (all drivers)
Chris Forbesed663122014-06-27 22:13:21 +1200133 GL_ARB_shader_precision started (Micah)
Joerg Mayerf9868922013-11-16 22:13:03 +0000134 GL_ARB_vertex_attrib_64bit not started
Tobias Klausmanncd01e162014-06-15 21:24:05 +0200135 GL_ARB_viewport_array DONE (i965, nv50, nvc0, r600)
Brian Pauld35c2ca2010-05-11 21:03:53 -0600136
137
Dave Airlie36291172011-08-09 10:39:52 +0100138GL 4.2:
Marek Olšák768589e2012-07-05 20:27:28 +0200139
Joerg Mayerf9868922013-11-16 22:13:03 +0000140 GLSL 4.2 not started
141 GL_ARB_texture_compression_bptc not started
Chris Forbesbe1b5722014-06-02 16:44:40 +1200142 GL_ARB_compressed_texture_pixel_storage DONE (all drivers)
Joerg Mayerf9868922013-11-16 22:13:03 +0000143 GL_ARB_shader_atomic_counters DONE (i965)
144 GL_ARB_texture_storage DONE (all drivers)
Ilia Mirkin35186062014-01-21 00:26:14 -0500145 GL_ARB_transform_feedback_instanced DONE (i965, nv50, nvc0, r600, radeonsi)
Joerg Mayerf9868922013-11-16 22:13:03 +0000146 GL_ARB_base_instance DONE (i965, nv50, nvc0, r600, radeonsi)
Francisco Jerez83db4a32013-11-24 16:24:32 -0800147 GL_ARB_shader_image_load_store in progress (curro)
Joerg Mayerf9868922013-11-16 22:13:03 +0000148 GL_ARB_conservative_depth DONE (all drivers that support GLSL 1.30)
149 GL_ARB_shading_language_420pack DONE (all drivers that support GLSL 1.30)
Ilia Mirkin35186062014-01-21 00:26:14 -0500150 GL_ARB_internalformat_query DONE (i965, nv50, nvc0, r300, r600, radeonsi)
Ian Romanickca385bf2014-01-22 16:17:48 -0800151 GL_ARB_map_buffer_alignment DONE (all drivers)
Brian Pauld35c2ca2010-05-11 21:03:53 -0600152
Brian Paul90894362010-01-05 16:03:11 -0700153
Jason Wood56c1f552012-08-06 13:47:27 -0600154GL 4.3:
155
Joerg Mayerf9868922013-11-16 22:13:03 +0000156 GLSL 4.3 not started
Chris Forbesed663122014-06-27 22:13:21 +1200157 GL_ARB_arrays_of_arrays started (Timothy)
Joerg Mayerf9868922013-11-16 22:13:03 +0000158 GL_ARB_ES3_compatibility DONE (i965)
Ian Romanickbc0ed682014-01-13 14:48:16 -0800159 GL_ARB_clear_buffer_object DONE (all drivers)
160 GL_ARB_compute_shader started (Paul Berry)
Joerg Mayerf9868922013-11-16 22:13:03 +0000161 GL_ARB_copy_image not started
162 GL_KHR_debug DONE (all drivers)
Tapani Pälli5cb8fdb2014-03-24 11:29:08 +0200163 GL_ARB_explicit_uniform_location DONE (all drivers that support GLSL)
Joerg Mayerf9868922013-11-16 22:13:03 +0000164 GL_ARB_fragment_layer_viewport not started
165 GL_ARB_framebuffer_no_attachments not started
166 GL_ARB_internalformat_query2 not started
167 GL_ARB_invalidate_subdata DONE (all drivers)
Chris Forbese6a0eca2013-09-30 21:16:40 +1300168 GL_ARB_multi_draw_indirect DONE (i965)
Joerg Mayerf9868922013-11-16 22:13:03 +0000169 GL_ARB_program_interface_query not started
170 GL_ARB_robust_buffer_access_behavior not started
171 GL_ARB_shader_image_size not started
172 GL_ARB_shader_storage_buffer_object not started
Ilia Mirkin5cfd45f2014-05-04 20:16:44 -0400173 GL_ARB_stencil_texturing DONE (i965/gen8+, nv50, nvc0, r600, radeonsi)
Joerg Mayerf9868922013-11-16 22:13:03 +0000174 GL_ARB_texture_buffer_range DONE (nv50, nvc0, i965, r600, radeonsi)
Marek Olšák1df71992014-06-14 03:19:26 +0200175 GL_ARB_texture_query_levels DONE (all drivers that support GLSL 1.30)
Joerg Mayerf9868922013-11-16 22:13:03 +0000176 GL_ARB_texture_storage_multisample DONE (all drivers that support GL_ARB_texture_multisample)
Chris Forbes0d653b92014-02-15 16:27:58 +1300177 GL_ARB_texture_view DONE (i965)
Joerg Mayerf9868922013-11-16 22:13:03 +0000178 GL_ARB_vertex_attrib_binding DONE (all drivers)
Jason Wood56c1f552012-08-06 13:47:27 -0600179
180
Chris Forbes5a7bdd42013-07-23 09:17:47 +1200181GL 4.4:
182
Joerg Mayerf9868922013-11-16 22:13:03 +0000183 GLSL 4.4 not started
184 GL_MAX_VERTEX_ATTRIB_STRIDE not started
Ilia Mirkincf6c9db2014-04-30 22:08:33 -0400185 GL_ARB_buffer_storage DONE (i965, nv30, nv50, nvc0, r300, r600, radeonsi)
Joerg Mayerf9868922013-11-16 22:13:03 +0000186 GL_ARB_clear_texture not started
187 GL_ARB_enhanced_layouts not started
Fredrik Höglunde6ff5572013-11-18 18:53:23 +0100188 GL_ARB_multi_bind DONE (all drivers)
Joerg Mayerf9868922013-11-16 22:13:03 +0000189 GL_ARB_query_buffer_object not started
190 GL_ARB_texture_mirror_clamp_to_edge DONE (i965, nv30, nv50, nvc0, r300, r600, radeonsi, swrast)
191 GL_ARB_texture_stencil8 not started
Marek Olšák7920adb2014-04-18 16:16:44 +0200192 GL_ARB_vertex_type_10f_11f_11f_rev DONE (i965, nv50, nvc0, r600, radeonsi)
Chris Forbes5a7bdd42013-07-23 09:17:47 +1200193
194
Brian Paul90894362010-01-05 16:03:11 -0700195More info about these features and the work involved can be found at
196http://dri.freedesktop.org/wiki/MissingFunctionality