|
|
|
|
LEADER |
00000cam a2200000 a 4500 |
001 |
OR_ocn894047023 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr unu|||||||| |
008 |
141030s2013 txua ob 000 0 eng d |
040 |
|
|
|a UMI
|b eng
|e pn
|c UMI
|d COO
|d DEBBG
|d OCLCQ
|d OCLCF
|d OCLCQ
|d N$T
|d EBLCP
|d CEF
|d UAB
|d AU@
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|
020 |
|
|
|a 9781680504064
|q (electronic bk.)
|
020 |
|
|
|a 1680504061
|q (electronic bk.)
|
020 |
|
|
|a 1937785343
|
020 |
|
|
|a 9781937785345
|
020 |
|
|
|z 1937785343
|
020 |
|
|
|z 9781937785345
|
024 |
3 |
|
|a 9781937785345
|
029 |
1 |
|
|a DEBBG
|b BV042489936
|
029 |
1 |
|
|a DEBSZ
|b 434831182
|
029 |
1 |
|
|a GBVCP
|b 822220385
|
035 |
|
|
|a (OCoLC)894047023
|
037 |
|
|
|a CL0500000492
|b Safari Books Online
|
050 |
|
4 |
|a T385
|b .B768 2013
|
072 |
|
7 |
|a COM
|x 046100
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 012000
|2 bisacsh
|
082 |
0 |
4 |
|a 005.365
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Brothaler, Kevin.
|
245 |
1 |
0 |
|a OpenGL ES 2 for Android :
|b a quick-start guide /
|c by Kevin Brothaler.
|
246 |
3 |
|
|a OpenGL embedded systems two for Android
|
260 |
|
|
|a [Frisco. TX] :
|b The Pragmatic Programmers,
|c 2013.
|
300 |
|
|
|a 1 online resource (1 volume) :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
490 |
1 |
|
|a Pragmatic Programmers
|
588 |
0 |
|
|a Online resource; title from title page (Safari, viewed October 15, 2014).
|
500 |
|
|
|a Place of publication from publisher's Web site.
|
504 |
|
|
|a Includes bibliographical references.
|
520 |
8 |
|
|a Printed in full color. Android is booming like never before, with millions of devices shipping every day. It's never been a better time to learn how to create your own 3D games and live wallpaper for Android. You'll find out all about shaders and the OpenGL pipeline, and discover the power of OpenGL ES 2.0, which is much more feature-rich than its predecessor. If you can program in Java and you have a creative vision that you'd like to share with the world, then this is the book for you. This book will teach you everything you need to know to create compelling graphics on Android. You'll learn the basics of OpenGL by building a simple game of air hockey, and along the way, you'll see how to initialize OpenGL and program the graphics pipeline using shaders. Each lesson builds upon the one before it, as you add colors, shading, 3D projections, touch interaction, and more. Then, you'll find out how to turn your idea into a live wallpaper that can run on the home screen. You'll learn about more advanced effects involving particles, lighting models, and the depth buffer. You'll understand what to look for when debugging your program, and what to watch out for when deploying to the market. OpenGL can be somewhat of a dark art to the uninitiated. As you read this book, you'll learn each new concept from first principles. You won't just learn about a feature; you'll also understand how it works, and why it works the way it does. Everything you learn is forward-compatible with the just-released OpenGL ES 3, and you can even apply these techniques to other platforms, such as iOS or HTML5 WebGL.
|
505 |
0 |
|
|a Cover; Table of Contents; Foreword; Acknowledgments; Welcome to OpenGL ES for Android!; What Will We Cover?; Who Should Read This book?; How to Read This Book; Conventions; Online Resources; Let's Get Started!; 1. Getting Started; Installing the Tools; Creating Our First Program; Initializing OpenGL; Creating a Renderer Class; Using Static Imports; A Review; Part Iâ#x80;#x94;A Simple Game of Air Hockey; 2. Defining Vertices and Shaders; Why Air Hockey?; Don't Start from Scratch; Defining the Structure of Our Air Hockey Table; Making the Data Accessible to OpenGL; Introducing the OpenGL Pipeline
|
505 |
8 |
|
|a The OpenGL Color ModelA Review; 3. Compiling Shaders and Drawing to the Screen; Loading Shaders; Compiling Shaders; Linking Shaders Together into an OpenGL Program; Making the Final Connections; Drawing to the Screen; A Review; Exercises; 4. Adding Color and Shade; Smooth Shading; Introducing Triangle Fans; Adding a New Color Attribute; Rendering with the New Color Attribute; A Review; Exercises; 5. Adjusting to the Screen's Aspect Ratio; We Have an Aspect Ratio Problem; Working with a Virtual Coordinate Space; Linear Algebra 101; Defining an Orthographic Projection
|
505 |
8 |
|
|a Adding an Orthographic ProjectionA Review; Exercises; 6. Entering the Third Dimension; The Art of 3D; Transforming a Coordinate from the Shader to the Screen; Adding the W Component to Create Perspective; Moving to a Perspective Projection; Defining a Perspective Projection; Creating a Projection Matrix in Our Code; Switching to a Projection Matrix; Adding Rotation; A Review; Exercises; 7. Adding Detail with Textures; Understanding Textures; Loading Textures into OpenGL; Creating a New Set of Shaders; Creating a New Class Structure for Our Vertex Data; Adding Classes for Our Shader Programs
|
505 |
8 |
|
|a Drawing Our TextureA Review; Exercises; 8. Building Simple Objects; Combining Triangle Strips and Triangle Fans; Adding a Geometry Class; Adding an Object Builder; Updating Our Objects; Updating Shaders; Integrating Our Changes; A Review; Exercises; 9. Adding Touch Feedback: Interacting with Our Air Hockey Game; Adding Touch Support to Our Activity; Adding Intersection Tests; Moving Around an Object by Dragging; Adding Collision Detection; A Review and Wrap-Up; Exercises; Part IIâ#x80;#x94;Building a 3D World; 10. Spicing Things Up with Particles
|
505 |
8 |
|
|a Creating a Set of Shaders for a Simple Particle SystemAdding the Particle System; Drawing the Particle System; Spreading Out the Particles; Adding Gravity; Mixing the Particles with Additive Blending; Customizing the Appearance of Our Points; Drawing Each Point as a Sprite; A Review; Exercises; 11. Adding a Skybox; Creating a Skybox; Loading a Cube Map into OpenGL; Creating a Cube; Adding a Skybox Shader Program; Adding the Skybox to Our Scene; Panning the Camera Around the Scene; A Review; Exercises; 12. Adding Terrain; Creating a Height Map; Creating Vertex and Index Buffer Objects
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
630 |
0 |
0 |
|a OpenGL.
|
630 |
0 |
0 |
|a Android (Electronic resource)
|
630 |
0 |
7 |
|a Android (Electronic resource)
|2 fast
|
630 |
0 |
7 |
|a OpenGL
|2 fast
|
650 |
|
0 |
|a Computer graphics
|x Computer programs.
|
650 |
|
0 |
|a Application software
|x Development.
|
650 |
|
0 |
|a Mobile computing.
|
650 |
|
6 |
|a Infographie
|x Logiciels.
|
650 |
|
6 |
|a Logiciels d'application
|x Développement.
|
650 |
|
6 |
|a Informatique mobile.
|
650 |
|
7 |
|a COMPUTERS
|x Operating Systems
|x Android.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Computer Graphics.
|2 bisacsh
|
650 |
|
7 |
|a Application software
|x Development
|2 fast
|
650 |
|
7 |
|a Computer graphics
|x Computer programs
|2 fast
|
650 |
|
7 |
|a Mobile computing
|2 fast
|
830 |
|
0 |
|a Pragmatic programmers.
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781941222560/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL5325783
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 1716678
|
994 |
|
|
|a 92
|b IZTAP
|