| 342 | } |
| 343 | |
| 344 | static inline BufferType GetAttachmentBufferType(RenderTargetAttachment attachment) |
| 345 | { |
| 346 | static AttachmentToBufferType g_AttachmentToBufferType; |
| 347 | assert(attachment < MAX_ATTACHMENT_COUNT); |
| 348 | return g_AttachmentToBufferType.m_AttachmentToBufferType[attachment]; |
| 349 | } |
| 350 | |
| 351 | static ShaderDesc::Shader* HasShader(ShaderDesc* shader_desc, ShaderDesc::ShaderType shader_type) |
| 352 | { |
no test coverage detected