This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Net.Sockets.SocketException occurred | |
HResult=0x80004005 | |
Message=An existing connection was forcibly closed by the remote host | |
Source=<Cannot evaluate the exception source> | |
StackTrace: | |
at System.Net.Sockets.Socket.DoBeginReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint endPointSnapshot, SocketAddress socketAddress, OriginalAddressOverlappedAsyncResult asyncResult) in F:\CCCC\corefx\src\System.Net.Sockets\src\System\Net\Sockets\Socket.cs:line 3535 | |
at System.Net.Sockets.Socket.BeginReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP, AsyncCallback callback, Object state) in F:\CCCC\corefx\src\System.Net.Sockets\src\System\Net\Sockets\Socket.cs:line 3477 | |
at System.Net.Sockets.UdpClient.BeginReceive(AsyncCallback requestCallback, Object state) in F:\CCCC\corefx\src\System.Net.Sockets\src\System\Net\Sockets\UDPClient.cs:line 376 | |
at System.Net.Sockets.UdpClient.<>c.<ReceiveAsync>b__56_0(AsyncCallback callbac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
byte[] imageBytes = ... //png,jpg, etc.. | |
var image = new Image(); | |
image.Load(new Urho.MemoryBuffer(imageBytes)); | |
var texture = new Texture2D(); | |
texture.SetData(image, true); | |
var material = new Material(); | |
material.SetTechnique(0, CoreAssets.Techniques.Diff, 0, 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void OnUpdate(float timeStep) | |
{ | |
var frame = arSession?.CurrentFrame; | |
if (frame == null) | |
return; | |
var arcamera = frame.Camera; | |
var transform = arcamera.Transform; | |
var projection = arcamera.ProjectionMatrix; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// called 60 times per second (60fps) | |
unsafe void DisplayBackground(CVPixelBuffer capturedImage) | |
{ | |
capturedImage.Lock(CVPixelBufferLock.None); | |
var baseAddress = capturedImage.BaseAddress; | |
var format = capturedImage.PixelFormatType; //CV420YpCbCr8BiPlanarFullRange | |
var width = (int)capturedImage.Width; //1280 | |
var height = (int)capturedImage.Height; //720 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2017-07-25 22:09:39.428 Playgrounds.iOS[11144:809859] critical: Stacktrace: | |
2017-07-25 22:09:39.429 Playgrounds.iOS[11144:809859] critical: at <unknown> <0xffffffff> | |
2017-07-25 22:09:39.430 Playgrounds.iOS[11144:809859] critical: at (wrapper managed-to-native) CoreVideo.CVBuffer.CVBufferRelease (intptr) <0x00007> | |
2017-07-25 22:09:39.440 Playgrounds.iOS[11144:809913] -[__NSCFType trackingState]: unrecognized selector sent to instance 0x1c473dec0 | |
2017-07-25 22:09:39.441 Playgrounds.iOS[11144:809859] critical: at CoreVideo.CVBuffer.Dispose (bool) [0x00015] in /Users/builder/data/lanes/5024/218eee7c/source/xamarin-macios/src/CoreVideo/CVBuffer.cs:116 | |
2017-07-25 22:09:39.441 Playgrounds.iOS[11144:809859] critical: at CoreVideo.CVBuffer.Finalize () [0x00000] in /Users/builder/data/lanes/5024/218eee7c/source/xamarin-macios/src/CoreVideo/CVBuffer.cs:94 | |
2017-07-25 22:09:39.442 Playgrounds.iOS[11144:809859] critical: at (wrapper runtime-invoke) object.runtime_invoke_virtual_void__this__ (object,intptr,intptr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Uniforms.glsl" | |
#include "Samplers.glsl" | |
#include "Transform.glsl" | |
#include "ScreenPos.glsl" | |
varying highp vec2 vScreenPos; | |
void VS() | |
{ | |
mat4 modelMatrix = iModelMatrix; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DllImport("foo", CallingConvention = CallingConvention.Cdecl)] | |
static extern int GetHashNative(string str); | |
static int GetHashManaged(string str) | |
{ | |
int hash = 0; | |
if (string.IsNullOrEmpty(str)) | |
return hash; | |
for (int i = 0; i < str.Length; i++) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Data.SqlClient; | |
namespace sqldata | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
for (int i = 0; i < 200; i++) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[System.ComponentModel.BrowsableAttribute(false)] | |
[System.ComponentModel.DefaultValueAttribute(true)] | |
[System.ComponentModel.DesignOnlyAttribute(true)] | |
[System.ComponentModel.DisplayNameAttribute("ApplicationIntent")] | |
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))] | |
[System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))] | |
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))] | |
[System.ComponentModel.RecommendedAsConfigurableAttribute(true)] | |
[System.ComponentModel.DefaultPropertyAttribute("DataSource")] |