mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-21 18:40:42 +01:00
intel: in intel_context struct use typedef for sarea struct
Using drm_i915_sarea_t instead of struct drm_i915_sarea seems to be a common standard now, therefore fix it also in intel_context structure. Additionally this silences a compiler warning: intel_swapbuffers.c: In function `intelFixupVblank': intel_swapbuffers.c:48: warning: initialization from incompatible pointer type Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
parent
2674d1ba50
commit
87946d206f
1 changed files with 1 additions and 1 deletions
|
|
@ -312,7 +312,7 @@ struct intel_context
|
|||
__DRIdrawablePrivate *driReadDrawable;
|
||||
__DRIscreenPrivate *driScreen;
|
||||
intelScreenPrivate *intelScreen;
|
||||
volatile struct drm_i915_sarea *sarea;
|
||||
volatile drm_i915_sarea_t *sarea;
|
||||
|
||||
GLuint lastStamp;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue