Changeset 2f4c4cc2e4e03b25286b1f6a3e6317b2923de22d
- Timestamp:
- 19/12/07 23:28:22
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1198103302 +0000
- git-parent:
[53c77312906a21feda205c3532b521fe7f2c2e6c]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1198103302 +0000
- Message:
opengllayer.m: Use AGP texturing.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5993808 |
r2f4c4cc |
|
| 358 | 358 | glEnable( GL_UNPACK_CLIENT_STORAGE_APPLE ); |
|---|
| 359 | 359 | glPixelStorei( GL_UNPACK_CLIENT_STORAGE_APPLE, GL_TRUE ); |
|---|
| | 360 | #endif |
|---|
| 360 | 361 | |
|---|
| 361 | 362 | /* Use AGP texturing */ |
|---|
| 362 | 363 | glTexParameteri( VLCGL_TARGET, GL_TEXTURE_STORAGE_HINT_APPLE, |
|---|
| 363 | 364 | GL_STORAGE_SHARED_APPLE ); |
|---|
| 364 | | #endif |
|---|
| 365 | 365 | /* Call glTexImage2D only once, and use glTexSubImage2D later */ |
|---|
| 366 | 366 | glTexImage2D( VLCGL_TARGET, 0, 3, p_sys->i_tex_width, |
|---|