2020-11-18 21:19:22 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef SRC_AST_INTRINSIC_TEXTURE_HELPER_TEST_H_
|
|
|
|
#define SRC_AST_INTRINSIC_TEXTURE_HELPER_TEST_H_
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "src/ast/builder.h"
|
|
|
|
#include "src/ast/type/sampler_type.h"
|
2020-12-09 15:57:00 +00:00
|
|
|
#include "src/ast/type/storage_texture_type.h"
|
2020-11-18 21:19:22 +00:00
|
|
|
#include "src/ast/type/texture_type.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
namespace intrinsic {
|
|
|
|
namespace test {
|
|
|
|
|
2020-12-09 15:57:00 +00:00
|
|
|
enum class TextureKind { kRegular, kDepth, kMultisampled, kStorage };
|
2020-11-18 21:19:22 +00:00
|
|
|
enum class TextureDataType { kF32, kU32, kI32 };
|
|
|
|
|
2020-12-09 15:57:00 +00:00
|
|
|
std::ostream& operator<<(std::ostream& out, const TextureKind& kind);
|
|
|
|
std::ostream& operator<<(std::ostream& out, const TextureDataType& ty);
|
2020-11-18 21:19:22 +00:00
|
|
|
|
2020-12-09 15:57:00 +00:00
|
|
|
/// Non-exhaustive list of valid texture overloads
|
2020-11-18 21:19:22 +00:00
|
|
|
enum class ValidTextureOverload {
|
|
|
|
kSample1dF32,
|
|
|
|
kSample1dArrayF32,
|
|
|
|
kSample2dF32,
|
|
|
|
kSample2dOffsetF32,
|
|
|
|
kSample2dArrayF32,
|
|
|
|
kSample2dArrayOffsetF32,
|
|
|
|
kSample3dF32,
|
|
|
|
kSample3dOffsetF32,
|
|
|
|
kSampleCubeF32,
|
|
|
|
kSampleCubeArrayF32,
|
|
|
|
kSampleDepth2dF32,
|
|
|
|
kSampleDepth2dOffsetF32,
|
|
|
|
kSampleDepth2dArrayF32,
|
|
|
|
kSampleDepth2dArrayOffsetF32,
|
|
|
|
kSampleDepthCubeF32,
|
|
|
|
kSampleDepthCubeArrayF32,
|
|
|
|
kSampleBias2dF32,
|
|
|
|
kSampleBias2dOffsetF32,
|
|
|
|
kSampleBias2dArrayF32,
|
|
|
|
kSampleBias2dArrayOffsetF32,
|
|
|
|
kSampleBias3dF32,
|
|
|
|
kSampleBias3dOffsetF32,
|
|
|
|
kSampleBiasCubeF32,
|
|
|
|
kSampleBiasCubeArrayF32,
|
|
|
|
kSampleLevel2dF32,
|
|
|
|
kSampleLevel2dOffsetF32,
|
|
|
|
kSampleLevel2dArrayF32,
|
|
|
|
kSampleLevel2dArrayOffsetF32,
|
|
|
|
kSampleLevel3dF32,
|
|
|
|
kSampleLevel3dOffsetF32,
|
|
|
|
kSampleLevelCubeF32,
|
|
|
|
kSampleLevelCubeArrayF32,
|
|
|
|
kSampleLevelDepth2dF32,
|
|
|
|
kSampleLevelDepth2dOffsetF32,
|
|
|
|
kSampleLevelDepth2dArrayF32,
|
|
|
|
kSampleLevelDepth2dArrayOffsetF32,
|
|
|
|
kSampleLevelDepthCubeF32,
|
|
|
|
kSampleLevelDepthCubeArrayF32,
|
|
|
|
kSampleGrad2dF32,
|
|
|
|
kSampleGrad2dOffsetF32,
|
|
|
|
kSampleGrad2dArrayF32,
|
|
|
|
kSampleGrad2dArrayOffsetF32,
|
|
|
|
kSampleGrad3dF32,
|
|
|
|
kSampleGrad3dOffsetF32,
|
|
|
|
kSampleGradCubeF32,
|
|
|
|
kSampleGradCubeArrayF32,
|
|
|
|
kSampleGradDepth2dF32,
|
|
|
|
kSampleGradDepth2dOffsetF32,
|
|
|
|
kSampleGradDepth2dArrayF32,
|
|
|
|
kSampleGradDepth2dArrayOffsetF32,
|
|
|
|
kSampleGradDepthCubeF32,
|
|
|
|
kSampleGradDepthCubeArrayF32,
|
2020-12-09 15:57:00 +00:00
|
|
|
kLoad1dF32,
|
|
|
|
kLoad1dU32,
|
|
|
|
kLoad1dI32,
|
|
|
|
kLoad1dArrayF32,
|
|
|
|
kLoad1dArrayU32,
|
|
|
|
kLoad1dArrayI32,
|
|
|
|
kLoad2dF32,
|
|
|
|
kLoad2dU32,
|
|
|
|
kLoad2dI32,
|
|
|
|
kLoad2dLevelF32,
|
|
|
|
kLoad2dLevelU32,
|
|
|
|
kLoad2dLevelI32,
|
|
|
|
kLoad2dArrayF32,
|
|
|
|
kLoad2dArrayU32,
|
|
|
|
kLoad2dArrayI32,
|
|
|
|
kLoad2dArrayLevelF32,
|
|
|
|
kLoad2dArrayLevelU32,
|
|
|
|
kLoad2dArrayLevelI32,
|
|
|
|
kLoad3dF32,
|
|
|
|
kLoad3dU32,
|
|
|
|
kLoad3dI32,
|
|
|
|
kLoad3dLevelF32,
|
|
|
|
kLoad3dLevelU32,
|
|
|
|
kLoad3dLevelI32,
|
|
|
|
kLoadMultisampled2dF32,
|
|
|
|
kLoadMultisampled2dU32,
|
|
|
|
kLoadMultisampled2dI32,
|
|
|
|
kLoadMultisampled2dArrayF32,
|
|
|
|
kLoadMultisampled2dArrayU32,
|
|
|
|
kLoadMultisampled2dArrayI32,
|
|
|
|
kLoadDepth2dF32,
|
|
|
|
kLoadDepth2dLevelF32,
|
|
|
|
kLoadDepth2dArrayF32,
|
|
|
|
kLoadDepth2dArrayLevelF32,
|
|
|
|
kLoadStorageRO1dRgba32float, // Not permutated for all texel formats
|
|
|
|
kLoadStorageRO1dArrayRgba32float, // Not permutated for all texel formats
|
|
|
|
kLoadStorageRO2dRgba8unorm,
|
|
|
|
kLoadStorageRO2dRgba8snorm,
|
|
|
|
kLoadStorageRO2dRgba8uint,
|
|
|
|
kLoadStorageRO2dRgba8sint,
|
|
|
|
kLoadStorageRO2dRgba16uint,
|
|
|
|
kLoadStorageRO2dRgba16sint,
|
|
|
|
kLoadStorageRO2dRgba16float,
|
|
|
|
kLoadStorageRO2dR32uint,
|
|
|
|
kLoadStorageRO2dR32sint,
|
|
|
|
kLoadStorageRO2dR32float,
|
|
|
|
kLoadStorageRO2dRg32uint,
|
|
|
|
kLoadStorageRO2dRg32sint,
|
|
|
|
kLoadStorageRO2dRg32float,
|
|
|
|
kLoadStorageRO2dRgba32uint,
|
|
|
|
kLoadStorageRO2dRgba32sint,
|
|
|
|
kLoadStorageRO2dRgba32float,
|
|
|
|
kLoadStorageRO2dArrayRgba32float, // Not permutated for all texel formats
|
|
|
|
kLoadStorageRO3dRgba32float, // Not permutated for all texel formats
|
2020-11-18 21:19:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Describes a texture intrinsic overload
|
|
|
|
struct TextureOverloadCase {
|
2020-12-09 15:57:00 +00:00
|
|
|
/// Constructor for textureSample...() functions
|
2020-11-18 21:19:22 +00:00
|
|
|
TextureOverloadCase(ValidTextureOverload,
|
|
|
|
const char*,
|
|
|
|
TextureKind,
|
2020-11-30 23:30:58 +00:00
|
|
|
type::SamplerKind,
|
|
|
|
type::TextureDimension,
|
2020-11-18 21:19:22 +00:00
|
|
|
TextureDataType,
|
|
|
|
const char*,
|
2020-11-30 23:30:58 +00:00
|
|
|
std::function<ExpressionList(Builder*)>);
|
2020-12-09 15:57:00 +00:00
|
|
|
/// Constructor for textureLoad() functions with non-storage textures
|
|
|
|
TextureOverloadCase(ValidTextureOverload,
|
|
|
|
const char*,
|
|
|
|
TextureKind,
|
|
|
|
type::TextureDimension,
|
|
|
|
TextureDataType,
|
|
|
|
const char*,
|
|
|
|
std::function<ExpressionList(Builder*)>);
|
|
|
|
/// Constructor for textureLoad() with storage textures
|
|
|
|
TextureOverloadCase(ValidTextureOverload,
|
|
|
|
const char*,
|
|
|
|
AccessControl,
|
|
|
|
type::ImageFormat,
|
|
|
|
type::TextureDimension,
|
|
|
|
TextureDataType,
|
|
|
|
const char*,
|
|
|
|
std::function<ExpressionList(Builder*)>);
|
2020-11-18 21:19:22 +00:00
|
|
|
/// Copy constructor
|
|
|
|
TextureOverloadCase(const TextureOverloadCase&);
|
|
|
|
/// Destructor
|
|
|
|
~TextureOverloadCase();
|
|
|
|
|
2020-12-09 15:57:00 +00:00
|
|
|
/// @return a vector containing a large number (non-exhaustive) of valid
|
|
|
|
/// texture overloads.
|
2020-11-18 21:19:22 +00:00
|
|
|
static std::vector<TextureOverloadCase> ValidCases();
|
|
|
|
|
2020-12-09 15:57:00 +00:00
|
|
|
/// @param builder the AST builder used for the test
|
|
|
|
/// @returns the vector component type of the texture function return value
|
|
|
|
ast::type::Type* resultVectorComponentType(ast::Builder* builder) const;
|
|
|
|
/// @param builder the AST builder used for the test
|
|
|
|
/// @returns a Variable holding the test texture
|
|
|
|
ast::Variable* buildTextureVariable(ast::Builder* builder) const;
|
|
|
|
/// @param builder the AST builder used for the test
|
|
|
|
/// @returns a Variable holding the test sampler
|
|
|
|
ast::Variable* buildSamplerVariable(ast::Builder* builder) const;
|
|
|
|
|
2020-11-18 21:19:22 +00:00
|
|
|
/// The enumerator for this overload
|
2020-12-09 15:57:00 +00:00
|
|
|
ValidTextureOverload const overload;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// A human readable description of the overload
|
2020-12-09 15:57:00 +00:00
|
|
|
const char* const description;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// The texture kind for the texture parameter
|
2020-12-09 15:57:00 +00:00
|
|
|
TextureKind const texture_kind;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// The sampler kind for the sampler parameter
|
2020-12-09 15:57:00 +00:00
|
|
|
/// Used only when texture_kind is not kStorage
|
|
|
|
type::SamplerKind const sampler_kind = type::SamplerKind::kSampler;
|
|
|
|
/// The access control for the storage texture
|
|
|
|
/// Used only when texture_kind is kStorage
|
|
|
|
AccessControl const access_control = AccessControl::kReadWrite;
|
|
|
|
/// The image format for the storage texture
|
|
|
|
/// Used only when texture_kind is kStorage
|
|
|
|
type::ImageFormat const image_format = type::ImageFormat::kNone;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// The dimensions of the texture parameter
|
2020-12-09 15:57:00 +00:00
|
|
|
type::TextureDimension const texture_dimension;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// The data type of the texture parameter
|
2020-12-09 15:57:00 +00:00
|
|
|
TextureDataType const texture_data_type;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// Name of the function. e.g. `textureSample`, `textureSampleGrad`, etc
|
2020-12-09 15:57:00 +00:00
|
|
|
const char* const function;
|
2020-11-18 21:19:22 +00:00
|
|
|
/// A function that builds the AST arguments for the overload
|
2020-12-09 15:57:00 +00:00
|
|
|
std::function<ExpressionList(Builder*)> const args;
|
2020-11-18 21:19:22 +00:00
|
|
|
};
|
|
|
|
|
2020-12-09 15:57:00 +00:00
|
|
|
std::ostream& operator<<(std::ostream& out, const TextureOverloadCase& data);
|
2020-11-18 21:19:22 +00:00
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
} // namespace intrinsic
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_AST_INTRINSIC_TEXTURE_HELPER_TEST_H_
|