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
diff --git a/Core/Contents/Include/PolyGlobals.h b/Core/Contents/Include/PolyGlobals.h | |
index 2a7aadc..58b81df 100755 | |
--- a/Core/Contents/Include/PolyGlobals.h | |
+++ b/Core/Contents/Include/PolyGlobals.h | |
@@ -46,6 +46,7 @@ THE SOFTWARE. | |
#endif | |
#include <stdint.h> | |
+#include <stdlib.h> | |
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
diff -r 977b89b57b90 code/build/premake4.lua | |
--- a/code/build/premake4.lua Thu Dec 05 23:55:39 2013 -0500 | |
+++ b/code/build/premake4.lua Fri Dec 06 06:06:42 2013 -0500 | |
@@ -231,16 +231,16 @@ | |
buildoptions | |
{ | |
"-x c++", | |
- "-isysroot /Developer/SDKs/MacOSX10.6.sdk", | |
- "-mmacosx-version-min=10.6", | |
+ --"-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk", |
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 "gfx.h" | |
#include <stdlib.h> | |
#include <stdio.h> | |
static void _compile_shader(GLuint shader, const char *filename) | |
{ | |
char *file_contents, log[512]; | |
long input_file_size; | |
FILE *input_file; |
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
'use strict'; | |
let React = require('react-native'); | |
let { | |
Animated, | |
Image, | |
PanResponder, | |
StyleSheet, | |
View, | |
} = React; |
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
/** | |
* Copyright 2015-present 650 Industries. All rights reserved. | |
* | |
* @providesModule GrowingTextInput | |
*/ | |
import React, { PropTypes } from 'react'; | |
import { | |
TextInput, | |
} from 'react-native'; |
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
/** | |
* Copyright 2015-present 650 Industries. All rights reserved. | |
* | |
* @providesModule GrowingTextInput | |
*/ | |
import React, { PropTypes } from 'react'; | |
import { | |
TextInput, | |
} from 'react-native'; |
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
/* | |
<p>This example shows how you can apply multiple light sources to a model</p> | |
*/ | |
const regl = require('regl')() | |
const normals = require('angle-normals') | |
const mat4 = require('gl-mat4') | |
const bunny = require('bunny') | |
const teapot = require('teapot') |
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
diff --git a/apps/gl-test/EXGLView.js b/apps/gl-test/EXGLView.js | |
index b2f9bd7..a12e422 100644 | |
--- a/apps/gl-test/EXGLView.js | |
+++ b/apps/gl-test/EXGLView.js | |
@@ -64,11 +64,17 @@ const getGl = (exglContextId) => { | |
{ func: 'vertexAttrib2fv', arg: 1, type: Float32Array }, | |
{ func: 'vertexAttrib3fv', arg: 1, type: Float32Array }, | |
{ func: 'vertexAttrib4fv', arg: 1, type: Float32Array }, | |
+ { func: 'bufferData', arg: 1, type: Int32Array }, | |
+ { func: 'texImage2D', arg: 8, type: Int32Array }, |
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
'use strict'; | |
import React from 'react'; | |
import { GLView } from 'exponent'; | |
export default class BasicScene extends React.Component { | |
static meta = { | |
description: 'PIXI Basic Scene', |
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
* EXGL Unimplemented | |
** Buffer | |
*** isBuffer | |
** Texture | |
*** compressedTexImage2D | |
*** compressedTexSubImage2D | |
*** copyTexImage2D | |
*** copyTexSubImage2D | |
*** getTexParameter | |
*** isTexture |
OlderNewer