Path: blob/21.2-virgl/src/gallium/drivers/svga/svga_pipe_constants.c
4570 views
/**********************************************************1* Copyright 2008-2009 VMware, Inc. All rights reserved.2*3* Permission is hereby granted, free of charge, to any person4* obtaining a copy of this software and associated documentation5* files (the "Software"), to deal in the Software without6* restriction, including without limitation the rights to use, copy,7* modify, merge, publish, distribute, sublicense, and/or sell copies8* of the Software, and to permit persons to whom the Software is9* furnished to do so, subject to the following conditions:10*11* The above copyright notice and this permission notice shall be12* included in all copies or substantial portions of the Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,15* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF16* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND17* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS18* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN19* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN20* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE21* SOFTWARE.22*23**********************************************************/2425#include "util/u_inlines.h"26#include "pipe/p_defines.h"27#include "util/u_math.h"28#include "tgsi/tgsi_parse.h"2930#include "svga_context.h"31#include "svga_resource_buffer.h"323334struct svga_constbuf35{36unsigned type;37float (*data)[4];38unsigned count;39};40414243static void44svga_set_constant_buffer(struct pipe_context *pipe,45enum pipe_shader_type shader, uint index,46bool take_ownership,47const struct pipe_constant_buffer *cb)48{49struct svga_screen *svgascreen = svga_screen(pipe->screen);50struct svga_context *svga = svga_context(pipe);51struct pipe_resource *buf = cb ? cb->buffer : NULL;52unsigned buffer_size = 0;5354if (cb) {55buffer_size = cb->buffer_size;56if (cb->user_buffer) {57buf = svga_user_buffer_create(pipe->screen,58(void *) cb->user_buffer,59cb->buffer_size,60PIPE_BIND_CONSTANT_BUFFER);61}62}6364assert(shader < PIPE_SHADER_TYPES);65assert(index < ARRAY_SIZE(svga->curr.constbufs[shader]));66assert(index < svgascreen->max_const_buffers);67(void) svgascreen;6869if (take_ownership) {70pipe_resource_reference(&svga->curr.constbufs[shader][index].buffer, NULL);71svga->curr.constbufs[shader][index].buffer = buf;72} else {73pipe_resource_reference(&svga->curr.constbufs[shader][index].buffer, buf);74}7576/* Make sure the constant buffer size to be updated is within the77* limit supported by the device.78*/79svga->curr.constbufs[shader][index].buffer_size =80MIN2(buffer_size, SVGA_MAX_CONST_BUF_SIZE);8182svga->curr.constbufs[shader][index].buffer_offset = cb ? cb->buffer_offset : 0;83svga->curr.constbufs[shader][index].user_buffer = NULL; /* not used */8485if (index == 0) {86if (shader == PIPE_SHADER_FRAGMENT)87svga->dirty |= SVGA_NEW_FS_CONSTS;88else if (shader == PIPE_SHADER_VERTEX)89svga->dirty |= SVGA_NEW_VS_CONSTS;90else if (shader == PIPE_SHADER_GEOMETRY)91svga->dirty |= SVGA_NEW_GS_CONSTS;92else if (shader == PIPE_SHADER_TESS_CTRL)93svga->dirty |= SVGA_NEW_TCS_CONSTS;94else if (shader == PIPE_SHADER_TESS_EVAL)95svga->dirty |= SVGA_NEW_TES_CONSTS;96} else {97if (shader == PIPE_SHADER_FRAGMENT)98svga->dirty |= SVGA_NEW_FS_CONST_BUFFER;99else if (shader == PIPE_SHADER_VERTEX)100svga->dirty |= SVGA_NEW_VS_CONST_BUFFER;101else if (shader == PIPE_SHADER_GEOMETRY)102svga->dirty |= SVGA_NEW_GS_CONST_BUFFER;103else if (shader == PIPE_SHADER_TESS_CTRL)104svga->dirty |= SVGA_NEW_TCS_CONST_BUFFER;105else if (shader == PIPE_SHADER_TESS_EVAL)106svga->dirty |= SVGA_NEW_TES_CONST_BUFFER;107108/* update bitmask of dirty const buffers */109svga->state.dirty_constbufs[shader] |= (1 << index);110}111112if (cb && cb->user_buffer) {113pipe_resource_reference(&buf, NULL);114}115}116117118void119svga_init_constbuffer_functions(struct svga_context *svga)120{121svga->pipe.set_constant_buffer = svga_set_constant_buffer;122}123124125126