디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

webgl example

webgl(175.196) 2013.02.23 15:42:19
조회 55 추천 0 댓글 0

http://kaidu1982.github.com/2013-jco-webgl/


function webGLStart() {    var canvas = document.getElementById("canvas-id");    initGL(canvas);    initShaders()    initBuffers();    gl.clearColor(0.0, 0.0, 0.0, 1.0);    gl.enable(gl.DEPTH_TEST);    drawScene();}                                

<h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; color: rgb(238, 238, 238); font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px; text-align: center; background-color: rgb(43, 43, 43);">WEBGL CODE(2)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px; color: rgb(238, 238, 238); background-color: rgb(43, 43, 43);"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initGL(canvas) {    try {        gl = canvas.getContext("experimental-webgl");        gl.viewportWidth = canvas.width;        gl.viewportHeight = canvas.height;    } catch (e) {    }    if (!gl) {        alert("Could not initialise WebGL, sorry :-(");    }}                                        </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
<section class="present" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 11; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -297px; opacity: 1; min-height: auto !important;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px;">WEBGL CODE(3)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; text-align: left; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px;"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initShaders() {        var fragmentShader = getShader(gl, "shader-fs");        var vertexShader = getShader(gl, "shader-vs");        shaderProgram = gl.createProgram();        gl.attachShader(shaderProgram, vertexShader);        gl.attachShader(shaderProgram, fragmentShader);        gl.linkProgram(shaderProgram);        if (!gl.getProgramParameter(shaderProgram, gl.LINK_STATUS)) {                alert("Could not initialise shaders");        }        gl.useProgram(shaderProgram);        shaderProgram.vertexPositionAttribute = gl.getAttribLocation(shaderProgram, "aVertexPosition");        gl.enableVertexAttribArray(shaderProgram.vertexPositionAttribute);        shaderProgram.vertexColorAttribute = gl.getAttribLocation(shaderProgram, "aVertexColor");        gl.enableVertexAttribArray(shaderProgram.vertexColorAttribute);        shaderProgram.pMatrixUniform = gl.getUniformLocation(shaderProgram, "uPMatrix");        shaderProgram.mvMatrixUniform = gl.getUniformLocation(shaderProgram, "uMVMatrix");}                                </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">        </code><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; color: rgb(238, 238, 238); font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px; text-align: center; white-space: normal;">WEBGL CODE(4)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px; color: rgb(238, 238, 238);"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initBuffers() {        triangleVertexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        var vertices = [                 0.0,  1.0,  0.0,                -1.0, -1.0,  0.0,                 1.0, -1.0,  0.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices), gl.STATIC_DRAW);        triangleVertexPositionBuffer.itemSize = 3;        triangleVertexPositionBuffer.numItems = 3;                var indices = [0, 2, 1];                triangleIndexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint16Array(indices), gl.STATIC_DRAW);        triangleVertexColorBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        var colors = [                1.0, 0.0, 0.0, 1.0,                0.0, 1.0, 0.0, 1.0,                0.0, 0.0, 1.0, 1.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(colors), gl.STATIC_DRAW);        triangleVertexColorBuffer.itemSize = 4;        triangleVertexColorBuffer.numItems = 3;}                                        </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; color: rgb(238, 238, 238); font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px; text-align: center; white-space: normal; background-color: rgb(43, 43, 43);">WEBGL CODE(5)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px; color: rgb(238, 238, 238); background-color: rgb(43, 43, 43);"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">   function drawScene() {        gl.viewport(0, 0, gl.viewportWidth, gl.viewportHeight);        gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);        mat4.perspective(45, gl.viewportWidth / gl.viewportHeight, 0.1, 100.0, pMatrix);        mat4.identity(mvMatrix);        mat4.translate(mvMatrix, [0, 0.0, -7.0]);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        gl.vertexAttribPointer(shaderProgram.vertexPositionAttribute, triangleVertexPositionBuffer.itemSize, gl.FLOAT, false, 0, 0);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        gl.vertexAttribPointer(shaderProgram.vertexColorAttribute, triangleVertexColorBuffer.itemSize, gl.FLOAT, false, 0, 0);        setMatrixUniforms();                        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT,0);        }                                        </code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">
</code></pre></code></pre></pre></section><section class="future" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 10; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -296.5px; opacity: 0; -webkit-transform: translate3d(100%, 0px, 0px) rotateY(90deg) translate3d(100%, 0px, 0px); min-height: auto !important;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px;">WEBGL CODE(4)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; text-align: left; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px;"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">function initBuffers() {        triangleVertexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        var vertices = [                 0.0,  1.0,  0.0,                -1.0, -1.0,  0.0,                 1.0, -1.0,  0.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices), gl.STATIC_DRAW);        triangleVertexPositionBuffer.itemSize = 3;        triangleVertexPositionBuffer.numItems = 3;                var indices = [0, 2, 1];                triangleIndexPositionBuffer = gl.createBuffer();        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint16Array(indices), gl.STATIC_DRAW);        triangleVertexColorBuffer = gl.createBuffer();        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        var colors = [                1.0, 0.0, 0.0, 1.0,                0.0, 1.0, 0.0, 1.0,                0.0, 0.0, 1.0, 1.0        ];        gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(colors), gl.STATIC_DRAW);        triangleVertexColorBuffer.itemSize = 4;        triangleVertexColorBuffer.numItems = 3;}                                        </code></pre></section><section class="future" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 10; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -297px; opacity: 0; -webkit-transform: translate3d(100%, 0px, 0px) rotateY(90deg) translate3d(100%, 0px, 0px); min-height: auto !important;"><h2 style="margin: 0px 0px 20px; padding: 0px; border: 0px; font-size: 2.11em; font: inherit; vertical-align: baseline; -webkit-hyphens: auto; word-break: break-word; font-family: 'League Gothic', Impact, sans-serif; line-height: 0.9em; letter-spacing: 0.02em; text-transform: uppercase; text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 6px;">WEBGL CODE(5)</h2><pre style="margin: 15px auto; padding: 0px; border: 0px; font-size: 0.55em; font: inherit; vertical-align: baseline; position: relative; width: 810px; text-align: left; font-family: monospace; line-height: 1.2em; word-wrap: break-word; box-shadow: rgba(0, 0, 0, 0.298039) 0px 0px 6px;"><code class="" style="display: block; padding: 5px; background-color: rgb(63, 63, 63); color: rgb(220, 220, 220); margin: 0px; border: 0px; font-size: 18px; font: inherit; vertical-align: baseline; overflow: auto; max-height: 400px;">   function drawScene() {        gl.viewport(0, 0, gl.viewportWidth, gl.viewportHeight);        gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);        mat4.perspective(45, gl.viewportWidth / gl.viewportHeight, 0.1, 100.0, pMatrix);        mat4.identity(mvMatrix);        mat4.translate(mvMatrix, [0, 0.0, -7.0]);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexPositionBuffer);        gl.vertexAttribPointer(shaderProgram.vertexPositionAttribute, triangleVertexPositionBuffer.itemSize, gl.FLOAT, false, 0, 0);        gl.bindBuffer(gl.ARRAY_BUFFER, triangleVertexColorBuffer);        gl.vertexAttribPointer(shaderProgram.vertexColorAttribute, triangleVertexColorBuffer.itemSize, gl.FLOAT, false, 0, 0);        setMatrixUniforms();                        gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, triangleIndexPositionBuffer);        gl.drawElements(gl.TRIANGLES, 3, gl.UNSIGNED_SHORT,0);        }                                        </code></pre></section><section class="future" style="margin: 0px; padding: 20px 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: absolute; width: 900px; z-index: 10; line-height: 1.2em; -webkit-transform-style: preserve-3d; -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); left: -50%; top: -333.5px; opacity: 0; -webkit-transform: translate3d(100%, 0px, 0px) rotateY(90deg) translate3d(100%, 0px, 0px); min-height: auto !important;"><iframe data-src="reveal.js-master/ex/sample.html" src="http://kaidu1982.github.com/2013-jco-webgl/reveal.js-master/ex/sample.html" style="margin: 0px auto; padding: 0px; border-width: 0px; font-size: 36px; font: inherit; vertical-align: baseline; max-width: 100%; max-height: 100%; display: block; background-color: rgb(238, 238, 238); height: 600px; width: 800px;"></iframe></section>
<aside class="controls" style="margin: 0px; padding: 0px; border: 0px; font-size: 36px; font: inherit; vertical-align: baseline; position: fixed; width: 110px; height: 110px; z-index: 30; right: 10px; bottom: 10px; color: rgb(238, 238, 238); font-family: Lato, Times, 'Times New Roman', serif; line-height: 36px; white-space: normal; background-color: rgb(43, 43, 43);">
</aside></code></pre>

추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 반응이 재밌어서 자꾸만 놀리고 싶은 리액션 좋은 스타는? 운영자 25/07/28 - -
AD 휴대폰 액세서리 세일 중임! 운영자 25/07/28 - -
349412 저 ㅇㅇ님? 우연찮게 프갤에 들어왔다가 님글을 봤는데 [4] ㅇㅇ(118.221) 13.03.15 188 0
349411 여자의 적은 누구? [3] 멍청닭(182.211) 13.03.15 98 0
349410 ㅇㅇ 게임프로그램을 초등학교때부터? 짱이다.. [1] (205.164) 13.03.15 90 0
349409 ㅇㅇ형 마감된건가요..? 답글이 없으시네 ㅜ.. [1] 1(1.245) 13.03.15 60 0
349407 ㅇㅇ형 연락처좀 부탁드려욤... 1(1.245) 13.03.15 49 0
349406 ㅇㅇ형은 좋겠다 ㅁㄴㅇ(1.245) 13.03.15 66 0
349402 횽들 공룡책이 뭔가요? [3] 횽들(119.202) 13.03.15 88 0
349401 횽들 컴공나와서 돈 많이 벌려면 좋은 대학 가야하나요? 횽들(119.202) 13.03.15 38 0
349400 ㅇㅇ형 견학안되??맛보기 이런거 안됨?? [4] ㅁㄴㅇ(1.245) 13.03.15 110 0
349399 특성화고에서 프로그래밍배운애들이 대학에서 왠만하면은 잘하지않냐 [3] 그러냐(205.164) 13.03.15 138 0
349398 ㅇㅇ형한테 배우고있는사람임 [9] ㅇㅇ(61.98) 13.03.15 236 0
349397 공룡책 도서관에서도 죄다 빌려갔다. 멍청닭(182.211) 13.03.15 46 0
349396 근데 니들 일하는곳 어디냐? [2] ㅁㄴㅇ(59.11) 13.03.15 70 0
349395 난말이다. LastCorona갤로그로 이동합니다. 13.03.15 41 0
349394 여자가 치한에게 위험할 때 쓸 수 있는 언어 모음 [3] 멍청닭(182.211) 13.03.15 106 0
349393 ㅇㅇ형님 3명 마감댐? [1] 백이(115.89) 13.03.15 69 0
349392 한국은 진보 보수 따윈 없다. [1] 멍청닭(182.211) 13.03.15 58 0
349391 ㅇㅇ형 저도 하고싶음.. dd(121.163) 13.03.15 40 0
349390 ㅇㅇ형 저 생각있는데 연락할방법이?? [1] 1(1.245) 13.03.15 86 0
349388 오늘의 명언 [3] 스릉흔드(223.62) 13.03.15 89 0
349387 니들이 하도 공룡책 노래를 부르니 [2] erer(222.99) 13.03.15 99 0
349386 여자 관련 명언 모음 [1] 멍청닭(182.211) 13.03.15 139 0
349385 php뉴비 입문서 성공적인 웹프가 좋음? [2] 조꼬딩(223.62) 13.03.15 72 0
349384 c언어 좁밥이네요 [1] ㅁㄴㅇㄹ(182.216) 13.03.15 101 0
349382 BCC XOR Check sum 값이 맞나좀 봐줘~ ㅇㅇ(175.193) 13.03.15 305 0
349381 책 지를때마다 쾌락 느낀다 ㅁㄴㅇㄹㄴ(121.66) 13.03.15 50 0
349380 수학관련된 건데 dd(121.163) 13.03.15 51 0
349378 프겔러들은 고액연봉자니 이런 여자 구해서 결혼할수 있겠네 멍청닭(182.211) 13.03.15 94 0
349377 이책 보안공부하기 괜찮을까 [2] 미크님갤로그로 이동합니다. 13.03.15 114 0
349376 쿠팡에서 뉴발 신발샀는데 예전 착용감이 아닌데;; [1] Savior(180.231) 13.03.15 309 0
349375 공룡책 8판 한글판은 언제 나오냐 [3] 멍청닭(182.211) 13.03.15 101 0
349374 친절한 백왕 보아라 [4] 피앙스(121.134) 13.03.15 104 0
349369 자바스크립트좀 깊게 다루는 횽아들 도와줘 [20] 피앙스(121.134) 13.03.15 248 0
349367 어휴 리버싱같은거 왜배우는거냐 [3] 빕뱟뱟갤로그로 이동합니다. 13.03.15 164 0
349366 그래도 편돌이 잘된듯.. [1] ㅇㅇ(121.163) 13.03.15 105 0
349364 php뉴비 입문서 추천 좀 [1] 조꼬딩(223.62) 13.03.15 55 0
349363 오늘의 명언 모음. [4] 멍청닭(182.211) 13.03.15 122 0
349362 sdk좀 도와줍소 성님들 [8] 디씨짱짱맨(220.68) 13.03.15 105 0
349361 ㅇㅇ 이 연봉 2억이라 안캣나?? [3] 씹죶(211.36) 13.03.15 213 0
349360 [3] 루비•‿•갤로그로 이동합니다. 13.03.15 99 0
349358 하나의 배열에 다양한 종류의 데이터를 저장해서 전송하려면 [8] 신입뉴비(115.126) 13.03.15 116 0
349357 ㅇㅇ행님 메일좀 [2] 백이(223.62) 13.03.15 83 1
349355 이산수학 증명문제 질문좀 [8] 야간편돌이(175.116) 13.03.15 171 0
349354 ㅇㅇ형 나도 이메일좀 알려줘 [67] ㅇㅇ(121.163) 13.03.15 1791 0
349353 결국 전산실 떄려침 [4] ㅁㄴㅇㄹ(121.66) 13.03.15 241 0
349350 ㅇㅇ야 인증 없으면 모다? [1] dd(1.214) 13.03.15 146 0
349349 야. 다방레지가 뭐하는애냐 ? [4] LastCorona갤로그로 이동합니다. 13.03.15 97 0
349348 시스템콜 관련해서 좀 아는형없어?? [5] 애송이(112.187) 13.03.15 118 0
349347 ㅇㅇ님 온라인 강의하시는 건 어떤가요? [5] 에어로홍갤로그로 이동합니다. 13.03.15 125 0
349346 ㅇㅇ님 게임 뭐만듬 [2] d(168.126) 13.03.15 118 0
뉴스 중견배우 주진모, HB엔터테인먼트와 전속계약 체결! 디시트렌드 07.30
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2