2022-01-26 17:40:27 -08:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Zebediah Figura for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2022-01-26 17:40:33 -08:00
|
|
|
#include <stdint.h>
|
2022-01-26 17:40:27 -08:00
|
|
|
#include "vkd3d_windows.h"
|
|
|
|
#include "vkd3d_d3dcommon.h"
|
2022-01-26 17:40:28 -08:00
|
|
|
#include "vkd3d_d3d12.h"
|
|
|
|
#include "vkd3d_dxgiformat.h"
|
2022-03-12 13:02:15 -08:00
|
|
|
#include "vkd3d_common.h"
|
2022-01-26 17:40:28 -08:00
|
|
|
#include "utils.h"
|
2022-01-26 17:40:27 -08:00
|
|
|
|
2022-03-19 10:35:34 -07:00
|
|
|
#define RENDER_TARGET_WIDTH 640
|
|
|
|
#define RENDER_TARGET_HEIGHT 480
|
|
|
|
|
2022-01-26 17:40:27 -08:00
|
|
|
enum shader_model
|
|
|
|
{
|
2022-03-07 17:55:44 -08:00
|
|
|
SHADER_MODEL_2_0,
|
|
|
|
SHADER_MODEL_4_0,
|
2022-01-26 17:40:27 -08:00
|
|
|
SHADER_MODEL_4_1,
|
|
|
|
SHADER_MODEL_5_0,
|
|
|
|
SHADER_MODEL_5_1,
|
|
|
|
};
|
|
|
|
|
2022-01-26 17:40:28 -08:00
|
|
|
enum texture_data_type
|
|
|
|
{
|
|
|
|
TEXTURE_DATA_FLOAT,
|
|
|
|
TEXTURE_DATA_SINT,
|
|
|
|
TEXTURE_DATA_UINT,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sampler
|
|
|
|
{
|
|
|
|
unsigned int slot;
|
|
|
|
|
|
|
|
D3D12_FILTER filter;
|
|
|
|
D3D12_TEXTURE_ADDRESS_MODE u_address, v_address, w_address;
|
|
|
|
};
|
|
|
|
|
2022-03-21 18:42:17 -07:00
|
|
|
enum resource_type
|
|
|
|
{
|
|
|
|
RESOURCE_TYPE_TEXTURE,
|
2022-03-21 18:42:18 -07:00
|
|
|
RESOURCE_TYPE_VERTEX_BUFFER,
|
2022-03-21 18:42:17 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct resource_params
|
2022-01-26 17:40:28 -08:00
|
|
|
{
|
|
|
|
unsigned int slot;
|
2022-03-21 18:42:17 -07:00
|
|
|
enum resource_type type;
|
2022-01-26 17:40:28 -08:00
|
|
|
|
|
|
|
DXGI_FORMAT format;
|
|
|
|
enum texture_data_type data_type;
|
|
|
|
unsigned int texel_size;
|
|
|
|
unsigned int width, height;
|
|
|
|
uint8_t *data;
|
|
|
|
size_t data_size, data_capacity;
|
2022-01-26 17:40:29 -08:00
|
|
|
};
|
|
|
|
|
2022-03-21 18:42:17 -07:00
|
|
|
struct resource
|
2022-01-26 17:40:29 -08:00
|
|
|
{
|
|
|
|
unsigned int slot;
|
2022-03-21 18:42:17 -07:00
|
|
|
enum resource_type type;
|
2022-03-21 18:42:18 -07:00
|
|
|
|
|
|
|
unsigned int size;
|
2022-01-26 17:40:28 -08:00
|
|
|
};
|
|
|
|
|
2022-03-21 18:42:16 -07:00
|
|
|
struct input_element
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
unsigned int slot;
|
|
|
|
DXGI_FORMAT format;
|
|
|
|
unsigned int texel_size;
|
|
|
|
unsigned int index;
|
|
|
|
};
|
|
|
|
|
2022-04-11 10:18:29 -07:00
|
|
|
#define MAX_RESOURCES 32
|
2022-04-11 10:18:30 -07:00
|
|
|
#define MAX_SAMPLERS 32
|
2022-04-11 10:18:29 -07:00
|
|
|
|
2022-03-19 10:35:31 -07:00
|
|
|
struct shader_runner
|
2022-01-26 17:40:28 -08:00
|
|
|
{
|
|
|
|
const struct shader_runner_ops *ops;
|
|
|
|
|
2022-04-14 03:52:33 -07:00
|
|
|
bool is_todo;
|
|
|
|
|
2022-03-21 18:42:14 -07:00
|
|
|
char *vs_source;
|
2022-01-26 17:40:31 -08:00
|
|
|
char *ps_source;
|
2022-01-26 17:40:28 -08:00
|
|
|
enum shader_model minimum_shader_model;
|
|
|
|
|
2022-04-14 03:52:32 -07:00
|
|
|
bool last_render_failed;
|
|
|
|
|
2022-01-26 17:40:28 -08:00
|
|
|
uint32_t *uniforms;
|
2022-01-26 17:40:32 -08:00
|
|
|
size_t uniform_count, uniform_capacity;
|
2022-01-26 17:40:28 -08:00
|
|
|
|
2022-04-11 10:18:29 -07:00
|
|
|
struct resource *resources[MAX_RESOURCES];
|
2022-03-21 18:42:17 -07:00
|
|
|
size_t resource_count;
|
2022-01-26 17:40:28 -08:00
|
|
|
|
2022-04-11 10:18:30 -07:00
|
|
|
struct sampler samplers[MAX_SAMPLERS];
|
2022-01-26 17:40:28 -08:00
|
|
|
size_t sampler_count;
|
2022-03-21 18:42:16 -07:00
|
|
|
|
|
|
|
struct input_element *input_elements;
|
|
|
|
size_t input_element_count, input_element_capacity;
|
2022-01-26 17:40:28 -08:00
|
|
|
};
|
|
|
|
|
2022-01-26 17:40:27 -08:00
|
|
|
struct shader_runner_ops
|
|
|
|
{
|
2022-04-07 16:58:14 -07:00
|
|
|
/* Returns false if unable to run the given tests. If NULL, all tests are
|
|
|
|
* run. */
|
|
|
|
bool (*check_requirements)(struct shader_runner *runner);
|
2022-03-21 18:42:17 -07:00
|
|
|
struct resource *(*create_resource)(struct shader_runner *runner, const struct resource_params *params);
|
|
|
|
void (*destroy_resource)(struct shader_runner *runner, struct resource *resource);
|
2022-04-14 03:52:32 -07:00
|
|
|
bool (*draw)(struct shader_runner *runner, D3D_PRIMITIVE_TOPOLOGY primitive_topology, unsigned int vertex_count);
|
2022-05-17 06:45:41 -07:00
|
|
|
struct resource_readback *(*get_rt_readback)(struct shader_runner *runner);
|
|
|
|
void (*release_readback)(struct shader_runner *runner, struct resource_readback *rb);
|
2022-01-26 17:40:27 -08:00
|
|
|
};
|
|
|
|
|
2022-03-12 13:02:15 -08:00
|
|
|
void fatal_error(const char *format, ...) VKD3D_NORETURN VKD3D_PRINTF_FUNC(1, 2);
|
|
|
|
|
2022-03-21 18:42:18 -07:00
|
|
|
unsigned int get_vb_stride(const struct shader_runner *runner, unsigned int slot);
|
|
|
|
|
2022-03-19 10:35:31 -07:00
|
|
|
void run_shader_tests(struct shader_runner *runner, int argc, char **argv, const struct shader_runner_ops *ops);
|
2022-01-26 17:40:27 -08:00
|
|
|
|
2022-01-26 17:40:33 -08:00
|
|
|
#ifdef _WIN32
|
2022-04-07 16:58:17 -07:00
|
|
|
void run_shader_tests_d3d9(int argc, char **argv);
|
2022-01-26 17:40:33 -08:00
|
|
|
void run_shader_tests_d3d11(int argc, char **argv);
|
2022-04-11 10:18:31 -07:00
|
|
|
#else
|
|
|
|
void run_shader_tests_vulkan(int argc, char **argv);
|
2022-01-26 17:40:33 -08:00
|
|
|
#endif
|
2022-01-26 17:40:27 -08:00
|
|
|
void run_shader_tests_d3d12(int argc, char **argv);
|