Path: blob/21.2-virgl/src/gallium/drivers/swr/swr_fence_work.h
4570 views
/****************************************************************************1* Copyright (C) 2016 Intel Corporation. All Rights Reserved.2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and associated documentation files (the "Software"),5* to deal in the Software without restriction, including without limitation6* the rights to use, copy, modify, merge, publish, distribute, sublicense,7* and/or sell copies of the Software, and to permit persons to whom the8* Software is furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice shall be included11* in all copies or substantial portions of the Software.12*13* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS14* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,15* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL16* BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN17* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN18* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.19***************************************************************************/2021#ifndef SWR_FENCE_WORK_H22#define SWR_FENCE_WORK_H2324typedef void(*SWR_WORK_CALLBACK_FUNC)(struct swr_fence_work *work);2526struct swr_fence_work {27SWR_WORK_CALLBACK_FUNC callback;2829union {30void *data;31struct swr_vertex_shader *swr_vs;32struct swr_fragment_shader *swr_fs;33struct swr_geometry_shader *swr_gs;34struct swr_tess_control_shader *swr_tcs;35struct swr_tess_evaluation_shader *swr_tes;36} free;3738struct swr_fence_work *next;39};4041void swr_fence_do_work(struct swr_fence *fence);4243bool swr_fence_work_free(struct pipe_fence_handle *fence, void *data,44bool aligned_free = false);45bool swr_fence_work_delete_vs(struct pipe_fence_handle *fence,46struct swr_vertex_shader *swr_vs);47bool swr_fence_work_delete_fs(struct pipe_fence_handle *fence,48struct swr_fragment_shader *swr_vs);49bool swr_fence_work_delete_gs(struct pipe_fence_handle *fence,50struct swr_geometry_shader *swr_gs);51bool swr_fence_work_delete_tcs(struct pipe_fence_handle *fence,52struct swr_tess_control_shader *swr_tcs);53bool swr_fence_work_delete_tes(struct pipe_fence_handle *fence,54struct swr_tess_evaluation_shader *swr_tes);55#endif565758