Module: Mesa Branch: main Commit: 8148e934a69673cd5881bf0dad9a63fe09589335 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8148e934a69673cd5881bf0dad9a63fe09589335
Author: Alejandro PiƱeiro <[email protected]> Date: Fri Oct 21 14:14:41 2022 +0200 v3d: replace all TODO around for FIXME Even if there is a slight difference of meaning between FIXME and TODO, at some point we agreed to use just FIXME for all pending things to do, just to make it easier to grepping for things that can be done. And after all, one could argue that is there is something pending TO DO, is that needs FIXING. Acked-by: Iago Toral Quiroga <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19225> --- src/broadcom/vulkan/v3dv_device.c | 2 +- src/broadcom/vulkan/v3dv_private.h | 2 +- src/gallium/drivers/v3d/v3dx_rcl.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c index be1a45d0d38..ba5df92f630 100644 --- a/src/broadcom/vulkan/v3dv_device.c +++ b/src/broadcom/vulkan/v3dv_device.c @@ -998,7 +998,7 @@ enumerate_devices(struct vk_instance *vk_instance) struct v3dv_instance *instance = container_of(vk_instance, struct v3dv_instance, vk); - /* TODO: Check for more devices? */ + /* FIXME: Check for more devices? */ drmDevicePtr devices[8]; int max_devices; diff --git a/src/broadcom/vulkan/v3dv_private.h b/src/broadcom/vulkan/v3dv_private.h index 5a7f01257da..d94eeef260e 100644 --- a/src/broadcom/vulkan/v3dv_private.h +++ b/src/broadcom/vulkan/v3dv_private.h @@ -1906,7 +1906,7 @@ v3dv_pipeline_layout_unref(struct v3dv_device *device, struct v3dv_descriptor_map { - /* TODO: avoid fixed size array/justify the size */ + /* FIXME: avoid fixed size array/justify the size */ unsigned num_desc; /* Number of descriptors */ int set[DESCRIPTOR_MAP_SIZE]; int binding[DESCRIPTOR_MAP_SIZE]; diff --git a/src/gallium/drivers/v3d/v3dx_rcl.c b/src/gallium/drivers/v3d/v3dx_rcl.c index 6147d6aef5a..538912f641c 100644 --- a/src/gallium/drivers/v3d/v3dx_rcl.c +++ b/src/gallium/drivers/v3d/v3dx_rcl.c @@ -864,7 +864,7 @@ v3dX(emit_rcl)(struct v3d_job *job) #endif #if V3D_VERSION < 40 - /* TODO: Don't bother emitting if we don't load/clear Z/S. */ + /* FIXME: Don't bother emitting if we don't load/clear Z/S. */ if (job->zsbuf) { struct pipe_surface *psurf = job->zsbuf; struct v3d_surface *surf = v3d_surface(psurf);
