Cleanup: GPU: Remove prefix 'e' from enum types

_No response_

Pull Request: https://projects.blender.org/blender/blender/pulls/146034
This commit is contained in:
Clément Foucault
2025-09-15 15:11:02 +02:00
committed by Clément Foucault
parent 5b02341a11
commit 680fec144c
111 changed files with 528 additions and 530 deletions

View File

@@ -455,7 +455,7 @@ static PyObject *pygpu_framebuffer_clear(BPyGPUFrameBuffer *self, PyObject *args
return nullptr;
}
eGPUFrameBufferBits buffers = eGPUFrameBufferBits(0);
GPUFrameBufferBits buffers = GPUFrameBufferBits(0);
float col[4] = {0.0f, 0.0f, 0.0f, 1.0f};
float depth = 1.0f;
uint stencil = 0;