Skip to content

Commit

Permalink
sampler def
Browse files Browse the repository at this point in the history
  • Loading branch information
recp committed Sep 29, 2023
1 parent 8d1d06c commit cd1d552
Show file tree
Hide file tree
Showing 6 changed files with 103 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/gpu/api/gpudef.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ extern "C" {
#include "swapchain.h"
#include "frame.h"
#include "descriptor.h"
#include "sampler.h"

typedef struct GPUApi {
GPUBackend backend;
Expand All @@ -52,6 +53,7 @@ typedef struct GPUApi {
GPUApiSwapChain swapchain;
GPUApiFrame frame;
GPUApiDescriptor descriptor;
GPUApiSampler sampler;
void *reserved;
} GPUApi;

Expand Down
35 changes: 35 additions & 0 deletions include/gpu/api/sampler.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright (C) 2020 Recep Aslantas
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#ifndef gpu_gpudef_sampler_h
#define gpu_gpudef_sampler_h
#ifdef __cplusplus
extern "C" {
#endif

#include "../common.h"
#include "../gpu.h"

struct GPUApi;

typedef struct GPUApiSampler {
GPUSampler *(*createSampler)(struct GPUApi *__restrict api);
} GPUApiSampler;

#ifdef __cplusplus
}
#endif
#endif /* gpu_gpudef_sampler_h */
1 change: 1 addition & 0 deletions include/gpu/gpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ extern "C" {
#include "frame.h"
#include "feature.h"
#include "descriptor.h"
#include "sampler.h"

typedef enum GPUBackend {
GPU_BACKEND_NULL = 0,
Expand Down
36 changes: 36 additions & 0 deletions include/gpu/sampler.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright (C) 2020 Recep Aslantas
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#ifndef gpu_sampler_h
#define gpu_sampler_h
#ifdef __cplusplus
extern "C" {
#endif

#include "common.h"

typedef struct GPUSampler {
void *_priv;
} GPUSampler;

GPU_EXPORT
GPUSampler*
GPUCreateSampler(GPUDevice *__restrict device);

#ifdef __cplusplus
}
#endif
#endif /* gpu_sampler_h */
28 changes: 28 additions & 0 deletions src/api/sampler.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Copyright (C) 2020 Recep Aslantas
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include "../common.h"

GPU_EXPORT
GPUSampler*
GPUCreateSampler(GPUDevice *__restrict device) {
GPUApi *api;

if (!(api = gpuActiveGPUApi()))
return NULL;

return api->sampler.createSampler(api);
}
1 change: 1 addition & 0 deletions src/backend/dx12/impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ GPU_HIDE void dx12_initCmdQue(GPUApiCommandQueue* api);
GPU_HIDE void dx12_initSwapChain(GPUApiSwapChain* apiSwapChain);
GPU_HIDE void dx12_initFrame(GPUApiFrame *apiFrame);
GPU_HIDE void dx12_initDescriptor(GPUApiDescriptor *apiDescriptor);
GPU_HIDE void dx12_initSampler(GPUApiSampler *apiSampler);

#endif /* dx12_apis_h */

0 comments on commit cd1d552

Please sign in to comment.