mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-06 23:38:25 +02:00
intel: Set gen in intelInitScreen, just copy value in intelInitContext
This commit is contained in:
parent
63325a0586
commit
7363088f9f
3 changed files with 14 additions and 5 deletions
|
|
@ -650,27 +650,23 @@ intelInitContext(struct intel_context *intel,
|
|||
intel->driFd = sPriv->fd;
|
||||
|
||||
intel->has_xrgb_textures = GL_TRUE;
|
||||
intel->gen = intelScreen->gen;
|
||||
if (IS_GEN6(intel->intelScreen->deviceID)) {
|
||||
intel->gen = 6;
|
||||
intel->needs_ff_sync = GL_TRUE;
|
||||
intel->has_luminance_srgb = GL_TRUE;
|
||||
} else if (IS_GEN5(intel->intelScreen->deviceID)) {
|
||||
intel->gen = 5;
|
||||
intel->needs_ff_sync = GL_TRUE;
|
||||
intel->has_luminance_srgb = GL_TRUE;
|
||||
} else if (IS_965(intel->intelScreen->deviceID)) {
|
||||
intel->gen = 4;
|
||||
if (IS_G4X(intel->intelScreen->deviceID)) {
|
||||
intel->has_luminance_srgb = GL_TRUE;
|
||||
intel->is_g4x = GL_TRUE;
|
||||
}
|
||||
} else if (IS_9XX(intel->intelScreen->deviceID)) {
|
||||
intel->gen = 3;
|
||||
if (IS_945(intel->intelScreen->deviceID)) {
|
||||
intel->is_945 = GL_TRUE;
|
||||
}
|
||||
} else {
|
||||
intel->gen = 2;
|
||||
if (intel->intelScreen->deviceID == PCI_CHIP_I830_M ||
|
||||
intel->intelScreen->deviceID == PCI_CHIP_845_G) {
|
||||
intel->has_xrgb_textures = GL_FALSE;
|
||||
|
|
|
|||
|
|
@ -548,6 +548,18 @@ __DRIconfig **intelInitScreen2(__DRIscreen *psp)
|
|||
intelScreen->deviceID = strtod(devid_override, NULL);
|
||||
}
|
||||
|
||||
if (IS_GEN6(intelScreen->deviceID)) {
|
||||
intelScreen->gen = 6;
|
||||
} else if (IS_GEN5(intelScreen->deviceID)) {
|
||||
intelScreen->gen = 5;
|
||||
} else if (IS_965(intelScreen->deviceID)) {
|
||||
intelScreen->gen = 4;
|
||||
} else if (IS_9XX(intelScreen->deviceID)) {
|
||||
intelScreen->gen = 3;
|
||||
} else {
|
||||
intelScreen->gen = 2;
|
||||
}
|
||||
|
||||
api_mask = (1 << __DRI_API_OPENGL);
|
||||
#if FEATURE_ES1
|
||||
api_mask |= (1 << __DRI_API_GLES);
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@
|
|||
struct intel_screen
|
||||
{
|
||||
int deviceID;
|
||||
int gen;
|
||||
|
||||
int logTextureGranularity;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue