diff options
author | Brian <[email protected]> | 2007-10-25 18:50:15 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-25 20:32:45 -0600 |
commit | ee80e0b620c5b9af62dac8ad64a84042b46f5264 (patch) | |
tree | f41b4fdaa0ff6658ff991925cd14423cdbc3f592 /src/mesa/drivers/x11 | |
parent | afd19177e4e6571858fc94ab6be1b12bb54a04ed (diff) |
Move the get/put_tile() functions to pipe_context.
The _rgba versions are temporary until the state tracker is updated.
Diffstat (limited to 'src/mesa/drivers/x11')
-rw-r--r-- | src/mesa/drivers/x11/xm_surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/x11/xm_surface.c b/src/mesa/drivers/x11/xm_surface.c index f83c7917c4d..340f796bc89 100644 --- a/src/mesa/drivers/x11/xm_surface.c +++ b/src/mesa/drivers/x11/xm_surface.c @@ -148,8 +148,8 @@ xmesa_new_color_surface(struct pipe_context *pipe, GLuint pipeFormat) switch (pipeFormat) { case PIPE_FORMAT_U_A8_R8_G8_B8: - xms->surface.surface.get_tile = get_tile; - xms->surface.surface.put_tile = put_tile; + xms->surface.get_tile = get_tile; + xms->surface.put_tile = put_tile; break; case PIPE_FORMAT_S8_Z24: break; |