1b8e80941Smrg/*
2b8e80941Smrg * Copyright 2011 Joakim Sindholt <opensource@zhasha.com>
3b8e80941Smrg *
4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
5b8e80941Smrg * copy of this software and associated documentation files (the "Software"),
6b8e80941Smrg * to deal in the Software without restriction, including without limitation
7b8e80941Smrg * on the rights to use, copy, modify, merge, publish, distribute, sub
8b8e80941Smrg * license, and/or sell copies of the Software, and to permit persons to whom
9b8e80941Smrg * the Software is furnished to do so, subject to the following conditions:
10b8e80941Smrg *
11b8e80941Smrg * The above copyright notice and this permission notice (including the next
12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the
13b8e80941Smrg * Software.
14b8e80941Smrg *
15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18b8e80941Smrg * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19b8e80941Smrg * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20b8e80941Smrg * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21b8e80941Smrg * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22b8e80941Smrg
23b8e80941Smrg#ifndef _NINE_VOLUME9_H_
24b8e80941Smrg#define _NINE_VOLUME9_H_
25b8e80941Smrg
26b8e80941Smrg#include "iunknown.h"
27b8e80941Smrg
28b8e80941Smrg#include "pipe/p_state.h"
29b8e80941Smrg#include "util/u_inlines.h"
30b8e80941Smrg
31b8e80941Smrgstruct util_hash_table;
32b8e80941Smrg
33b8e80941Smrgstruct NineDevice9;
34b8e80941Smrg
35b8e80941Smrgstruct NineVolume9
36b8e80941Smrg{
37b8e80941Smrg    struct NineUnknown base;
38b8e80941Smrg
39b8e80941Smrg    struct pipe_resource *resource;
40b8e80941Smrg    unsigned level;
41b8e80941Smrg    unsigned level_actual;
42b8e80941Smrg
43b8e80941Smrg    uint8_t *data; /* system memory backing */
44b8e80941Smrg    uint8_t *data_internal; /* for conversions */
45b8e80941Smrg
46b8e80941Smrg    D3DVOLUME_DESC desc;
47b8e80941Smrg    struct pipe_resource info;
48b8e80941Smrg    enum pipe_format format_internal;
49b8e80941Smrg    unsigned stride;
50b8e80941Smrg    unsigned stride_internal;
51b8e80941Smrg    unsigned layer_stride;
52b8e80941Smrg    unsigned layer_stride_internal;
53b8e80941Smrg
54b8e80941Smrg    struct pipe_transfer *transfer;
55b8e80941Smrg    unsigned lock_count;
56b8e80941Smrg
57b8e80941Smrg    unsigned pending_uploads_counter; /* pending uploads */
58b8e80941Smrg};
59b8e80941Smrgstatic inline struct NineVolume9 *
60b8e80941SmrgNineVolume9( void *data )
61b8e80941Smrg{
62b8e80941Smrg    return (struct NineVolume9 *)data;
63b8e80941Smrg}
64b8e80941Smrg
65b8e80941SmrgHRESULT
66b8e80941SmrgNineVolume9_new( struct NineDevice9 *pDevice,
67b8e80941Smrg                 struct NineUnknown *pContainer,
68b8e80941Smrg                 struct pipe_resource *pResource,
69b8e80941Smrg                 unsigned Level,
70b8e80941Smrg                 D3DVOLUME_DESC *pDesc,
71b8e80941Smrg                 struct NineVolume9 **ppOut );
72b8e80941Smrg
73b8e80941Smrg/*** Nine private ***/
74b8e80941Smrg
75b8e80941Smrgstatic inline void
76b8e80941SmrgNineVolume9_SetResource( struct NineVolume9 *This,
77b8e80941Smrg                         struct pipe_resource *resource, unsigned level )
78b8e80941Smrg{
79b8e80941Smrg    This->level = level;
80b8e80941Smrg    pipe_resource_reference(&This->resource, resource);
81b8e80941Smrg}
82b8e80941Smrg
83b8e80941Smrgvoid
84b8e80941SmrgNineVolume9_AddDirtyRegion( struct NineVolume9 *This,
85b8e80941Smrg                            const struct pipe_box *box );
86b8e80941Smrg
87b8e80941Smrgvoid
88b8e80941SmrgNineVolume9_CopyMemToDefault( struct NineVolume9 *This,
89b8e80941Smrg                              struct NineVolume9 *From,
90b8e80941Smrg                              unsigned dstx, unsigned dsty, unsigned dstz,
91b8e80941Smrg                              struct pipe_box *pSrcBox );
92b8e80941Smrg
93b8e80941SmrgHRESULT
94b8e80941SmrgNineVolume9_UploadSelf( struct NineVolume9 *This,
95b8e80941Smrg                        const struct pipe_box *damaged );
96b8e80941Smrg
97b8e80941Smrg
98b8e80941Smrg/*** Direct3D public ***/
99b8e80941Smrg
100b8e80941SmrgHRESULT NINE_WINAPI
101b8e80941SmrgNineVolume9_GetContainer( struct NineVolume9 *This,
102b8e80941Smrg                          REFIID riid,
103b8e80941Smrg                          void **ppContainer );
104b8e80941Smrg
105b8e80941SmrgHRESULT NINE_WINAPI
106b8e80941SmrgNineVolume9_GetDesc( struct NineVolume9 *This,
107b8e80941Smrg                     D3DVOLUME_DESC *pDesc );
108b8e80941Smrg
109b8e80941SmrgHRESULT NINE_WINAPI
110b8e80941SmrgNineVolume9_LockBox( struct NineVolume9 *This,
111b8e80941Smrg                     D3DLOCKED_BOX *pLockedVolume,
112b8e80941Smrg                     const D3DBOX *pBox,
113b8e80941Smrg                     DWORD Flags );
114b8e80941Smrg
115b8e80941SmrgHRESULT NINE_WINAPI
116b8e80941SmrgNineVolume9_UnlockBox( struct NineVolume9 *This );
117b8e80941Smrg
118b8e80941Smrg#endif /* _NINE_VOLUME9_H_ */
119