blob: f7a8a6aa26fd5895ed94b5c76ad89f204107a928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright 2025 LunarG, Inc.
* Copyright 2025 Google LLC
* SPDX-License-Identifier: MIT
*/
#include "mtl_compute_state.h"
mtl_compute_pipeline_state *
mtl_new_compute_pipeline_state(mtl_device *device, mtl_function *function,
uint64_t max_total_threads_per_threadgroup)
{
return NULL;
}
|