gen7 depth surface: calculate depth (array size) for depth surface
authorJordan Justen <jordan.l.justen@intel.com>
Tue, 9 Jul 2013 22:16:35 +0000 (15:16 -0700)
committerJordan Justen <jordan.l.justen@intel.com>
Sun, 4 Aug 2013 18:52:37 +0000 (11:52 -0700)
This will be used in 3DSTATE_DEPTH_BUFFER in a later patch.

Note: Cube maps are treated as 2D arrays with 6 times as
many array elements as the cube map array would have.

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Paul Berry <stereotype441@gmail.com>
src/mesa/drivers/dri/i965/gen7_blorp.cpp
src/mesa/drivers/dri/i965/gen7_misc_state.c

index b94e9d10db9b1a0672651ef29d8879c56db3d5a2..618fe59fb6738435b86f4e9422fcf6457851faaa 100644 (file)
@@ -664,6 +664,7 @@ gen7_blorp_emit_depth_stencil_config(struct brw_context *brw,
    uint32_t tile_mask_x, tile_mask_y;
    uint8_t mocs = brw->is_haswell ? GEN7_MOCS_L3 : 0;
    uint32_t surftype;
+   unsigned int depth = MAX2(params->depth.mt->logical_depth0, 1);
    GLenum gl_target = params->depth.mt->target;
 
    brw_get_depthstencil_tile_masks(params->depth.mt,
@@ -680,6 +681,7 @@ gen7_blorp_emit_depth_stencil_config(struct brw_context *brw,
        * equivalent.
        */
       surftype = BRW_SURFACE_2D;
+      depth *= 6;
       break;
    default:
       surftype = translate_tex_target(gl_target);
index e460ccca51376b4366da5e7dfed6c566dc29b878..f0f8b5dcc675d11d554dce788862a2debf648d4e 100644 (file)
@@ -44,6 +44,7 @@ gen7_emit_depth_stencil_hiz(struct brw_context *brw,
    uint8_t mocs = brw->is_haswell ? GEN7_MOCS_L3 : 0;
    struct gl_framebuffer *fb = ctx->DrawBuffer;
    uint32_t surftype;
+   unsigned int depth = 1;
    GLenum gl_target = GL_TEXTURE_2D;
    const struct intel_renderbuffer *irb = NULL;
    const struct gl_renderbuffer *rb = NULL;
@@ -56,6 +57,7 @@ gen7_emit_depth_stencil_hiz(struct brw_context *brw,
    rb = (struct gl_renderbuffer*) irb;
 
    if (rb) {
+      depth = MAX2(rb->Depth, 1);
       if (rb->TexImage)
          gl_target = rb->TexImage->TexObject->Target;
    }
@@ -69,6 +71,7 @@ gen7_emit_depth_stencil_hiz(struct brw_context *brw,
        * equivalent.
        */
       surftype = BRW_SURFACE_2D;
+      depth *= 6;
       break;
    default:
       surftype = translate_tex_target(gl_target);