GPU: FrameBuffer: Remove GPUFrameBuffer wrapper opaque type

This is the first step into merging DRW_gpu_wrapper.hh into
the GPU module.

This is very similar to #119825.

Pull Request: https://projects.blender.org/blender/blender/pulls/146372
This commit is contained in:
Clément Foucault
2025-09-16 17:50:48 +02:00
committed by Clément Foucault
parent ecc495ac39
commit 9d0fe5573b
67 changed files with 273 additions and 282 deletions

View File

@@ -500,7 +500,7 @@ static PyObject *pygpu_state_active_framebuffer_get(PyObject * /*self*/)
{
BPYGPU_IS_INIT_OR_ERROR_OBJ;
GPUFrameBuffer *fb = GPU_framebuffer_active_get();
blender::gpu::FrameBuffer *fb = GPU_framebuffer_active_get();
return BPyGPUFrameBuffer_CreatePyObject(fb, true);
}