mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
dri/radeon: nuke the remaining references to sarea
Remainder of the dri1 times. Cc: Marek Olšák <marek.olsak@amd.com> Cc: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
parent
515ffb6c93
commit
e7f2f2dea5
3 changed files with 0 additions and 11 deletions
|
|
@ -62,13 +62,6 @@ static void r200Clear( struct gl_context *ctx, GLbitfield mask )
|
|||
BUFFER_BIT_DEPTH | BUFFER_BIT_STENCIL |
|
||||
BUFFER_BIT_COLOR0;
|
||||
|
||||
if ( R200_DEBUG & RADEON_IOCTL ) {
|
||||
if (rmesa->radeon.sarea)
|
||||
fprintf( stderr, "r200Clear %x %d\n", mask, rmesa->radeon.sarea->pfCurrentPage);
|
||||
else
|
||||
fprintf( stderr, "r200Clear %x radeon->sarea is NULL\n", mask);
|
||||
}
|
||||
|
||||
radeonFlush( ctx );
|
||||
|
||||
hwmask = mask & hwbits;
|
||||
|
|
|
|||
|
|
@ -406,7 +406,6 @@ struct radeon_context {
|
|||
|
||||
/* Drawable information */
|
||||
unsigned int lastStamp;
|
||||
drm_radeon_sarea_t *sarea; /* Private SAREA data */
|
||||
|
||||
/* Mirrors of some DRI state */
|
||||
struct radeon_dri_mirror dri;
|
||||
|
|
|
|||
|
|
@ -45,7 +45,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
#include "dri_util.h"
|
||||
#include "radeon_chipset.h"
|
||||
#include "radeon_reg.h"
|
||||
#include "drm_sarea.h"
|
||||
#include "xmlconfig.h"
|
||||
|
||||
|
||||
|
|
@ -88,7 +87,6 @@ typedef struct radeon_screen {
|
|||
__volatile__ uint32_t *scratch;
|
||||
|
||||
__DRIscreen *driScreen;
|
||||
unsigned int sarea_priv_offset;
|
||||
unsigned int gart_buffer_offset; /* offset in card memory space */
|
||||
unsigned int gart_texture_offset; /* offset in card memory space */
|
||||
unsigned int gart_base;
|
||||
|
|
@ -100,7 +98,6 @@ typedef struct radeon_screen {
|
|||
|
||||
int num_gb_pipes;
|
||||
int num_z_pipes;
|
||||
drm_radeon_sarea_t *sarea; /* Private SAREA data */
|
||||
struct radeon_bo_manager *bom;
|
||||
|
||||
} radeonScreenRec, *radeonScreenPtr;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue