diff --git a/docs/features.txt b/docs/features.txt index 02dd3bec950..f32d6d70042 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -41,7 +41,7 @@ GL 3.0, GLSL 1.30 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llv glBindFragDataLocation, glGetFragDataLocation DONE GL_NV_conditional_render (Conditional rendering) DONE () GL_ARB_map_buffer_range (Map buffer subranges) DONE (v3d, vc4, lima) - GL_ARB_color_buffer_float (Clamping controls) DONE (v3d) + GL_ARB_color_buffer_float (Clamping controls) DONE (v3d, lima) GL_ARB_texture_float (Float textures, renderbuffers) DONE (v3d) GL_EXT_packed_float DONE (v3d) GL_EXT_texture_shared_exponent DONE (v3d) diff --git a/src/gallium/drivers/lima/lima_screen.c b/src/gallium/drivers/lima/lima_screen.c index 4795058509c..9c52f30de7d 100644 --- a/src/gallium/drivers/lima/lima_screen.c +++ b/src/gallium/drivers/lima/lima_screen.c @@ -104,6 +104,7 @@ lima_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_NATIVE_FENCE_FD: case PIPE_CAP_FRAGMENT_SHADER_TEXTURE_LOD: case PIPE_CAP_TEXTURE_SWIZZLE: + case PIPE_CAP_VERTEX_COLOR_UNCLAMPED: return 1; /* Unimplemented, but for exporting OpenGL 2.0 */