blob: d2d71beab858b9b58e4b467f56e87747f81a2575 [file] [log] [blame]
/*
*
* Copyright (C) 2015 Valve 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.
*
* Author: Cody Northrop <cody@lunarg.com>
* Author: David Pinedo <david@lunarg.com>
*/
#ifndef NULLDRV_H
#define NULLDRV_H
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>
#include <vulkan/vulkan.h>
#include <vulkan/vk_ext_debug_report.h>
#include <vulkan/vk_icd.h>
#include "icd.h"
#include "icd-format.h"
#include "icd-utils.h"
struct nulldrv_base {
void *loader_data;
uint32_t magic;
VkResult (*get_memory_requirements)(struct nulldrv_base *base, VkMemoryRequirements *pMemoryRequirements);
};
struct nulldrv_obj {
struct nulldrv_base base;
};
enum nulldrv_ext_type {
NULLDRV_EXT_KHR_SWAPCHAIN,
NULLDRV_EXT_COUNT,
NULLDRV_EXT_INVALID = NULLDRV_EXT_COUNT,
};
struct nulldrv_instance {
struct nulldrv_obj obj;
};
struct nulldrv_gpu {
void *loader_data;
};
struct nulldrv_dev {
struct nulldrv_base base;
bool exts[NULLDRV_EXT_COUNT];
struct nulldrv_desc_ooxx *desc_ooxx;
struct nulldrv_queue *queues[1];
};
struct nulldrv_desc_ooxx {
uint32_t surface_desc_size;
uint32_t sampler_desc_size;
};
struct nulldrv_queue {
struct nulldrv_base base;
struct nulldrv_dev *dev;
};
struct nulldrv_rt_view {
struct nulldrv_obj obj;
};
struct nulldrv_fence {
struct nulldrv_obj obj;
};
struct nulldrv_img {
struct nulldrv_obj obj;
VkImageType type;
int32_t depth;
uint32_t mip_levels;
uint32_t array_size;
VkFlags usage;
VkSampleCountFlagBits samples;
size_t total_size;
};
struct nulldrv_mem {
struct nulldrv_base base;
struct nulldrv_bo *bo;
VkDeviceSize size;
};
struct nulldrv_sampler {
struct nulldrv_obj obj;
};
struct nulldrv_img_view {
struct nulldrv_obj obj;
struct nulldrv_img *img;
float min_lod;
uint32_t cmd_len;
};
struct nulldrv_buf {
struct nulldrv_obj obj;
VkDeviceSize size;
VkFlags usage;
};
struct nulldrv_desc_layout {
struct nulldrv_obj obj;
};
struct nulldrv_pipeline_layout {
struct nulldrv_obj obj;
};
struct nulldrv_shader {
struct nulldrv_obj obj;
};
struct nulldrv_pipeline {
struct nulldrv_obj obj;
struct nulldrv_dev *dev;
};
struct nulldrv_dynamic_vp {
struct nulldrv_obj obj;
};
struct nulldrv_dynamic_line_width {
struct nulldrv_obj obj;
};
struct nulldrv_dynamic_depth_bias {
struct nulldrv_obj obj;
};
struct nulldrv_dynamic_blend {
struct nulldrv_obj obj;
};
struct nulldrv_dynamic_depth_bounds {
struct nulldrv_obj obj;
};
struct nulldrv_dynamic_stencil {
struct nulldrv_obj obj;
};
struct nulldrv_cmd {
struct nulldrv_obj obj;
};
struct nulldrv_desc_pool {
struct nulldrv_obj obj;
struct nulldrv_dev *dev;
};
struct nulldrv_desc_set {
struct nulldrv_obj obj;
struct nulldrv_desc_ooxx *ooxx;
const struct nulldrv_desc_layout *layout;
};
struct nulldrv_framebuffer {
struct nulldrv_obj obj;
};
struct nulldrv_render_pass {
struct nulldrv_obj obj;
};
struct nulldrv_buf_view {
struct nulldrv_obj obj;
struct nulldrv_buf *buf;
/* SURFACE_STATE */
uint32_t cmd[8];
uint32_t fs_cmd[8];
uint32_t cmd_len;
};
struct nulldrv_display {
struct nulldrv_base base;
struct nulldrv_dev *dev;
};
struct nulldrv_swap_chain {
struct nulldrv_base base;
struct nulldrv_dev *dev;
};
#endif /* NULLDRV_H */