mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 08:08:06 +02:00
i965: Define miptree map functions static (trivial)
They were already declared as such. It was changed here:
commit 31f0967fb5
Author: Ian Romanick <ian.d.romanick@intel.com>
Date: Wed Sep 2 14:43:18 2015 -0700
i965: Make intel_miptree_map_raw static
Cc: Ian Romanick <ian.d.romanick@intel.com>
Signed-off-by: Ben Widawsky <benjamin.widawsky@intel.com>
Reviewed-by: Timothy Arceri <timothy.arceri@collabora.com>
This commit is contained in:
parent
b1d9353cb5
commit
2408899cb2
1 changed files with 2 additions and 2 deletions
|
|
@ -2200,7 +2200,7 @@ intel_miptree_updownsample(struct brw_context *brw,
|
|||
}
|
||||
}
|
||||
|
||||
void *
|
||||
static void *
|
||||
intel_miptree_map_raw(struct brw_context *brw, struct intel_mipmap_tree *mt)
|
||||
{
|
||||
/* CPU accesses to color buffers don't understand fast color clears, so
|
||||
|
|
@ -2221,7 +2221,7 @@ intel_miptree_map_raw(struct brw_context *brw, struct intel_mipmap_tree *mt)
|
|||
return bo->virtual;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
intel_miptree_unmap_raw(struct intel_mipmap_tree *mt)
|
||||
{
|
||||
drm_intel_bo_unmap(mt->bo);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue