cogl/indices: Remove unused Indices.set_offset

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4100>
This commit is contained in:
Bilal Elmoussaoui 2024-10-19 23:29:08 +02:00 committed by Marge Bot
parent 30ed9c05de
commit 09198db2e6
2 changed files with 0 additions and 13 deletions

View File

@ -145,15 +145,6 @@ cogl_indices_get_offset (CoglIndices *indices)
return indices->offset;
}
void
cogl_indices_set_offset (CoglIndices *indices,
size_t offset)
{
g_return_if_fail (COGL_IS_INDICES (indices));
indices->offset = offset;
}
CoglIndices *
cogl_get_rectangle_indices (CoglContext *ctx, int n_rectangles)
{

View File

@ -138,10 +138,6 @@ cogl_indices_get_indices_type (CoglIndices *indices);
COGL_EXPORT size_t
cogl_indices_get_offset (CoglIndices *indices);
COGL_EXPORT void
cogl_indices_set_offset (CoglIndices *indices,
size_t offset);
/**
* cogl_get_rectangle_indices:
*