Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="utf-16"?>
<?xml-stylesheet type="text/xsl" href="#stylesheet"?>
<activity>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="stylesheet" xml:id="stylesheet">
<xsl:output method="html" encoding="utf-16"/>
<!-- Don't reprint text nodes within the xsl:stylesheet node -->
<xsl:template match="text()"/>
<xsl:template match="activity">
<head>
<title>Activity Monitor Log</title>
# References:
# https://marco-c.github.io/2018/01/09/code-coverage-with-clang-on-windows.html
# https://stackoverflow.com/a/10611875
if (SECORE_WITH_COVERAGE)
find_library(CLANG_RT_PROFILE_LIBRARY
NAMES clang_rt.profile-x86_64
REQUIRED
)
@hsdk123
hsdk123 / jpdb掲載用の情報.txt
Last active February 26, 2024 01:44
jpdb掲載用の情報
``````````````````````````````````````
作品タイトル:
制作: <ブランド・チーム・スタッフなど>
プレイ時間:
公開日:
作品解像度:
声あり?:
年齢制限: <あれば>
他に追加してほしいリンク: <複数可>
``````````````````````````````````````
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="16097.2" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
2023-01-05T09:04:08.9877989Z The agent pool assigned to this job has hit their MacOs concurrency limits
2023-01-05T09:04:09.0081479Z Requested labels: macos-latest
2023-01-05T09:04:09.0081597Z Job defined at: SoulEngineProject/Light.vn-core/.github/workflows/main.yml@refs/pull/6/merge
2023-01-05T09:04:09.0081629Z Waiting for a runner to pick up this job...
2023-01-05T09:04:09.1683436Z Job is waiting for a hosted runner to come online.
2023-01-05T09:04:17.5300663Z Job is about to start running on the hosted runner: GitHub Actions 3 (hosted)
2023-01-05T09:04:22.4957580Z Current runner version: '2.299.1'
2023-01-05T09:04:22.5116270Z ##[group]Operating System
2023-01-05T09:04:22.5117110Z macOS
2023-01-05T09:04:22.5117340Z 12.6.2
Magnum::GL::Framebuffer& lvn::CRenderMgr::GetDefaultFramebuffer()
{
if (_default_frame_buffer) {
return *_default_frame_buffer;
}
// references:
// https://stackoverflow.com/questions/9746602/getting-default-frame-buffer-id-from-glkview-glkit/9755439#9755439
// https://docs.microsoft.com/en-us/dotnet/api/android.opengl.gles11ext.glframebufferbindingoes?view=xamarin-android-sdk-9
// GL_FRAMEBUFFER_BINDING_OES is 36006 according to microsoft, same as GL_FRAMEBUFFER_BINDING: 0x8CA6
bool lvn::Texture::overlayTexture(const std::vector<OverlayInfo>& infos)
{
using namespace std;
const auto canvas_texture_size = getSize();
struct SettingsUnlock {
SettingsUnlock() {
_original_image_quality = CoreHelper::SysVars().imageDefaultQuality.getCurVal();
}
~SettingsUnlock() {
@hsdk123
hsdk123 / header
Created September 15, 2021 18:12
#pragma once
//---------------------------------------------------------
// This is my modified version of Magnum/Platform/AndroidApplication.h
// HS: including original header to fetch additional structs so I can keep this file short
#include <Magnum/Platform/AndroidApplication.h>
#include <Magnum/Magnum.h>
#include <Magnum/Math/Vector2.h>
//---------------------------------------------------------
#include <EGL/egl.h>
@hsdk123
hsdk123 / cpp
Created September 15, 2021 18:12
#include "CoreAndroidApplication.h"
#include <Code/88.Managers/LogMgr/LogMgr_InclMacros.h>
#include <Corrade/Utility/AndroidLogStreamBuffer.h>
#include <Corrade/Utility/Debug.h>
#include <android_native_app_glue.h>
#include <Magnum/GL/Version.h>
#include <Magnum/Platform/GLContext.h>
#include <Magnum/Platform/ScreenedApplication.hpp>