// openGL_yuv.cpp : Defines the entry point for the
console application.//#include "stdafx.h"#include #include #include #include
"GL/glew.h"#include "...
分类:
其他好文 时间:
2014-06-06 17:35:29
阅读次数:
522
本文参考《Android系统源代码情景分析》,作者罗升阳。
一、Binder库(libbinder)代码:
~/Android/frameworks/base/libs/binder
----BpBinder.cpp
----Parcel.cpp
----ProcessState.cpp
--...
分类:
其他好文 时间:
2014-06-02 23:59:15
阅读次数:
444
共3个文件GradeBook.h#ifndef GRADEBOOK_H#define
GRADEBOOK_H// GradeBook.h// GradeBook类展示了该类的公共接口。成员函数出现在GradeBook.cpp中#include
// 该程序使用C++标准的string类usin...
分类:
其他好文 时间:
2014-06-02 16:39:16
阅读次数:
163
// OpenGL.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
#include
using namespace std;
void init(void)
{
glClearColor(1.0,1.0,1.0,1.0);
glClear(GL_COLOR_BUFFER_BIT);
glShadeMod...
分类:
其他好文 时间:
2014-06-02 11:02:18
阅读次数:
282
@echo offif not exist Main.cpp echo
%cd%\Main.cpp不存在>>log.txtif not exist Shader.fsh echo
%cd%\Shader.fsh不存在>>log.txtif not exist Shader.vsh echo %cd%...
分类:
其他好文 时间:
2014-06-02 08:49:04
阅读次数:
234
// SelectCli.cpp : 定义控制台应用程序的入口点。//#include
"stdafx.h"#include #include #pragma comment(lib,"ws2_32")#define
SOCKET_MAXCNT 64#define THREAD_NUM 2 //.....
之前文章的改进版服务器仅仅接受客户端发送的字符串并显示客户端可以调节发送数目 但是不能超过64//
SelectServer.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #pragma
comment(lib,"ws2_32"...
// Copyright 2013 Yangqing Jia
#include
#include
#include
#include
#include
#include "caffe/layer.hpp"
#include "caffe/util/io.hpp"
#include "caffe/vision_layers.hpp"
using std::string;
name...
分类:
其他好文 时间:
2014-06-01 14:39:55
阅读次数:
1072
本文参考《Android系统源代码情景分析》,作者罗升阳。
一、Binder库(libbinder)代码:
~/Android/frameworks/base/libs/binder
----BpBinder.cpp
----Parcel.cpp
----ProcessState.cpp
--...
分类:
其他好文 时间:
2014-06-01 06:39:01
阅读次数:
1479