mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 09:10:12 +01:00
v2: remove extra u_formats.h header addition (Chia-I Wu)
use stddef.h and not unistd.h (Chia-I Wu)
Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
Acked-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24672>
64 lines
2.7 KiB
C++
64 lines
2.7 KiB
C++
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "texcompress_astc_luts_wrap.h"
|
|
#include "texcompress_astc_luts.h"
|
|
|
|
extern "C" void
|
|
_mesa_init_astc_decoder_luts(astc_decoder_lut_holder *holder)
|
|
{
|
|
auto &luts = Granite::get_astc_luts();
|
|
|
|
holder->color_endpoint.data = luts.color_endpoint.lut;
|
|
holder->color_endpoint.size_B = sizeof(luts.color_endpoint.lut);
|
|
holder->color_endpoint.format = PIPE_FORMAT_R16G16B16A16_UINT;
|
|
|
|
holder->color_endpoint_unquant.data = luts.color_endpoint.unquant_lut;
|
|
holder->color_endpoint_unquant.size_B = luts.color_endpoint.unquant_offset;
|
|
holder->color_endpoint_unquant.format = PIPE_FORMAT_R8_UINT;
|
|
|
|
holder->weights.data = luts.weights.lut;
|
|
holder->weights.size_B = sizeof(luts.weights.lut);
|
|
holder->weights.format = PIPE_FORMAT_R8G8B8A8_UINT;
|
|
|
|
holder->weights_unquant.data = luts.weights.unquant_lut;
|
|
holder->weights_unquant.size_B = luts.weights.unquant_offset;
|
|
holder->weights_unquant.format = PIPE_FORMAT_R8_UINT;
|
|
|
|
holder->trits_quints.data = luts.integer.trits_quints;
|
|
holder->trits_quints.size_B = sizeof(luts.integer.trits_quints);
|
|
holder->trits_quints.format = PIPE_FORMAT_R16_UINT;
|
|
}
|
|
|
|
extern "C" void *
|
|
_mesa_get_astc_decoder_partition_table(uint32_t block_width,
|
|
uint32_t block_height,
|
|
unsigned *lut_width,
|
|
unsigned *lut_height)
|
|
{
|
|
auto &luts = Granite::get_astc_luts();
|
|
auto &table = luts.get_partition_table(block_width, block_height);
|
|
|
|
*lut_width = table.lut_width;
|
|
*lut_height = table.lut_height;
|
|
return table.lut_buffer.data();
|
|
}
|