mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
egl: Don't fill shown screen
This commit is contained in:
parent
83a2a89663
commit
0ac83a0ebb
1 changed files with 0 additions and 16 deletions
|
|
@ -80,7 +80,6 @@ drm_create_texture(_EGLDriver *drv,
|
|||
unsigned stride = 1024;
|
||||
unsigned pitch = 0;
|
||||
unsigned size = 0;
|
||||
void *ptr;
|
||||
|
||||
/* ugly */
|
||||
if (stride < w)
|
||||
|
|
@ -98,14 +97,6 @@ drm_create_texture(_EGLDriver *drv,
|
|||
if (!buf)
|
||||
goto err_buf;
|
||||
|
||||
#if DEBUG
|
||||
ptr = pipe_buffer_map(screen, buf, PIPE_BUFFER_USAGE_CPU_WRITE);
|
||||
memset(ptr, 0xFF, size);
|
||||
pipe_buffer_unmap(screen, buf);
|
||||
#else
|
||||
(void)ptr;
|
||||
#endif
|
||||
|
||||
memset(&templat, 0, sizeof(templat));
|
||||
templat.tex_usage |= PIPE_TEXTURE_USAGE_DISPLAY_TARGET;
|
||||
templat.tex_usage |= PIPE_TEXTURE_USAGE_RENDER_TARGET;
|
||||
|
|
@ -340,13 +331,6 @@ drm_show_screen_surface_mesa(_EGLDriver *drv, EGLDisplay dpy,
|
|||
if (ret)
|
||||
goto err_crtc;
|
||||
|
||||
pipe = drm_api_hocks.create_context(dev->screen);
|
||||
pipe->surface_fill(pipe, scrn->surface,
|
||||
0, 0,
|
||||
scrn->front.width, scrn->front.height,
|
||||
0xFF00FFFF);
|
||||
pipe->destroy(pipe);
|
||||
|
||||
surf->screen = scrn;
|
||||
|
||||
scrn->surf = surf;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue