{"id":10028,"date":"2023-01-27T21:00:00","date_gmt":"2023-01-27T12:00:00","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=10028"},"modified":"2023-01-27T09:02:56","modified_gmt":"2023-01-27T00:02:56","slug":"direct2d%e3%82%92%e8%a9%a6%e3%81%99","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=10028","title":{"rendered":"Direct2D\u3092\u8a66\u3059"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"http:\/\/dioltista.blogspot.com\/2019\/04\/c-directx11_25.html\">http:\/\/dioltista.blogspot.com\/2019\/04\/c-directx11_25.html<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#pragma once\r\n\r\n#include &lt;windows.h>\r\n\r\nclass Window\r\n{\r\npublic:\r\n    HRESULT InitWindow(HINSTANCE hInstance, int nCmdShow);\r\n    static HWND GethWnd();\r\nprivate:\r\n    static HWND g_hWnd;\r\n};\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#include \"Main.h\"\r\n#include \"DirectX.h\"\r\n\r\nHWND Window::g_hWnd = nullptr;\r\n\r\n\/\/--------------------------------------------------------------------------------------\r\n\/\/ \u524d\u65b9\u5ba3\u8a00\r\n\/\/--------------------------------------------------------------------------------------\r\nLRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);\r\n\r\nint WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow)\r\n{\r\n    Window win;\r\n\r\n    if (FAILED(win.InitWindow(hInstance, nCmdShow)))\r\n        return 0;\r\n\r\n    DirectX11 dx;\r\n\r\n    if (FAILED(dx.InitDevice()))\r\n        return 0;\r\n\r\n    \/\/ \u30e1\u30a4\u30f3\u30e1\u30c3\u30bb\u30fc\u30b8\u30eb\u30fc\u30d7\r\n    MSG msg = { 0 };\r\n    while (WM_QUIT != msg.message)\r\n    {\r\n        if (PeekMessage(&amp;msg, nullptr, 0, 0, PM_REMOVE))\r\n        {\r\n            TranslateMessage(&amp;msg);\r\n            DispatchMessage(&amp;msg);\r\n        }\r\n        else\r\n        {\r\n            dx.Render();\r\n        }\r\n    }\r\n\r\n    return (int)msg.wParam;\r\n}\r\n\r\nLRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)\r\n{\r\n    PAINTSTRUCT ps;\r\n    HDC hdc;\r\n\r\n    switch (message)\r\n    {\r\n    case WM_PAINT:\r\n        hdc = BeginPaint(hWnd, &amp;ps);\r\n        EndPaint(hWnd, &amp;ps);\r\n        break;\r\n\r\n    case WM_DESTROY:\r\n        PostQuitMessage(0);\r\n        break;\r\n\r\n    default:\r\n        return DefWindowProc(hWnd, message, wParam, lParam);\r\n    }\r\n\r\n    return 0;\r\n}\r\n\r\nHRESULT Window::InitWindow(HINSTANCE hInstance, int nCmdShow)\r\n{\r\n    WNDCLASSEX wcex;\r\n    wcex.cbSize = sizeof(WNDCLASSEX);\r\n    wcex.style = CS_HREDRAW | CS_VREDRAW;\r\n    wcex.lpfnWndProc = WndProc;\r\n    wcex.cbClsExtra = 0;\r\n    wcex.cbWndExtra = 0;\r\n    wcex.hInstance = hInstance;\r\n    wcex.hIcon = nullptr;\r\n    wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);\r\n    wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);\r\n    wcex.lpszMenuName = nullptr;\r\n    wcex.lpszClassName = L\"WindowClass\";\r\n    wcex.hIconSm = nullptr;\r\n    if (!RegisterClassEx(&amp;wcex))\r\n        return E_FAIL;\r\n\r\n    RECT rc = { 0, 0, 800, 600 };\r\n    AdjustWindowRect(&amp;rc, WS_OVERLAPPEDWINDOW, FALSE);\r\n    g_hWnd = CreateWindow(L\"WindowClass\", L\"DirectX11\u306e\u521d\u671f\u5316\uff08\u30af\u30e9\u30b9\u5316\uff09\",\r\n        WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX,\r\n        CW_USEDEFAULT, CW_USEDEFAULT, rc.right - rc.left, rc.bottom - rc.top, nullptr, nullptr, hInstance,\r\n        nullptr);\r\n    if (!g_hWnd)\r\n        return E_FAIL;\r\n\r\n    ShowWindow(g_hWnd, nCmdShow);\r\n\r\n    return S_OK;\r\n}\r\n\r\nHWND Window::GethWnd()\r\n{\r\n    return g_hWnd;\r\n}\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#pragma once\r\n\r\n#pragma comment(lib,\"d3d11.lib\")\r\n#include &lt;d3d11_1.h>\r\n#include &lt;directxcolors.h>\r\n\r\nclass DirectX11\r\n{\r\npublic:\r\n    DirectX11();\r\n    ~DirectX11();\r\n    HRESULT InitDevice();\r\n    void Render();\r\nprivate:\r\n    ID3D11Device* pd3dDevice;\r\n    ID3D11Device1* pd3dDevice1;\r\n    ID3D11DeviceContext* pImmediateContext;\r\n    ID3D11DeviceContext1* pImmediateContext1;\r\n    IDXGISwapChain* pSwapChain;\r\n    IDXGISwapChain1* pSwapChain1;\r\n    ID3D11RenderTargetView* pRenderTargetView;\r\n};\r\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#include \"Main.h\"\r\n#include \"DirectX.h\"\r\n\r\nDirectX11::DirectX11()\r\n{\r\n    pd3dDevice = nullptr;\r\n    pd3dDevice1 = nullptr;\r\n    pImmediateContext = nullptr;\r\n    pImmediateContext1 = nullptr;\r\n    pSwapChain = nullptr;\r\n    pSwapChain1 = nullptr;\r\n    pRenderTargetView = nullptr;\r\n}\r\n\r\nDirectX11::~DirectX11()\r\n{\r\n    if (pImmediateContext) pImmediateContext->ClearState();\r\n\r\n    if (pRenderTargetView) pRenderTargetView->Release();\r\n    if (pSwapChain1) pSwapChain1->Release();\r\n    if (pSwapChain) pSwapChain->Release();\r\n    if (pImmediateContext1) pImmediateContext1->Release();\r\n    if (pImmediateContext) pImmediateContext->Release();\r\n    if (pd3dDevice1) pd3dDevice1->Release();\r\n    if (pd3dDevice) pd3dDevice->Release();\r\n}\r\n\r\nHRESULT DirectX11::InitDevice()\r\n{\r\n    HRESULT hr = S_OK;\r\n\r\n    RECT rc;\r\n    GetClientRect(Window::GethWnd(), &amp;rc);\r\n    UINT width = rc.right - rc.left;\r\n    UINT height = rc.bottom - rc.top;\r\n\r\n    UINT createDeviceFlags = 0;\r\n#ifdef _DEBUG\r\n    createDeviceFlags |= D3D11_CREATE_DEVICE_DEBUG;\r\n#endif\r\n\r\n    D3D_DRIVER_TYPE driverTypes&#91;] =\r\n    {\r\n        D3D_DRIVER_TYPE_HARDWARE,\r\n        D3D_DRIVER_TYPE_WARP,\r\n        D3D_DRIVER_TYPE_REFERENCE,\r\n    };\r\n    UINT numDriverTypes = ARRAYSIZE(driverTypes);\r\n\r\n    D3D_FEATURE_LEVEL featureLevels&#91;] =\r\n    {\r\n        D3D_FEATURE_LEVEL_11_1,\r\n        D3D_FEATURE_LEVEL_11_0,\r\n        D3D_FEATURE_LEVEL_10_1,\r\n        D3D_FEATURE_LEVEL_10_0,\r\n    };\r\n    UINT numFeatureLevels = ARRAYSIZE(featureLevels);\r\n\r\n    D3D_DRIVER_TYPE g_driverType = D3D_DRIVER_TYPE_NULL;\r\n    D3D_FEATURE_LEVEL g_featureLevel = D3D_FEATURE_LEVEL_11_0;\r\n    for (UINT driverTypeIndex = 0; driverTypeIndex &lt; numDriverTypes; driverTypeIndex++)\r\n    {\r\n        g_driverType = driverTypes&#91;driverTypeIndex];\r\n        hr = D3D11CreateDevice(nullptr, g_driverType, nullptr, createDeviceFlags, featureLevels, numFeatureLevels,\r\n            D3D11_SDK_VERSION, &amp;pd3dDevice, &amp;g_featureLevel, &amp;pImmediateContext);\r\n\r\n        if (hr == E_INVALIDARG)\r\n        {\r\n            hr = D3D11CreateDevice(nullptr, g_driverType, nullptr, createDeviceFlags, &amp;featureLevels&#91;1], numFeatureLevels - 1,\r\n                D3D11_SDK_VERSION, &amp;pd3dDevice, &amp;g_featureLevel, &amp;pImmediateContext);\r\n        }\r\n\r\n        if (SUCCEEDED(hr))\r\n            break;\r\n    }\r\n    if (FAILED(hr))\r\n        return hr;\r\n\r\n    IDXGIFactory1* dxgiFactory = nullptr;\r\n    {\r\n        IDXGIDevice* dxgiDevice = nullptr;\r\n        hr = pd3dDevice->QueryInterface(__uuidof(IDXGIDevice), reinterpret_cast&lt;void**>(&amp;dxgiDevice));\r\n        if (SUCCEEDED(hr))\r\n        {\r\n            IDXGIAdapter* adapter = nullptr;\r\n            hr = dxgiDevice->GetAdapter(&amp;adapter);\r\n            if (SUCCEEDED(hr))\r\n            {\r\n                hr = adapter->GetParent(__uuidof(IDXGIFactory1), reinterpret_cast&lt;void**>(&amp;dxgiFactory));\r\n                adapter->Release();\r\n            }\r\n            dxgiDevice->Release();\r\n        }\r\n    }\r\n    if (FAILED(hr))\r\n        return hr;\r\n\r\n    IDXGIFactory2* dxgiFactory2 = nullptr;\r\n    hr = dxgiFactory->QueryInterface(__uuidof(IDXGIFactory2), reinterpret_cast&lt;void**>(&amp;dxgiFactory2));\r\n    if (dxgiFactory2)\r\n    {\r\n        hr = pd3dDevice->QueryInterface(__uuidof(ID3D11Device1), reinterpret_cast&lt;void**>(&amp;pd3dDevice1));\r\n        if (SUCCEEDED(hr))\r\n        {\r\n            (void)pImmediateContext->QueryInterface(__uuidof(ID3D11DeviceContext1), reinterpret_cast&lt;void**>(&amp;pImmediateContext1));\r\n        }\r\n\r\n        DXGI_SWAP_CHAIN_DESC1 sd = {};\r\n        sd.Width = width;\r\n        sd.Height = height;\r\n        sd.Format = DXGI_FORMAT_R8G8B8A8_UNORM;\r\n        sd.SampleDesc.Count = 1;\r\n        sd.SampleDesc.Quality = 0;\r\n        sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;\r\n        sd.BufferCount = 1;\r\n\r\n        hr = dxgiFactory2->CreateSwapChainForHwnd(pd3dDevice, Window::GethWnd(), &amp;sd, nullptr, nullptr, &amp;pSwapChain1);\r\n        if (SUCCEEDED(hr))\r\n        {\r\n            hr = pSwapChain1->QueryInterface(__uuidof(IDXGISwapChain), reinterpret_cast&lt;void**>(&amp;pSwapChain));\r\n        }\r\n\r\n        dxgiFactory2->Release();\r\n    }\r\n    else\r\n    {\r\n        DXGI_SWAP_CHAIN_DESC sd = {};\r\n        sd.BufferCount = 1;\r\n        sd.BufferDesc.Width = width;\r\n        sd.BufferDesc.Height = height;\r\n        sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;\r\n        sd.BufferDesc.RefreshRate.Numerator = 60;\r\n        sd.BufferDesc.RefreshRate.Denominator = 1;\r\n        sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;\r\n        sd.OutputWindow = Window::GethWnd();\r\n        sd.SampleDesc.Count = 1;\r\n        sd.SampleDesc.Quality = 0;\r\n        sd.Windowed = TRUE;\r\n\r\n        hr = dxgiFactory->CreateSwapChain(pd3dDevice, &amp;sd, &amp;pSwapChain);\r\n    }\r\n\r\n    dxgiFactory->MakeWindowAssociation(Window::GethWnd(), DXGI_MWA_NO_ALT_ENTER);\r\n\r\n    dxgiFactory->Release();\r\n\r\n    if (FAILED(hr))\r\n        return hr;\r\n\r\n    ID3D11Texture2D* pBackBuffer = nullptr;\r\n    hr = pSwapChain->GetBuffer(0, __uuidof(ID3D11Texture2D), reinterpret_cast&lt;void**>(&amp;pBackBuffer));\r\n    if (FAILED(hr))\r\n        return hr;\r\n\r\n    hr = pd3dDevice->CreateRenderTargetView(pBackBuffer, nullptr, &amp;pRenderTargetView);\r\n    pBackBuffer->Release();\r\n    if (FAILED(hr))\r\n        return hr;\r\n\r\n    pImmediateContext->OMSetRenderTargets(1, &amp;pRenderTargetView, nullptr);\r\n\r\n    D3D11_VIEWPORT vp;\r\n    vp.Width = (FLOAT)width;\r\n    vp.Height = (FLOAT)height;\r\n    vp.MinDepth = 0.0f;\r\n    vp.MaxDepth = 1.0f;\r\n    vp.TopLeftX = 0;\r\n    vp.TopLeftY = 0;\r\n    pImmediateContext->RSSetViewports(1, &amp;vp);\r\n\r\n    return S_OK;\r\n}\r\n\r\nvoid DirectX11::Render()\r\n{\r\n    pImmediateContext->ClearRenderTargetView(pRenderTargetView, DirectX::Colors::Aquamarine);\r\n    pSwapChain->Present(0, 0);\r\n}\r\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"377\" data-attachment-id=\"10030\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=10030\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?fit=1060%2C843&amp;ssl=1\" data-orig-size=\"1060,843\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"023518e0781c96cf2dc19c33c4b67eef\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?fit=474%2C377&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?resize=474%2C377&#038;ssl=1\" alt=\"\" class=\"wp-image-10030\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?resize=1024%2C814&amp;ssl=1 1024w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?resize=300%2C239&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?resize=768%2C611&amp;ssl=1 768w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?w=1060&amp;ssl=1 1060w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?w=948&amp;ssl=1 948w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u4eca\u4f7f\u7528\u3057\u3066\u3044\u308bVisual Studio2022\u3067\u3082\u52d5\u4f5c\u3057\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u3068\u306f\u3044\u3048\u3001\u3084\u3063\u3066\u3044\u308b\u3053\u3068\u306fDirectX\u3092\u521d\u671f\u5316\u3057\u3066\u8868\u793a\u3057\u3066\u3044\u308b\u3060\u3051\u306a\u306e\u3067\u3001<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u3053\u307e\u3067\u306f\u307b\u307c\u30c6\u30f3\u30d7\u30ec\u306e\u51e6\u7406\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u5927\u4e8b\u306a\u306e\u306f\u3001\u3053\u3053\u306b\u4f55\u3092\u66f8\u304f\u304b\u3001\u3068\u3044\u3046\u51e6\u7406\u3067\u3059\u306d\u3002<\/p>\n\n\n\n<a href=\"https:\/\/blog.with2.net\/link\/?id=2023426&#038;cid=9200\" title=\"\u65e5\u3005\u306e\u51fa\u6765\u4e8b\u30e9\u30f3\u30ad\u30f3\u30b0\" target=\"_blank\" rel=\"noopener\"><image src=\"https:\/\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/11\/99c62cdd0038c9d3b540e561ee138b82-1.jpg\"><\/a>\n","protected":false},"excerpt":{"rendered":"<p>\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002 http:\/\/dioltista.blogspot.com\/2019\/04\/c-directx11_25.ht &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=10028\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">Direct2D\u3092\u8a66\u3059<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[3],"tags":[],"class_list":["post-10028","post","type-post","status-publish","format-standard","hentry","category-3"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"taki\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/taki-lab.site\/bocci\/?p=10028\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" \/>\n\t\t<meta property=\"og:description\" content=\"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/taki-lab.site\/bocci\/?p=10028\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-01-27T12:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-01-27T00:02:56+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@n2_taki\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@n2_taki\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#article\",\"name\":\"Direct2D\\u3092\\u8a66\\u3059 | \\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"headline\":\"Direct2D\\u3092\\u8a66\\u3059\",\"author\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/taki-lab.site\\\/bocci\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/023518e0781c96cf2dc19c33c4b67eef.png?fit=1060%2C843&ssl=1\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028\\\/#articleImage\",\"width\":1060,\"height\":843},\"datePublished\":\"2023-01-27T21:00:00+09:00\",\"dateModified\":\"2023-01-27T09:02:56+09:00\",\"inLanguage\":\"ja\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#webpage\"},\"articleSection\":\"\\u6280\\u8853\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/taki-lab.site\\\/bocci\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3#listItem\",\"name\":\"\\u6280\\u8853\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3#listItem\",\"position\":2,\"name\":\"\\u6280\\u8853\",\"item\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#listItem\",\"name\":\"Direct2D\\u3092\\u8a66\\u3059\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#listItem\",\"position\":3,\"name\":\"Direct2D\\u3092\\u8a66\\u3059\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3#listItem\",\"name\":\"\\u6280\\u8853\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#person\",\"name\":\"taki\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"taki\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\",\"url\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1\",\"name\":\"taki\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"taki\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#webpage\",\"url\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028\",\"name\":\"Direct2D\\u3092\\u8a66\\u3059 | \\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"description\":\"\\u307e\\u3060\\u6848\\u4ef6\\u304c\\u6c7a\\u307e\\u3063\\u305f\\u308f\\u3051\\u3067\\u306f\\u7121\\u3044\\u306e\\u3067\\u3001 \\u30cd\\u30c3\\u30c8\\u3067\\u3088\\u3044\\u8a18\\u4e8b\\u304c\\u7121\\u3044\\u304b\\u3092\\u63a2\\u3057\\u3066\\u3044\\u305f\\u3068\\u3053\\u308d\\u3001 \\u3053\\u3061\\u3089\\u304c\\u898b\\u3064\\u304b\\u308a\\u307e\\u3057\\u305f\\u3002\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=10028#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\"},\"datePublished\":\"2023-01-27T21:00:00+09:00\",\"dateModified\":\"2023-01-27T09:02:56+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#website\",\"url\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/\",\"name\":\"\\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"description\":\"\\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","description":"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002","canonical_url":"https:\/\/taki-lab.site\/bocci\/?p=10028","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#article","name":"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","headline":"Direct2D\u3092\u8a66\u3059","author":{"@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author"},"publisher":{"@id":"https:\/\/taki-lab.site\/bocci\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/023518e0781c96cf2dc19c33c4b67eef.png?fit=1060%2C843&ssl=1","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028\/#articleImage","width":1060,"height":843},"datePublished":"2023-01-27T21:00:00+09:00","dateModified":"2023-01-27T09:02:56+09:00","inLanguage":"ja","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#webpage"},"isPartOf":{"@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#webpage"},"articleSection":"\u6280\u8853"},{"@type":"BreadcrumbList","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci#listItem","position":1,"name":"Home","item":"https:\/\/taki-lab.site\/bocci","nextItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=3#listItem","name":"\u6280\u8853"}},{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=3#listItem","position":2,"name":"\u6280\u8853","item":"https:\/\/taki-lab.site\/bocci\/?cat=3","nextItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#listItem","name":"Direct2D\u3092\u8a66\u3059"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#listItem","position":3,"name":"Direct2D\u3092\u8a66\u3059","previousItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=3#listItem","name":"\u6280\u8853"}}]},{"@type":"Person","@id":"https:\/\/taki-lab.site\/bocci\/#person","name":"taki","image":{"@type":"ImageObject","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g","width":96,"height":96,"caption":"taki"}},{"@type":"Person","@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author","url":"https:\/\/taki-lab.site\/bocci\/?author=1","name":"taki","image":{"@type":"ImageObject","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g","width":96,"height":96,"caption":"taki"}},{"@type":"WebPage","@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#webpage","url":"https:\/\/taki-lab.site\/bocci\/?p=10028","name":"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","description":"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002","inLanguage":"ja","isPartOf":{"@id":"https:\/\/taki-lab.site\/bocci\/#website"},"breadcrumb":{"@id":"https:\/\/taki-lab.site\/bocci\/?p=10028#breadcrumblist"},"author":{"@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author"},"creator":{"@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author"},"datePublished":"2023-01-27T21:00:00+09:00","dateModified":"2023-01-27T09:02:56+09:00"},{"@type":"WebSite","@id":"https:\/\/taki-lab.site\/bocci\/#website","url":"https:\/\/taki-lab.site\/bocci\/","name":"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","description":"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","inLanguage":"ja","publisher":{"@id":"https:\/\/taki-lab.site\/bocci\/#person"}}]},"og:locale":"ja_JP","og:site_name":"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","og:type":"article","og:title":"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","og:description":"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002","og:url":"https:\/\/taki-lab.site\/bocci\/?p=10028","article:published_time":"2023-01-27T12:00:00+00:00","article:modified_time":"2023-01-27T00:02:56+00:00","twitter:card":"summary","twitter:site":"@n2_taki","twitter:title":"Direct2D\u3092\u8a66\u3059 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","twitter:description":"\u307e\u3060\u6848\u4ef6\u304c\u6c7a\u307e\u3063\u305f\u308f\u3051\u3067\u306f\u7121\u3044\u306e\u3067\u3001 \u30cd\u30c3\u30c8\u3067\u3088\u3044\u8a18\u4e8b\u304c\u7121\u3044\u304b\u3092\u63a2\u3057\u3066\u3044\u305f\u3068\u3053\u308d\u3001 \u3053\u3061\u3089\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002","twitter:creator":"@n2_taki"},"aioseo_meta_data":{"post_id":"10028","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-01-26 23:35:10","updated":"2025-06-08 11:34:12","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taki-lab.site\/bocci\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taki-lab.site\/bocci\/?cat=3\" title=\"\u6280\u8853\">\u6280\u8853<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tDirect2D\u3092\u8a66\u3059\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/taki-lab.site\/bocci"},{"label":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},{"label":"Direct2D\u3092\u8a66\u3059","link":"https:\/\/taki-lab.site\/bocci\/?p=10028"}],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-2BK","jetpack-related-posts":[{"id":10087,"url":"https:\/\/taki-lab.site\/bocci\/?p=10087","url_meta":{"origin":10028,"position":0},"title":"DIRECT2D\u3092\u8a66\u3059\u3001\u305d\u306e4","author":"taki","date":"2023\u5e742\u67084\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=10066 \u524d\u56de\u307e\u3067\u306fWeb\u3067\u898b\u3064\u3051\u305f\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/02\/b3462785e8070e4b4f859b65045f51d8.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/02\/b3462785e8070e4b4f859b65045f51d8.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/02\/b3462785e8070e4b4f859b65045f51d8.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/02\/b3462785e8070e4b4f859b65045f51d8.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/02\/b3462785e8070e4b4f859b65045f51d8.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":10066,"url":"https:\/\/taki-lab.site\/bocci\/?p=10066","url_meta":{"origin":10028,"position":1},"title":"DIRECT2D\u3092\u8a66\u3059\u3001\u305d\u306e3","author":"taki","date":"2023\u5e742\u67081\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=10044 \u4eca\u56de\u306fFPS\u3092\u56fa\u5b9a\u5316\u3059\u308b\u30b3\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/3207a23d6246495e53b7dfc207a68a47.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/3207a23d6246495e53b7dfc207a68a47.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/3207a23d6246495e53b7dfc207a68a47.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2023\/01\/3207a23d6246495e53b7dfc207a68a47.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2752,"url":"https:\/\/taki-lab.site\/bocci\/?p=2752","url_meta":{"origin":10028,"position":2},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u89e3\u6790\u524d\u306e\u5165\u529b\u30c7\u30fc\u30bf\u306b\u8aa4\u308a\u304c\u3042\u3063\u305f\u5834\u5408\u306e\u5bfe\u51e6","author":"taki","date":"2020\u5e744\u670828\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2741 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/ac15c7bfbcb71ae0137aba3065984908.jpg?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":2677,"url":"https:\/\/taki-lab.site\/bocci\/?p=2677","url_meta":{"origin":10028,"position":3},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30de\u30b9\u30af\u30e9\u30b9\u3092\u5b9f\u88c5\u3059\u308b\u3002","author":"taki","date":"2020\u5e744\u670814\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2669 \u3067\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":4666,"url":"https:\/\/taki-lab.site\/bocci\/?p=4666","url_meta":{"origin":10028,"position":4},"title":"\u3010COCOS2D-X\u3011\u30b9\u30c6\u30fc\u30bf\u30b9\u3092\u8868\u793a","author":"taki","date":"2020\u5e7412\u67085\u65e5","format":false,"excerpt":"\u6570\u5b57\u306f\u5b8c\u5168\u306b\u30e9\u30f3\u30c0\u30e0\u3067\u3059\u3002 \u3061\u3087\u3063\u3068\u30b2\u30fc\u30e0\u3089\u3057\u304f\u306a\u3063\u3066\u304d\u305f\u3067\u3057\u3087\u3002 #ifndef PROJ_AND\u2026","rel":"","context":"Cocos2d-x","block_context":{"text":"Cocos2d-x","link":"https:\/\/taki-lab.site\/bocci\/?cat=216"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/12\/Screenshot_20201205-080731.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":2563,"url":"https:\/\/taki-lab.site\/bocci\/?p=2563","url_meta":{"origin":10028,"position":5},"title":"\u3010C#\u3011\u3010\u6570\u72ec\u3011\u6570\u72ec\u89e3\u6790\u30d7\u30ed\u30b0\u30e9\u30e0\u5b8c\u6210","author":"taki","date":"2020\u5e743\u670825\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2551 \u524d\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/10028","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=10028"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/10028\/revisions"}],"predecessor-version":[{"id":10031,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/10028\/revisions\/10031"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10028"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10028"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10028"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}