17ec681f3Smrg/*
27ec681f3Smrg * Copyright 2011 Joakim Sindholt <opensource@zhasha.com>
37ec681f3Smrg *
47ec681f3Smrg * Permission is hereby granted, free of charge, to any person obtaining a
57ec681f3Smrg * copy of this software and associated documentation files (the "Software"),
67ec681f3Smrg * to deal in the Software without restriction, including without limitation
77ec681f3Smrg * on the rights to use, copy, modify, merge, publish, distribute, sub
87ec681f3Smrg * license, and/or sell copies of the Software, and to permit persons to whom
97ec681f3Smrg * the Software is furnished to do so, subject to the following conditions:
107ec681f3Smrg *
117ec681f3Smrg * The above copyright notice and this permission notice (including the next
127ec681f3Smrg * paragraph) shall be included in all copies or substantial portions of the
137ec681f3Smrg * Software.
147ec681f3Smrg *
157ec681f3Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
167ec681f3Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
177ec681f3Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
187ec681f3Smrg * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
197ec681f3Smrg * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
207ec681f3Smrg * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
217ec681f3Smrg * USE OR OTHER DEALINGS IN THE SOFTWARE. */
227ec681f3Smrg
237ec681f3Smrg#ifndef _NINE_VOLUMETEXTURE9_H_
247ec681f3Smrg#define _NINE_VOLUMETEXTURE9_H_
257ec681f3Smrg
267ec681f3Smrg#include "basetexture9.h"
277ec681f3Smrg#include "volume9.h"
287ec681f3Smrg
297ec681f3Smrgstruct NineVolumeTexture9
307ec681f3Smrg{
317ec681f3Smrg    struct NineBaseTexture9 base;
327ec681f3Smrg    struct NineVolume9 **volumes;
337ec681f3Smrg    struct pipe_box dirty_box;
347ec681f3Smrg};
357ec681f3Smrgstatic inline struct NineVolumeTexture9 *
367ec681f3SmrgNineVolumeTexture9( void *data )
377ec681f3Smrg{
387ec681f3Smrg    return (struct NineVolumeTexture9 *)data;
397ec681f3Smrg}
407ec681f3Smrg
417ec681f3SmrgHRESULT
427ec681f3SmrgNineVolumeTexture9_new( struct NineDevice9 *pDevice,
437ec681f3Smrg                        UINT Width, UINT Height, UINT Depth, UINT Levels,
447ec681f3Smrg                        DWORD Usage,
457ec681f3Smrg                        D3DFORMAT Format,
467ec681f3Smrg                        D3DPOOL Pool,
477ec681f3Smrg                        struct NineVolumeTexture9 **ppOut,
487ec681f3Smrg                        HANDLE *pSharedHandle );
497ec681f3Smrg
507ec681f3SmrgHRESULT NINE_WINAPI
517ec681f3SmrgNineVolumeTexture9_GetLevelDesc( struct NineVolumeTexture9 *This,
527ec681f3Smrg                                 UINT Level,
537ec681f3Smrg                                 D3DVOLUME_DESC *pDesc );
547ec681f3Smrg
557ec681f3SmrgHRESULT NINE_WINAPI
567ec681f3SmrgNineVolumeTexture9_GetVolumeLevel( struct NineVolumeTexture9 *This,
577ec681f3Smrg                                   UINT Level,
587ec681f3Smrg                                   IDirect3DVolume9 **ppVolumeLevel );
597ec681f3Smrg
607ec681f3SmrgHRESULT NINE_WINAPI
617ec681f3SmrgNineVolumeTexture9_LockBox( struct NineVolumeTexture9 *This,
627ec681f3Smrg                            UINT Level,
637ec681f3Smrg                            D3DLOCKED_BOX *pLockedVolume,
647ec681f3Smrg                            const D3DBOX *pBox,
657ec681f3Smrg                            DWORD Flags );
667ec681f3Smrg
677ec681f3SmrgHRESULT NINE_WINAPI
687ec681f3SmrgNineVolumeTexture9_UnlockBox( struct NineVolumeTexture9 *This,
697ec681f3Smrg                              UINT Level );
707ec681f3Smrg
717ec681f3SmrgHRESULT NINE_WINAPI
727ec681f3SmrgNineVolumeTexture9_AddDirtyBox( struct NineVolumeTexture9 *This,
737ec681f3Smrg                                const D3DBOX *pDirtyBox );
747ec681f3Smrg
757ec681f3Smrg#endif /* _NINE_VOLUMETEXTURE9_H_ */
76