소스 검색

i965: Emit surface states for extra planes prior to gen8

When Kristian implemented GL_TEXTURE_EXTERNAL_OES, he hooked it up for gen8
but not for gen7 or earlier.  It all works, we just need to emit the states
for the extra planes.

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
Cc: "12.0" <mesa-stable@lists.freedesktop.org>
tags/13.0-branchpoint
Jason Ekstrand 9 년 전
부모
커밋
037ce5d734
2개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. 9
    0
      src/mesa/drivers/dri/i965/brw_wm_surface_state.c
  2. 9
    0
      src/mesa/drivers/dri/i965/gen7_wm_surface_state.c

+ 9
- 0
src/mesa/drivers/dri/i965/brw_wm_surface_state.c 파일 보기

@@ -338,6 +338,15 @@ brw_update_texture_surface(struct gl_context *ctx,
uint32_t tex_format = translate_tex_format(brw, mt->format,
sampler->sRGBDecode);

if (tObj->Target == GL_TEXTURE_EXTERNAL_OES) {
if (plane > 0)
mt = mt->plane[plane - 1];
if (mt == NULL)
return;

tex_format = translate_tex_format(brw, mt->format, sampler->sRGBDecode);
}

if (for_gather) {
/* Sandybridge's gather4 message is broken for integer formats.
* To work around this, we pretend the surface is UNORM for

+ 9
- 0
src/mesa/drivers/dri/i965/gen7_wm_surface_state.c 파일 보기

@@ -386,6 +386,15 @@ gen7_update_texture_surface(struct gl_context *ctx,
unsigned format = translate_tex_format(
brw, intel_obj->_Format, sampler->sRGBDecode);

if (obj->Target == GL_TEXTURE_EXTERNAL_OES) {
if (plane > 0)
mt = mt->plane[plane - 1];
if (mt == NULL)
return;

format = translate_tex_format(brw, mt->format, sampler->sRGBDecode);
}

if (for_gather && format == BRW_SURFACEFORMAT_R32G32_FLOAT)
format = BRW_SURFACEFORMAT_R32G32_FLOAT_LD;


Loading…
취소
저장