mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-25 16:40:30 +01:00
nv04: fix pasto in nv04_surface_2d_init()
Wrong hardware object being used, when compared with earlier code. Signed-off-by: Pekka Paalanen <pq@iki.fi>
This commit is contained in:
parent
96fb896c39
commit
8569860c3d
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ nv04_surface_2d_init(struct nouveau_winsys *nvws)
|
|||
BEGIN_RING(chan, ctx->rect, NV04_GDI_RECTANGLE_TEXT_DMA_NOTIFY, 1);
|
||||
OUT_RING (chan, ctx->ntfy->handle);
|
||||
BEGIN_RING(chan, ctx->rect, NV04_GDI_RECTANGLE_TEXT_SURFACE, 1);
|
||||
OUT_RING (chan, ctx->ntfy->handle);
|
||||
OUT_RING (chan, ctx->surf2d->handle);
|
||||
BEGIN_RING(chan, ctx->rect, NV04_GDI_RECTANGLE_TEXT_OPERATION, 1);
|
||||
OUT_RING (chan, NV04_GDI_RECTANGLE_TEXT_OPERATION_SRCCOPY);
|
||||
BEGIN_RING(chan, ctx->rect,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue