X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2Fdirect2d%2FPathGeometry.cpp;fp=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2Fdirect2d%2FPathGeometry.cpp;h=0000000000000000000000000000000000000000;hb=d3453b257c2faf4db202d38666a872929ff220cd;hp=be30179f8695d6fb01c665dccadc23d82b375315;hpb=1c2eac207d4963c6bc170b3f7fbe0feeffcd17e0;p=dtxmania%2Fdtxmania.git diff --git a/SlimDXc_Jun2010(VC++2008)/source/direct2d/PathGeometry.cpp b/SlimDXc_Jun2010(VC++2008)/source/direct2d/PathGeometry.cpp deleted file mode 100644 index be30179f..00000000 --- a/SlimDXc_Jun2010(VC++2008)/source/direct2d/PathGeometry.cpp +++ /dev/null @@ -1,84 +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. -*/ -#include "stdafx.h" - -#include -#include - -#include "Direct2DException.h" - -#include "RenderTarget.h" -#include "PathGeometry.h" - -const IID IID_ID2D1PathGeometry = __uuidof(ID2D1PathGeometry); - -using namespace System; - -namespace SlimDX -{ -namespace Direct2D -{ - PathGeometry::PathGeometry( SlimDX::Direct2D::Factory^ factory ) - { - ID2D1PathGeometry *geometry = NULL; - - HRESULT hr = factory->InternalPointer->CreatePathGeometry( &geometry ); - if( RECORD_D2D( hr ).IsFailure ) - throw gcnew Direct2DException( Result::Last ); - - Construct( geometry ); - } - - int PathGeometry::FigureCount::get() - { - UINT32 count; - - InternalPointer->GetFigureCount( &count ); - return count; - } - - int PathGeometry::SegmentCount::get() - { - UINT32 count; - - InternalPointer->GetSegmentCount( &count ); - return count; - } - - GeometrySink^ PathGeometry::Open() - { - ID2D1GeometrySink *sink = NULL; - - HRESULT hr = InternalPointer->Open( &sink ); - if( RECORD_D2D( hr ).IsFailure ) - return nullptr; - - return GeometrySink::FromPointer( sink ); - } - - Result PathGeometry::Stream( GeometrySink^ geometrySink ) - { - HRESULT hr = InternalPointer->Stream( geometrySink->InternalPointer ); - return RECORD_D2D( hr ); - } -} -} \ No newline at end of file