1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
use {Capabilities, Device, SubmissionResult, Resources, IndexType, VertexCount};
use {state, target, handle, mapping, pso, shade, texture};
use command::{self, AccessInfo};
pub struct DummyDevice {
capabilities: Capabilities,
}
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum DummyResources {}
impl Resources for DummyResources {
type Buffer = ();
type Shader = ();
type Program = ();
type PipelineStateObject = ();
type Texture = ();
type ShaderResourceView = ();
type UnorderedAccessView = ();
type RenderTargetView = ();
type DepthStencilView = ();
type Sampler = ();
type Fence = DummyFence;
type Mapping = DummyMapping;
}
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct DummyFence;
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct DummyMapping;
impl mapping::Gate<DummyResources> for DummyMapping {
unsafe fn set<T>(&self, _index: usize, _val: T) { unimplemented!() }
unsafe fn slice<'a, 'b, T>(&'a self, _len: usize) -> &'b [T] { unimplemented!() }
unsafe fn mut_slice<'a, 'b, T>(&'a self, _len: usize) -> &'b mut [T] { unimplemented!() }
}
impl DummyDevice {
pub fn new() -> DummyDevice {
let caps = Capabilities {
max_vertex_count: 0,
max_index_count: 0,
max_texture_size: 0,
max_patch_size: 0,
instance_base_supported: false,
instance_call_supported: false,
instance_rate_supported: false,
vertex_base_supported: false,
srgb_color_supported: false,
constant_buffer_supported: false,
unordered_access_view_supported: false,
separate_blending_slots_supported: false,
copy_buffer_supported: false,
};
DummyDevice {
capabilities: caps,
}
}
}
pub struct DummyCommandBuffer;
impl command::Buffer<DummyResources> for DummyCommandBuffer {
fn reset(&mut self) {}
fn bind_pipeline_state(&mut self, _: ()) {}
fn bind_vertex_buffers(&mut self, _: pso::VertexBufferSet<DummyResources>) {}
fn bind_constant_buffers(&mut self, _: &[pso::ConstantBufferParam<DummyResources>]) {}
fn bind_global_constant(&mut self, _: shade::Location, _: shade::UniformValue) {}
fn bind_resource_views(&mut self, _: &[pso::ResourceViewParam<DummyResources>]) {}
fn bind_unordered_views(&mut self, _: &[pso::UnorderedViewParam<DummyResources>]) {}
fn bind_samplers(&mut self, _: &[pso::SamplerParam<DummyResources>]) {}
fn bind_pixel_targets(&mut self, _: pso::PixelTargetSet<DummyResources>) {}
fn bind_index(&mut self, _: (), _: IndexType) {}
fn set_scissor(&mut self, _: target::Rect) {}
fn set_ref_values(&mut self, _: state::RefValues) {}
fn copy_buffer(&mut self, _: (), _: (),
_: usize, _: usize,
_: usize) {}
fn copy_buffer_to_texture(&mut self, _: (), _: usize, _: texture::TextureCopyRegion<()>) {}
fn copy_texture_to_buffer(&mut self, _: texture::TextureCopyRegion<()>, _: (), _: usize) {}
fn copy_texture_to_texture(&mut self,
_: texture::TextureCopyRegion<()>,
_: texture::TextureCopyRegion<()>) {}
fn update_buffer(&mut self, _: (), _: &[u8], _: usize) {}
fn update_texture(&mut self, _: texture::TextureCopyRegion<()>, _: &[u8]) {}
fn generate_mipmap(&mut self, _: ()) {}
fn clear_color(&mut self, _: (), _: command::ClearColor) {}
fn clear_depth_stencil(&mut self, _: (), _: Option<target::Depth>,
_: Option<target::Stencil>) {}
fn call_draw(&mut self, _: VertexCount, _: VertexCount, _: Option<command::InstanceParams>) {}
fn call_draw_indexed(&mut self, _: VertexCount, _: VertexCount,
_: VertexCount, _: Option<command::InstanceParams>) {}
}
impl Device for DummyDevice {
type Resources = DummyResources;
type CommandBuffer = DummyCommandBuffer;
fn get_capabilities(&self) -> &Capabilities {
&self.capabilities
}
fn pin_submitted_resources(&mut self, _: &handle::Manager<DummyResources>) {}
fn submit(&mut self,
_: &mut DummyCommandBuffer,
_: &AccessInfo<Self::Resources>)
-> SubmissionResult<()> {
unimplemented!()
}
fn fenced_submit(&mut self,
_: &mut Self::CommandBuffer,
_: &AccessInfo<Self::Resources>,
_after: Option<handle::Fence<Self::Resources>>)
-> SubmissionResult<handle::Fence<Self::Resources>> {
unimplemented!()
}
fn wait_fence(&mut self, _: &handle::Fence<Self::Resources>) {
unimplemented!()
}
fn cleanup(&mut self) {}
}