blob: 8ed3b22ec95647f0f3b6cc6de0f577f37827ae24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright 2025 LunarG, Inc.
* Copyright 2025 Google LLC
* SPDX-License-Identifier: MIT
*/
#include "mtl_texture.h"
/* Utils*/
uint64_t
mtl_texture_get_gpu_resource_id(mtl_texture *texture)
{
return 0u;
}
/* Texture view creation */
mtl_texture *
mtl_new_texture_view_with(mtl_texture *texture,
const struct kk_view_layout *layout)
{
return NULL;
}
mtl_texture *
mtl_new_texture_view_with_no_swizzle(mtl_texture *texture,
const struct kk_view_layout *layout)
{
return NULL;
}
|