mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
i965: enable ARB_framebuffer_no_attachments for Gen7+
Enable GL_ARB_framebuffer_no_attachments in i965 for Gen7 and higher. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Signed-off-by: Kevin Rogovin <kevin.rogovin@intel.com>
This commit is contained in:
parent
9ded636975
commit
8319999831
2 changed files with 7 additions and 0 deletions
|
|
@ -614,6 +614,12 @@ brw_initialize_context_constants(struct brw_context *brw)
|
|||
/* ARB_gpu_shader5 */
|
||||
if (brw->gen >= 7)
|
||||
ctx->Const.MaxVertexStreams = MIN2(4, MAX_VERTEX_STREAMS);
|
||||
|
||||
/* ARB_framebuffer_no_attachments */
|
||||
ctx->Const.MaxFramebufferWidth = ctx->Const.MaxViewportWidth;
|
||||
ctx->Const.MaxFramebufferHeight = ctx->Const.MaxViewportHeight;
|
||||
ctx->Const.MaxFramebufferLayers = ctx->Const.MaxArrayTextureLayers;
|
||||
ctx->Const.MaxFramebufferSamples = max_samples;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -325,6 +325,7 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
if (brw->gen >= 7) {
|
||||
ctx->Extensions.ARB_conservative_depth = true;
|
||||
ctx->Extensions.ARB_derivative_control = true;
|
||||
ctx->Extensions.ARB_framebuffer_no_attachments = true;
|
||||
ctx->Extensions.ARB_gpu_shader5 = true;
|
||||
ctx->Extensions.ARB_shader_atomic_counters = true;
|
||||
ctx->Extensions.ARB_texture_compression_bptc = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue