OpenGL 2.0은 fixed function pipeline이 없으므로 무조건 GLSL을 사용해야 된다는 것은 익히 알려진 사실이다. 그러면 fixed function pipeline에서 사용하던 어떤 함수들을 사용할수 없을까? 1.0에서 2.0으로 전환하려면 단순하게 GLSurfaceView에서 다음과 같은 문장을 추가하게 되면 2.0을 사용하게 되는 환경으로 전환하게 된다. setEGLContextClientVersion(2); 그런데 1.0으로 작성한 코드중에 대부분은 다음과 같은 에러가 발생하게 된다. E/libEGL(7744): called unimplemented OpenGL ES API 이런 에러메세지들의 대부분은 vertex array에서 발생한다. glEnableClientState,..
안드로이드에서도 Linux API를 다음과 같이 Hooking할 수 있다. 다른 점은 RTLD_NEXT대신에 RTLD_DEFAULT를 써야 한다는 점이고, 대상 so와 함께 link되어 컴파일 되어야 한다는 점이다. #define _GNU_SOURCE #define __USE_GNU #define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "native-activity", __VA_ARGS__))#define LOGW(...) ((void)__android_log_print(ANDROID_LOG_WARN, "native-activity", __VA_ARGS__)) void* malloc(size_t size) { LOGI("malloc"); stat..
public static String getDeviceUUID(final Context context) { // preference에서 저장된 것이 있는지 확인해봄 final SharedPreferences prefs = context.getSharedPreferences("UUIDTEST", MODE_PRIVATE); final String id = prefs.getString("UUID", null); UUID uuid = null; if (id != null) { uuid = UUID.fromString(id); } else { final String androidId = Settings.Secure.getString(context.getContentResolver(), Settings.Secure..
char szFile[256]; //API file dialog OPENFILENAMEA ofn; ZeroMemory(&ofn, sizeof(ofn)); ofn.lStructSize = sizeof(ofn); ofn.hwndOwner = NULL; ofn.lpstrFile = szFile; ofn.lpstrFile[0] = '\0'; ofn.nMaxFile = sizeof(szFile); ofn.lpstrFilter = "All\0*.*\0Map\0*.map\0"; ofn.nFilterIndex = 1; ofn.lpstrFileTitle = NULL; ofn.nMaxFileTitle = 0; ofn.lpstrInitialDir = NULL; ofn.Flags = OFN_PATHMUSTEXIST | OFN..
[은행: 21개사] 1. KB국민은행 : http://www.kbstar.com/ 설치되는 ActiveX - nProtect Security Center (nProtect Netizen V4.0) : INCA - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum - INISAFEWeb v6 : Initech - INIIE8Assist : Initech - Secure KeyStroke 4.0 : Softcamp 2. 우리은행 : http://www.wooribank.com/ 설치되는 ActiveX - XecureWeb Control V7.2(XecureWeb ClientSM 4.1.1.0) : SoftForum - ClientKeeper Ke..
/etc/nginx/site-availables/default에 다음과 같이 추가 location /api/ { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://127.0.0.1:3000/; proxy_redirect off; }
npm install js_mt_rand -- var express = require('express'); var mt = require('js_mt_rand'); var router = express.Router(); /* GET users listing. */ router.get('/', function(req, res, next) { // res.send('respond with a resource'); var d = new Date(); var n = d.getTime(); mt.srand(n); var r = mt.rand(); console.log('rand='+r); res.send(''+r); }); module.exports = router;
- Total
- Today
- Yesterday