Lines Matching defs:index

110 /** @brief The index indicating a bad (unused) block mode in the remap array. */
113 /** @brief The index indicating a bad (unused) partitioning in the remap array. */
116 /** @brief The number of partition index bits supported by the ASTC format . */
329 /** @brief The index (seed) of this partitioning. */
385 * @brief The weight index of the N weights that are interpolated for each texel.
406 * @brief The list of texels that use a specific weight index.
429 /** @brief The block mode index in the ASTC encoded form. */
432 /** @brief The decimation mode index in the compressor reindexed list. */
540 * actual remapped array index.
597 /** @brief The packed block mode array index, or @c BLOCK_BAD_BLOCK_MODE if not active. */
607 * @brief The packed partition table array index, or @c BLOCK_BAD_PARTITIONING if not active.
619 * Indexed by remapped index, not physical index.
626 * Indexed by remapped index, not physical index.
633 * Indexed by remapped index, not physical index.
638 * @brief Get the block mode structure for index @c block_mode.
642 * packed block mode index is not @c BLOCK_BAD_BLOCK_MODE.
644 * @param block_mode The packed block mode index.
656 * @brief Get the decimation mode structure for index @c decimation_mode.
659 * config. The mode array is stored packed, but this is only ever indexed by the packed index
662 * @param decimation_mode The packed decimation mode index.
672 * @brief Get the decimation info structure for index @c decimation_mode.
675 * config. The mode array is stored packed, but this is only ever indexed by the packed index
678 * @param decimation_mode The packed decimation mode index.
700 unsigned int index = (partition_count - 2) * BLOCK_MAX_PARTITIONINGS;
701 return this->partitionings + index;
708 * @param index The partition seed (between 0 and 1023).
712 const partition_info& get_partition_info(unsigned int partition_count, unsigned int index) const
717 packed_index = this->partitioning_packed_index[partition_count - 2][index];
722 assert(index == result.partition_index);
810 * @param index The texel index.
814 inline vfloat4 texel(unsigned int index) const
816 return vfloat4(data_r[index],
817 data_g[index],
818 data_b[index],
819 data_a[index]);
825 * @param index The texel index.
829 inline vfloat4 texel3(unsigned int index) const
831 return vfloat3(data_r[index],
832 data_g[index],
833 data_b[index]);
1054 * * bits 7:0 = previous-index, unquantized
1055 * * bits 15:8 = next-index, unquantized
1099 /** @brief The partition index; valid for @c NONCONST blocks if 2 or more partitions. */