Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/gpu/gpu_py_offscreen.h
| Show All 32 Lines | |||||
| typedef struct BPyGPUOffScreen { | typedef struct BPyGPUOffScreen { | ||||
| PyObject_HEAD | PyObject_HEAD | ||||
| struct GPUOffScreen *ofs; | struct GPUOffScreen *ofs; | ||||
| } BPyGPUOffScreen; | } BPyGPUOffScreen; | ||||
| PyObject *BPyGPUOffScreen_CreatePyObject(struct GPUOffScreen *ofs) ATTR_NONNULL(1); | PyObject *BPyGPUOffScreen_CreatePyObject(struct GPUOffScreen *ofs) ATTR_NONNULL(1); | ||||
| struct GPUContext; | |||||
fclem: put this line above the other typedef. | |||||
| void BPyGPUOffScreen_free_for_context(struct GPUContext *ctx); | |||||
| #endif /* __GPU_PY_OFFSCREEN_H__ */ | #endif /* __GPU_PY_OFFSCREEN_H__ */ | ||||
put this line above the other typedef.