This file contains hidden or 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
Process: ConsoleWars [335] | |
Path: /Users/sandy/Library/Application Support/iPhone Simulator/4.2/Applications/D57320E3-1CCE-41A5-BC85-4904FFF1B2CF/ConsoleWars.app/ConsoleWars | |
Identifier: ConsoleWars | |
Version: ??? (???) | |
Code Type: X86 (Native) | |
Parent Process: launchd [160] | |
Date/Time: 2011-04-28 00:00:25.236 +0100 | |
OS Version: Mac OS X 10.6.7 (10J869) | |
Report Version: 6 |
This file contains hidden or 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
Process: GameStateManagement [6080] | |
Path: /Users/sandy/Library/Application Support/iPhone Simulator/4.2/Applications/738A332F-8404-4AF4-A4A3-1349ACCE7654/MonoGame.Samples.GameStateManagement.app/GameStateManagement | |
Identifier: GameStateManagement | |
Version: ??? (???) | |
Code Type: X86 (Native) | |
Parent Process: launchd [163] | |
Date/Time: 2011-05-06 22:29:45.902 +0100 | |
OS Version: Mac OS X 10.6.7 (10J869) | |
Report Version: 6 |
This file contains hidden or 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; | |
namespace Microsoft.Xna.Framework | |
{ | |
public struct Color : IEquatable<Color> | |
{ | |
// ARGB | |
private uint _packedValue; | |
private Color(uint packedValue) |
This file contains hidden or 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 MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
using MonoTouch.MapKit; | |
namespace MonoTouch.Dialog | |
{ | |
public class MapKitElement : Element | |
{ |
This file contains hidden or 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.Drawing; | |
using MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
using MonoTouch.MapKit; | |
using MonoTouch.Dialog; | |
namespace Sample |
This file contains hidden or 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 virtual void LoadContent() | |
{ | |
var model = UIDevice.CurrentDevice.Model; | |
string suffix = ""; | |
if ( model.ToLower().Contains("iphone") ) | |
{ | |
suffix = "~iphone"; | |
} | |
else if ( model.ToLower().Contains("ipad") ) | |
{ |
This file contains hidden or 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
Unhandled Exception: System.ArgumentNullException: Argument cannot be null. | |
Parameter name: element at System.Attribute.CheckParameters (System.Object element, System.Type attributeType) [0x00000] in <filename unknown>:0 | |
at System.Attribute.IsDefined (System.Reflection.MemberInfo element, System.Type attributeType, Boolean inherit) [0x00000] in <filename unknown>:0 | |
at MonoMac.ObjCRuntime.Class.Register (System.Type type, System.String name) [0x00000] in <filename unknown>:0 | |
at MonoMac.ObjCRuntime.Class.Register (System.Type type, System.String name) [0x00000] in <filename unknown>:0 | |
at MonoMac.ObjCRuntime.Class.Register (System.Type type) [0x00000] in <filename unknown>:0 | |
at MonoMac.ObjCRuntime.Runtime.RegisterAssembly (System.Reflection.Assembly a) [0x00000] in <filename unknown>:0 | |
at MonoMac.AppKit.NSApplication.Init () [0x00000] in <filename unknown>:0 | |
at PeerToPeer.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 |
This file contains hidden or 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
if (!string.IsNullOrEmpty(filename)) | |
{ | |
StreamReader streamReader = new StreamReader (filename); | |
string text = streamReader.ReadToEnd (); | |
streamReader.Close (); | |
if ( filename.ToLower().Contains("fsh") ) | |
{ | |
CreateFragmentShaderFromSource(text); | |
} |
This file contains hidden or 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
Creating package | |
Build started 12/09/2011 23:14:58. | |
__________________________________________________ | |
Project "/Users/sandy/Projects/NeHe/5/5-Android.csproj" (SignAndroidPackage target(s)): | |
Target _GenerateAndroidAssetsDir: | |
No output files were specified for target _GenerateAndroidAssetsDir, skipping. | |
This file contains hidden or 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
/****************************************************************************** | |
@File OGLESRenderToTexture.cpp | |
@Title RenderToTexture | |
@Version | |
@Copyright Copyright (C) Imagination Technologies Limited. |
OlderNewer