Path: blob/21.2-virgl/src/gallium/drivers/freedreno/freedreno_texture.h
4570 views
/*1* Copyright (C) 2012 Rob Clark <[email protected]>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 (including the next11* paragraph) shall be included in all copies or substantial portions of the12* Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL17* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER18* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,19* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE20* SOFTWARE.21*22* Authors:23* Rob Clark <[email protected]>24*/2526#ifndef FREEDRENO_TEXTURE_H_27#define FREEDRENO_TEXTURE_H_2829#include "pipe/p_context.h"3031void fd_sampler_states_bind(struct pipe_context *pctx,32enum pipe_shader_type shader, unsigned start,33unsigned nr, void **hwcso);3435void fd_set_sampler_views(struct pipe_context *pctx,36enum pipe_shader_type shader, unsigned start,37unsigned nr, unsigned unbind_num_trailing_slots,38struct pipe_sampler_view **views);3940void fd_texture_init(struct pipe_context *pctx);4142struct fd_texture_stateobj;4344/* Both a3xx/a4xx share the same layout for the border-color buffer,45* which contains the pre-swizzled (based on texture format) border46* color value, with the following layout (per sampler):47*48* offset | description49* -------+-------------50* 0x00: | fp16[0] \51* | fp16[1] |___ swizzled fp16 channel values for "small float"52* | fp16[2] | formats (<= 16 bits per component, !integer)53* | fp16[3] /54* 0x08: | padding55* 0x10: | int16[0] \56* | int16[1] |___ swizzled int16 channels for "small integer"57* | int16[2] | formats (<= 16 bits per component, integer)58* | int16[3] /59* 0x18: | padding60* 0x20: | fp32[0] \61* | fp32[1] |___ swizzled fp32 channel values for "large float"62* | fp32[2] | formats (> 16 bits per component, !integer)63* | fp32[3] /64* 0x30: | int32[0] \65* | int32[1] |___ swizzled int32 channel values for "large int"66* | int32[2] | formats (> 16 bits per component, integer)67* | int32[3] /68*/69#define BORDERCOLOR_SIZE 0x4070void fd_setup_border_colors(struct fd_texture_stateobj *tex, void *ptr,71unsigned offset);7273#endif /* FREEDRENO_TEXTURE_H_ */747576