mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
radeon/fbo: flush rendering before generating mipmaps
or maybe should flush(also) in finish_render_texture...
This commit is contained in:
parent
7c6f51cdcc
commit
278ad74fe0
1 changed files with 7 additions and 0 deletions
|
|
@ -233,8 +233,15 @@ static void radeon_generate_mipmap(GLcontext *ctx, GLenum target,
|
|||
|
||||
void radeonGenerateMipmap(GLcontext* ctx, GLenum target, struct gl_texture_object *texObj)
|
||||
{
|
||||
radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
|
||||
struct radeon_bo *bo;
|
||||
GLuint face = _mesa_tex_target_to_face(target);
|
||||
radeon_texture_image *baseimage = get_radeon_texture_image(texObj->Image[face][texObj->BaseLevel]);
|
||||
bo = !baseimage->mt ? baseimage->bo : baseimage->mt->bo;
|
||||
|
||||
if (bo && radeon_bo_is_referenced_by_cs(bo, rmesa->cmdbuf.cs)) {
|
||||
radeon_firevertices(rmesa);
|
||||
}
|
||||
|
||||
radeon_teximage_map(baseimage, GL_FALSE);
|
||||
radeon_generate_mipmap(ctx, target, texObj);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue