X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2Fdirect3d9%2FResource.h;fp=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2Fdirect3d9%2FResource.h;h=0000000000000000000000000000000000000000;hb=d3453b257c2faf4db202d38666a872929ff220cd;hp=de2a902b26591c8214924530fb38d5a4df0d03af;hpb=1c2eac207d4963c6bc170b3f7fbe0feeffcd17e0;p=dtxmania%2Fdtxmania.git diff --git a/SlimDXc_Jun2010(VC++2008)/source/direct3d9/Resource.h b/SlimDXc_Jun2010(VC++2008)/source/direct3d9/Resource.h deleted file mode 100644 index de2a902b..00000000 --- a/SlimDXc_Jun2010(VC++2008)/source/direct3d9/Resource.h +++ /dev/null @@ -1,105 +0,0 @@ -/* -* Copyright (c) 2007-2010 SlimDX Group -* -* 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. -*/ -#pragma once - -#include "../ComObject.h" - -#include "Enums.h" - -namespace SlimDX -{ - namespace Direct3D9 - { - ref class Device; - - /// Represents a base class for all Direct3D resources. - /// IDirect3DResource9 - public ref class Resource abstract : public ComObject - { - COMOBJECT_BASE(IDirect3DResource9); - - protected: - /// - /// Initializes a new instance of the class. - /// - Resource() { } - - public: - static Resource^ FromPointer( System::IntPtr pointer ); - - /// - /// Preloads a managed resource. - /// - void Preload(); - - /// - /// The resource has the lowest priority possible. - /// - literal int PriorityMinimum = D3D9_RESOURCE_PRIORITY_MINIMUM; - - /// - /// The resource is scheduled with low priority. - /// - literal int PriorityLow = D3D9_RESOURCE_PRIORITY_LOW; - - /// - /// The resource is scheduled with normal priority. - /// - literal int PriorityNormal = D3D9_RESOURCE_PRIORITY_NORMAL; - - /// - /// The resource is scheduled with high priority. - /// - literal int PriorityHigh = D3D9_RESOURCE_PRIORITY_HIGH; - - /// - /// The resource has the maximum priority possible. - /// - literal int PriorityMaximum = D3D9_RESOURCE_PRIORITY_MAXIMUM; - - /// - /// Gets the device associated with the resource. - /// - property SlimDX::Direct3D9::Device^ Device - { - SlimDX::Direct3D9::Device^ get(); - } - - /// - /// Gets or sets the resource's priority. - /// - property int Priority - { - int get() { return InternalPointer->GetPriority(); } - void set(int value) { InternalPointer->SetPriority( value ); } - }; - - /// - /// Gets the type of the resource. - /// - property SlimDX::Direct3D9::ResourceType ResourceType - { - SlimDX::Direct3D9::ResourceType get() { return ( SlimDX::Direct3D9::ResourceType ) InternalPointer->GetType(); } - } - }; - } -}